blob: 488da42ce665ed7322ca7f53e27fc3ec9c109e58 [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
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +000040const char* Variable::Mode2String(VariableMode mode) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000041 switch (mode) {
42 case VAR: return "VAR";
43 case CONST: return "CONST";
danno@chromium.orgb6451162011-08-17 14:33:23 +000044 case LET: return "LET";
ulan@chromium.org8e8d8822012-11-23 14:36:46 +000045 case CONST_HARMONY: return "CONST_HARMONY";
46 case MODULE: return "MODULE";
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000047 case DYNAMIC: return "DYNAMIC";
ager@chromium.org381abbb2009-02-25 13:23:22 +000048 case DYNAMIC_GLOBAL: return "DYNAMIC_GLOBAL";
49 case DYNAMIC_LOCAL: return "DYNAMIC_LOCAL";
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000050 case INTERNAL: return "INTERNAL";
51 case TEMPORARY: return "TEMPORARY";
52 }
53 UNREACHABLE();
54 return NULL;
55}
56
57
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000058Variable::Variable(Scope* scope,
59 Handle<String> name,
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +000060 VariableMode mode,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000061 bool is_valid_LHS,
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +000062 Kind kind,
erik.corry@gmail.combbceb572012-03-09 10:52:05 +000063 InitializationFlag initialization_flag,
64 Interface* interface)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000065 : scope_(scope),
66 name_(name),
67 mode_(mode),
ager@chromium.org3e875802009-06-29 08:26:34 +000068 kind_(kind),
jkummerow@chromium.org486075a2011-09-07 12:44:28 +000069 location_(UNALLOCATED),
70 index_(-1),
danno@chromium.orgc612e022011-11-10 11:38:15 +000071 initializer_position_(RelocInfo::kNoPosition),
ager@chromium.org381abbb2009-02-25 13:23:22 +000072 local_if_not_shadowed_(NULL),
ager@chromium.org378b34e2011-01-28 08:04:38 +000073 is_valid_LHS_(is_valid_LHS),
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +000074 force_context_allocation_(false),
75 is_used_(false),
erik.corry@gmail.combbceb572012-03-09 10:52:05 +000076 initialization_flag_(initialization_flag),
77 interface_(interface) {
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +000078 // Names must be canonicalized for fast equality checks.
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +000079 ASSERT(name->IsInternalizedString());
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +000080 // Var declared variables never need initialization.
81 ASSERT(!(mode == VAR && initialization_flag == kNeedsInitialization));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000082}
83
84
yangguo@chromium.org355cfd12012-08-29 15:32:24 +000085bool Variable::IsGlobalObjectProperty() const {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000086 // Temporaries are never global, they must always be allocated in the
87 // activation frame.
ulan@chromium.org8e8d8822012-11-23 14:36:46 +000088 return (IsDynamicVariableMode(mode_) ||
89 (IsDeclaredVariableMode(mode_) && !IsLexicalVariableMode(mode_)))
yangguo@chromium.org355cfd12012-08-29 15:32:24 +000090 && scope_ != NULL && scope_->is_global_scope();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000091}
92
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +000093
94int Variable::CompareIndex(Variable* const* v, Variable* const* w) {
95 int x = (*v)->index();
96 int y = (*w)->index();
97 // Consider sorting them according to type as well?
98 return x - y;
99}
100
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000101} } // namespace v8::internal