blob: 504e2244234d5e4746a4147223541aa9acace82c [file] [log] [blame]
ager@chromium.org9258b6b2008-09-11 09:11:10 +00001// Copyright 2006-2008 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// ----------------------------------------------------------------------------
sgjesse@chromium.org846fb742009-12-18 08:56:33 +000038// Implementation StaticType.
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000039
40
sgjesse@chromium.org846fb742009-12-18 08:56:33 +000041const char* StaticType::Type2String(StaticType* type) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000042 switch (type->kind_) {
43 case UNKNOWN:
44 return "UNKNOWN";
45 case LIKELY_SMI:
46 return "LIKELY_SMI";
47 default:
48 UNREACHABLE();
49 }
50 return "UNREACHABLE";
51}
52
53
54// ----------------------------------------------------------------------------
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000055// Implementation Variable.
56
57
58const char* Variable::Mode2String(Mode mode) {
59 switch (mode) {
60 case VAR: return "VAR";
61 case CONST: return "CONST";
62 case DYNAMIC: return "DYNAMIC";
ager@chromium.org381abbb2009-02-25 13:23:22 +000063 case DYNAMIC_GLOBAL: return "DYNAMIC_GLOBAL";
64 case DYNAMIC_LOCAL: return "DYNAMIC_LOCAL";
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000065 case INTERNAL: return "INTERNAL";
66 case TEMPORARY: return "TEMPORARY";
67 }
68 UNREACHABLE();
69 return NULL;
70}
71
72
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +000073Property* Variable::AsProperty() const {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000074 return rewrite_ == NULL ? NULL : rewrite_->AsProperty();
75}
76
77
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +000078Slot* Variable::AsSlot() const {
79 return rewrite_ == NULL ? NULL : rewrite_->AsSlot();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000080}
81
82
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000083bool Variable::IsStackAllocated() const {
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +000084 Slot* slot = AsSlot();
85 return slot != NULL && slot->IsStackAllocated();
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000086}
87
88
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000089Variable::Variable(Scope* scope,
90 Handle<String> name,
91 Mode mode,
92 bool is_valid_LHS,
ager@chromium.org3e875802009-06-29 08:26:34 +000093 Kind kind)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000094 : scope_(scope),
95 name_(name),
96 mode_(mode),
97 is_valid_LHS_(is_valid_LHS),
ager@chromium.org3e875802009-06-29 08:26:34 +000098 kind_(kind),
ager@chromium.org381abbb2009-02-25 13:23:22 +000099 local_if_not_shadowed_(NULL),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000100 is_accessed_from_inner_scope_(false),
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000101 is_used_(false),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000102 rewrite_(NULL) {
103 // names must be canonicalized for fast equality checks
104 ASSERT(name->IsSymbol());
105}
106
107
108bool Variable::is_global() const {
109 // Temporaries are never global, they must always be allocated in the
110 // activation frame.
111 return mode_ != TEMPORARY && scope_ != NULL && scope_->is_global_scope();
112}
113
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000114} } // namespace v8::internal