blob: 67150ea13e1e55cb4e559c96f156fa0c78a123bb [file] [log] [blame]
Ben Murdoch8b112d22011-06-08 16:22:53 +01001// Copyright 2011 the V8 project authors. All rights reserved.
Steve Blocka7e24c12009-10-30 11:49:00 +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
34namespace v8 {
35namespace internal {
36
37// ----------------------------------------------------------------------------
Steve Blocka7e24c12009-10-30 11:49:00 +000038// Implementation Variable.
39
Steve Blocka7e24c12009-10-30 11:49:00 +000040const char* Variable::Mode2String(Mode mode) {
41 switch (mode) {
42 case VAR: return "VAR";
43 case CONST: return "CONST";
44 case DYNAMIC: return "DYNAMIC";
45 case DYNAMIC_GLOBAL: return "DYNAMIC_GLOBAL";
46 case DYNAMIC_LOCAL: return "DYNAMIC_LOCAL";
47 case INTERNAL: return "INTERNAL";
48 case TEMPORARY: return "TEMPORARY";
49 }
50 UNREACHABLE();
51 return NULL;
52}
53
54
Kristian Monsen0d5e1162010-09-30 15:31:59 +010055Property* Variable::AsProperty() const {
Steve Blocka7e24c12009-10-30 11:49:00 +000056 return rewrite_ == NULL ? NULL : rewrite_->AsProperty();
57}
58
59
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000060Slot* Variable::AsSlot() const { return rewrite_; }
Steve Blocka7e24c12009-10-30 11:49:00 +000061
62
Steve Block6ded16b2010-05-10 14:33:55 +010063bool Variable::IsStackAllocated() const {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000064 return rewrite_ != NULL && rewrite_->IsStackAllocated();
Steve Block6ded16b2010-05-10 14:33:55 +010065}
66
67
Ben Murdochb0fe1622011-05-05 13:52:32 +010068bool Variable::IsParameter() const {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000069 return rewrite_ != NULL && rewrite_->type() == Slot::PARAMETER;
Ben Murdochb0fe1622011-05-05 13:52:32 +010070}
71
72
73bool Variable::IsStackLocal() const {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000074 return rewrite_ != NULL && rewrite_->type() == Slot::LOCAL;
Ben Murdochb0fe1622011-05-05 13:52:32 +010075}
76
77
Ben Murdochb8e0da22011-05-16 14:20:40 +010078bool Variable::IsContextSlot() const {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000079 return rewrite_ != NULL && rewrite_->type() == Slot::CONTEXT;
Ben Murdochb8e0da22011-05-16 14:20:40 +010080}
81
82
Steve Blocka7e24c12009-10-30 11:49:00 +000083Variable::Variable(Scope* scope,
84 Handle<String> name,
85 Mode mode,
86 bool is_valid_LHS,
87 Kind kind)
88 : scope_(scope),
89 name_(name),
90 mode_(mode),
Steve Blocka7e24c12009-10-30 11:49:00 +000091 kind_(kind),
92 local_if_not_shadowed_(NULL),
Steve Block1e0659c2011-05-24 12:43:12 +010093 rewrite_(NULL),
94 is_valid_LHS_(is_valid_LHS),
Steve Blocka7e24c12009-10-30 11:49:00 +000095 is_accessed_from_inner_scope_(false),
Steve Block1e0659c2011-05-24 12:43:12 +010096 is_used_(false) {
Steve Blocka7e24c12009-10-30 11:49:00 +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
108} } // namespace v8::internal