blob: 67150ea13e1e55cb4e559c96f156fa0c78a123bb [file] [log] [blame]
karlklose@chromium.org44bc7082011-04-11 12:33:05 +00001// Copyright 2011 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
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.
15//
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.
27
28#include "v8.h"
29
30#include "ast.h"
31#include "scopes.h"
32#include "variables.h"
33
kasperl@chromium.org71affb52009-05-26 05:44:31 +000034namespace v8 {
35namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000036
37// ----------------------------------------------------------------------------
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000038// Implementation Variable.
39
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000040const char* Variable::Mode2String(Mode mode) {
41 switch (mode) {
42 case VAR: return "VAR";
43 case CONST: return "CONST";
44 case DYNAMIC: return "DYNAMIC";
ager@chromium.org381abbb2009-02-25 13:23:22 +000045 case DYNAMIC_GLOBAL: return "DYNAMIC_GLOBAL";
46 case DYNAMIC_LOCAL: return "DYNAMIC_LOCAL";
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000047 case INTERNAL: return "INTERNAL";
48 case TEMPORARY: return "TEMPORARY";
49 }
50 UNREACHABLE();
51 return NULL;
52}
53
54
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +000055Property* Variable::AsProperty() const {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000056 return rewrite_ == NULL ? NULL : rewrite_->AsProperty();
57}
58
59
whesse@chromium.org7b260152011-06-20 15:33:18 +000060Slot* Variable::AsSlot() const { return rewrite_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000061
62
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000063bool Variable::IsStackAllocated() const {
whesse@chromium.org7b260152011-06-20 15:33:18 +000064 return rewrite_ != NULL && rewrite_->IsStackAllocated();
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000065}
66
67
kasperl@chromium.orga5551262010-12-07 12:49:48 +000068bool Variable::IsParameter() const {
whesse@chromium.org7b260152011-06-20 15:33:18 +000069 return rewrite_ != NULL && rewrite_->type() == Slot::PARAMETER;
kasperl@chromium.orga5551262010-12-07 12:49:48 +000070}
71
72
73bool Variable::IsStackLocal() const {
whesse@chromium.org7b260152011-06-20 15:33:18 +000074 return rewrite_ != NULL && rewrite_->type() == Slot::LOCAL;
kasperl@chromium.orga5551262010-12-07 12:49:48 +000075}
76
77
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000078bool Variable::IsContextSlot() const {
whesse@chromium.org7b260152011-06-20 15:33:18 +000079 return rewrite_ != NULL && rewrite_->type() == Slot::CONTEXT;
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000080}
81
82
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000083Variable::Variable(Scope* scope,
84 Handle<String> name,
85 Mode mode,
86 bool is_valid_LHS,
ager@chromium.org3e875802009-06-29 08:26:34 +000087 Kind kind)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000088 : scope_(scope),
89 name_(name),
90 mode_(mode),
ager@chromium.org3e875802009-06-29 08:26:34 +000091 kind_(kind),
ager@chromium.org381abbb2009-02-25 13:23:22 +000092 local_if_not_shadowed_(NULL),
ager@chromium.org378b34e2011-01-28 08:04:38 +000093 rewrite_(NULL),
94 is_valid_LHS_(is_valid_LHS),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000095 is_accessed_from_inner_scope_(false),
ager@chromium.org378b34e2011-01-28 08:04:38 +000096 is_used_(false) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000097 // names must be canonicalized for fast equality checks
98 ASSERT(name->IsSymbol());
99}
100
101
102bool Variable::is_global() const {
103 // Temporaries are never global, they must always be allocated in the
104 // activation frame.
105 return mode_ != TEMPORARY && scope_ != NULL && scope_->is_global_scope();
106}
107
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000108} } // namespace v8::internal