2011-04-07 14:42:37 +00:00
|
|
|
// Copyright 2011 the V8 project authors. All rights reserved.
|
2008-07-03 15:10:15 +00:00
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
#ifndef V8_VARIABLES_H_
|
|
|
|
#define V8_VARIABLES_H_
|
|
|
|
|
|
|
|
#include "zone.h"
|
2012-03-08 13:03:07 +00:00
|
|
|
#include "interface.h"
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2009-05-25 10:05:56 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
// The AST refers to variables via VariableProxies - placeholders for the actual
|
|
|
|
// variables. Variables themselves are never directly referred to from the AST,
|
|
|
|
// they are maintained by scopes, and referred to from VariableProxies and Slots
|
|
|
|
// after binding and variable allocation.
|
|
|
|
|
|
|
|
class Variable: public ZoneObject {
|
|
|
|
public:
|
2009-06-24 08:01:38 +00:00
|
|
|
enum Kind {
|
|
|
|
NORMAL,
|
|
|
|
THIS,
|
|
|
|
ARGUMENTS
|
|
|
|
};
|
|
|
|
|
2011-09-07 11:02:31 +00:00
|
|
|
enum Location {
|
|
|
|
// Before and during variable allocation, a variable whose location is
|
|
|
|
// not yet determined. After allocation, a variable looked up as a
|
|
|
|
// property on the global object (and possibly absent). name() is the
|
|
|
|
// variable name, index() is invalid.
|
|
|
|
UNALLOCATED,
|
|
|
|
|
|
|
|
// A slot in the parameter section on the stack. index() is the
|
2012-08-23 08:15:38 +00:00
|
|
|
// parameter index, counting left-to-right. The receiver is index -1;
|
2011-09-07 11:02:31 +00:00
|
|
|
// the first parameter is index 0.
|
|
|
|
PARAMETER,
|
|
|
|
|
|
|
|
// A slot in the local section on the stack. index() is the variable
|
|
|
|
// index in the stack frame, starting at 0.
|
|
|
|
LOCAL,
|
|
|
|
|
|
|
|
// An indexed slot in a heap context. index() is the variable index in
|
|
|
|
// the context object on the heap, starting at 0. scope() is the
|
|
|
|
// corresponding scope.
|
|
|
|
CONTEXT,
|
|
|
|
|
|
|
|
// A named slot in a heap context. name() is the variable name in the
|
|
|
|
// context object on the heap, with lookup starting at the current
|
|
|
|
// context. index() is invalid.
|
|
|
|
LOOKUP
|
|
|
|
};
|
|
|
|
|
2009-07-07 09:48:54 +00:00
|
|
|
Variable(Scope* scope,
|
|
|
|
Handle<String> name,
|
2011-10-11 08:41:19 +00:00
|
|
|
VariableMode mode,
|
2009-07-07 09:48:54 +00:00
|
|
|
bool is_valid_lhs,
|
2011-11-03 11:59:51 +00:00
|
|
|
Kind kind,
|
2012-03-08 13:03:07 +00:00
|
|
|
InitializationFlag initialization_flag,
|
|
|
|
Interface* interface = Interface::NewValue());
|
2009-07-07 09:48:54 +00:00
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
// Printing support
|
2011-10-11 08:41:19 +00:00
|
|
|
static const char* Mode2String(VariableMode mode);
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
bool IsValidLeftHandSide() { return is_valid_LHS_; }
|
|
|
|
|
|
|
|
// The source code for an eval() call may refer to a variable that is
|
|
|
|
// in an outer scope about which we don't know anything (it may not
|
|
|
|
// be the global scope). scope() is NULL in that case. Currently the
|
|
|
|
// scope is only used to follow the context chain length.
|
2010-09-24 08:25:31 +00:00
|
|
|
Scope* scope() const { return scope_; }
|
2009-08-03 10:59:00 +00:00
|
|
|
|
2010-09-24 08:25:31 +00:00
|
|
|
Handle<String> name() const { return name_; }
|
2011-10-11 08:41:19 +00:00
|
|
|
VariableMode mode() const { return mode_; }
|
2011-11-03 14:33:46 +00:00
|
|
|
bool has_forced_context_allocation() const {
|
|
|
|
return force_context_allocation_;
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
2011-11-03 14:33:46 +00:00
|
|
|
void ForceContextAllocation() {
|
2011-08-11 16:29:28 +00:00
|
|
|
ASSERT(mode_ != TEMPORARY);
|
2011-11-03 14:33:46 +00:00
|
|
|
force_context_allocation_ = true;
|
2011-01-17 08:11:03 +00:00
|
|
|
}
|
2010-03-08 13:01:24 +00:00
|
|
|
bool is_used() { return is_used_; }
|
|
|
|
void set_is_used(bool flag) { is_used_ = flag; }
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2011-11-08 13:28:53 +00:00
|
|
|
int initializer_position() { return initializer_position_; }
|
|
|
|
void set_initializer_position(int pos) { initializer_position_ = pos; }
|
|
|
|
|
2009-09-29 13:28:30 +00:00
|
|
|
bool IsVariable(Handle<String> n) const {
|
2008-07-03 15:10:15 +00:00
|
|
|
return !is_this() && name().is_identical_to(n);
|
|
|
|
}
|
|
|
|
|
2011-09-07 11:02:31 +00:00
|
|
|
bool IsUnallocated() const { return location_ == UNALLOCATED; }
|
|
|
|
bool IsParameter() const { return location_ == PARAMETER; }
|
|
|
|
bool IsStackLocal() const { return location_ == LOCAL; }
|
|
|
|
bool IsStackAllocated() const { return IsParameter() || IsStackLocal(); }
|
|
|
|
bool IsContextSlot() const { return location_ == CONTEXT; }
|
|
|
|
bool IsLookupSlot() const { return location_ == LOOKUP; }
|
2012-08-28 11:25:08 +00:00
|
|
|
bool IsGlobalObjectProperty() const;
|
2010-03-09 10:39:18 +00:00
|
|
|
|
2012-08-29 09:19:53 +00:00
|
|
|
bool is_dynamic() const { return IsDynamicVariableMode(mode_); }
|
|
|
|
bool is_const_mode() const { return IsImmutableVariableMode(mode_); }
|
2011-10-25 08:33:08 +00:00
|
|
|
bool binding_needs_init() const {
|
2011-11-03 11:59:51 +00:00
|
|
|
return initialization_flag_ == kNeedsInitialization;
|
2011-10-25 08:33:08 +00:00
|
|
|
}
|
2009-02-18 15:55:24 +00:00
|
|
|
|
2009-06-24 08:01:38 +00:00
|
|
|
bool is_this() const { return kind_ == THIS; }
|
|
|
|
bool is_arguments() const { return kind_ == ARGUMENTS; }
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2009-09-29 13:28:30 +00:00
|
|
|
// True if the variable is named eval and not known to be shadowed.
|
2012-11-16 08:38:11 +00:00
|
|
|
bool is_possibly_eval(Isolate* isolate) const {
|
2013-02-28 17:03:34 +00:00
|
|
|
return IsVariable(isolate->factory()->eval_string());
|
2009-09-29 13:28:30 +00:00
|
|
|
}
|
|
|
|
|
2009-02-18 15:55:24 +00:00
|
|
|
Variable* local_if_not_shadowed() const {
|
|
|
|
ASSERT(mode_ == DYNAMIC_LOCAL && local_if_not_shadowed_ != NULL);
|
|
|
|
return local_if_not_shadowed_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_local_if_not_shadowed(Variable* local) {
|
|
|
|
local_if_not_shadowed_ = local;
|
|
|
|
}
|
|
|
|
|
2011-09-07 11:02:31 +00:00
|
|
|
Location location() const { return location_; }
|
|
|
|
int index() const { return index_; }
|
2011-11-03 11:59:51 +00:00
|
|
|
InitializationFlag initialization_flag() const {
|
|
|
|
return initialization_flag_;
|
|
|
|
}
|
2012-03-08 13:03:07 +00:00
|
|
|
Interface* interface() const { return interface_; }
|
2011-09-07 11:02:31 +00:00
|
|
|
|
|
|
|
void AllocateTo(Location location, int index) {
|
|
|
|
location_ = location;
|
|
|
|
index_ = index;
|
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2011-11-03 14:50:19 +00:00
|
|
|
static int CompareIndex(Variable* const* v, Variable* const* w);
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
private:
|
|
|
|
Scope* scope_;
|
|
|
|
Handle<String> name_;
|
2011-10-11 08:41:19 +00:00
|
|
|
VariableMode mode_;
|
2009-06-24 08:01:38 +00:00
|
|
|
Kind kind_;
|
2011-09-07 11:02:31 +00:00
|
|
|
Location location_;
|
|
|
|
int index_;
|
2011-11-08 13:28:53 +00:00
|
|
|
int initializer_position_;
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2011-10-17 09:29:37 +00:00
|
|
|
// If this field is set, this variable references the stored locally bound
|
|
|
|
// variable, but it might be shadowed by variable bindings introduced by
|
|
|
|
// non-strict 'eval' calls between the reference scope (inclusive) and the
|
|
|
|
// binding scope (exclusive).
|
2009-02-18 15:55:24 +00:00
|
|
|
Variable* local_if_not_shadowed_;
|
|
|
|
|
2011-01-26 18:15:43 +00:00
|
|
|
// Valid as a LHS? (const and this are not valid LHS, for example)
|
|
|
|
bool is_valid_LHS_;
|
|
|
|
|
|
|
|
// Usage info.
|
2011-11-03 14:33:46 +00:00
|
|
|
bool force_context_allocation_; // set by variable resolver
|
2011-01-26 18:15:43 +00:00
|
|
|
bool is_used_;
|
2011-11-03 11:59:51 +00:00
|
|
|
InitializationFlag initialization_flag_;
|
2012-03-08 13:03:07 +00:00
|
|
|
|
|
|
|
// Module type info.
|
|
|
|
Interface* interface_;
|
2008-07-03 15:10:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} } // namespace v8::internal
|
|
|
|
|
|
|
|
#endif // V8_VARIABLES_H_
|