1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission.
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 #ifndef V8_VARIABLES_H_
29 #define V8_VARIABLES_H_
36 // Variables and AST expression nodes can track their "type" to enable
37 // optimizations and removal of redundant checks when generating code.
46 StaticType() : kind_(UNKNOWN) {}
48 bool Is(Kind kind) const { return kind_ == kind; }
50 bool IsKnown() const { return !Is(UNKNOWN); }
51 bool IsUnknown() const { return Is(UNKNOWN); }
52 bool IsLikelySmi() const { return Is(LIKELY_SMI); }
54 void CopyFrom(StaticType* other) {
58 static const char* Type2String(StaticType* type);
60 // LIKELY_SMI accessors
61 void SetAsLikelySmi() {
65 void SetAsLikelySmiIfUnknown() {
76 // The AST refers to variables via VariableProxies - placeholders for the actual
77 // variables. Variables themselves are never directly referred to from the AST,
78 // they are maintained by scopes, and referred to from VariableProxies and Slots
79 // after binding and variable allocation.
81 class Variable: public ZoneObject {
84 // User declared variables:
85 VAR, // declared via 'var', and 'function' declarations
87 CONST, // declared via 'const' declarations
89 // Variables introduced by the compiler:
90 DYNAMIC, // always require dynamic lookup (we don't know
93 DYNAMIC_GLOBAL, // requires dynamic lookup, but we know that the
94 // variable is global unless it has been shadowed
95 // by an eval-introduced variable
97 DYNAMIC_LOCAL, // requires dynamic lookup, but we know that the
98 // variable is local and where it is unless it
99 // has been shadowed by an eval-introduced
102 INTERNAL, // like VAR, but not user-visible (may or may not
105 TEMPORARY // temporary variables (not user-visible), never
115 Variable(Scope* scope,
122 static const char* Mode2String(Mode mode);
124 // Type testing & conversion
125 Property* AsProperty() const;
126 Slot* AsSlot() const;
128 bool IsValidLeftHandSide() { return is_valid_LHS_; }
130 // The source code for an eval() call may refer to a variable that is
131 // in an outer scope about which we don't know anything (it may not
132 // be the global scope). scope() is NULL in that case. Currently the
133 // scope is only used to follow the context chain length.
134 Scope* scope() const { return scope_; }
136 Handle<String> name() const { return name_; }
137 Mode mode() const { return mode_; }
138 bool is_accessed_from_inner_scope() const {
139 return is_accessed_from_inner_scope_;
141 void MarkAsAccessedFromInnerScope() {
142 is_accessed_from_inner_scope_ = true;
144 bool is_used() { return is_used_; }
145 void set_is_used(bool flag) { is_used_ = flag; }
147 bool IsVariable(Handle<String> n) const {
148 return !is_this() && name().is_identical_to(n);
151 bool IsStackAllocated() const;
152 bool IsParameter() const; // Includes 'this'.
153 bool IsStackLocal() const;
154 bool IsContextSlot() const;
156 bool is_dynamic() const {
157 return (mode_ == DYNAMIC ||
158 mode_ == DYNAMIC_GLOBAL ||
159 mode_ == DYNAMIC_LOCAL);
162 bool is_global() const;
163 bool is_this() const { return kind_ == THIS; }
164 bool is_arguments() const { return kind_ == ARGUMENTS; }
166 // True if the variable is named eval and not known to be shadowed.
167 bool is_possibly_eval() const {
168 return IsVariable(FACTORY->eval_symbol()) &&
169 (mode_ == DYNAMIC || mode_ == DYNAMIC_GLOBAL);
172 Variable* local_if_not_shadowed() const {
173 ASSERT(mode_ == DYNAMIC_LOCAL && local_if_not_shadowed_ != NULL);
174 return local_if_not_shadowed_;
177 void set_local_if_not_shadowed(Variable* local) {
178 local_if_not_shadowed_ = local;
181 Expression* rewrite() const { return rewrite_; }
182 void set_rewrite(Expression* expr) { rewrite_ = expr; }
184 StaticType* type() { return &type_; }
188 Handle<String> name_;
192 Variable* local_if_not_shadowed_;
194 // Static type information
198 // rewrite_ is usually a Slot or a Property, but may be any expression.
199 Expression* rewrite_;
201 // Valid as a LHS? (const and this are not valid LHS, for example)
205 bool is_accessed_from_inner_scope_; // set by variable resolver
210 } } // namespace v8::internal
212 #endif // V8_VARIABLES_H_