Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1 | // Copyright 2006-2008 the V8 project authors. All rights reserved. |
| 2 | // 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 | |
| 34 | namespace v8 { |
| 35 | namespace internal { |
| 36 | |
| 37 | // ---------------------------------------------------------------------------- |
Leon Clarke | e46be81 | 2010-01-19 14:06:41 +0000 | [diff] [blame] | 38 | // Implementation StaticType. |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 39 | |
| 40 | |
Leon Clarke | e46be81 | 2010-01-19 14:06:41 +0000 | [diff] [blame] | 41 | const char* StaticType::Type2String(StaticType* type) { |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 42 | 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 | // ---------------------------------------------------------------------------- |
| 55 | // Implementation Variable. |
| 56 | |
| 57 | |
| 58 | const char* Variable::Mode2String(Mode mode) { |
| 59 | switch (mode) { |
| 60 | case VAR: return "VAR"; |
| 61 | case CONST: return "CONST"; |
| 62 | case DYNAMIC: return "DYNAMIC"; |
| 63 | case DYNAMIC_GLOBAL: return "DYNAMIC_GLOBAL"; |
| 64 | case DYNAMIC_LOCAL: return "DYNAMIC_LOCAL"; |
| 65 | case INTERNAL: return "INTERNAL"; |
| 66 | case TEMPORARY: return "TEMPORARY"; |
| 67 | } |
| 68 | UNREACHABLE(); |
| 69 | return NULL; |
| 70 | } |
| 71 | |
| 72 | |
Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 73 | Property* Variable::AsProperty() const { |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 74 | return rewrite_ == NULL ? NULL : rewrite_->AsProperty(); |
| 75 | } |
| 76 | |
| 77 | |
Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 78 | Slot* Variable::AsSlot() const { |
| 79 | return rewrite_ == NULL ? NULL : rewrite_->AsSlot(); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | |
Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 83 | bool Variable::IsStackAllocated() const { |
Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 84 | Slot* slot = AsSlot(); |
| 85 | return slot != NULL && slot->IsStackAllocated(); |
Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 89 | bool Variable::IsParameter() const { |
| 90 | Slot* s = AsSlot(); |
| 91 | return s != NULL && s->type() == Slot::PARAMETER; |
| 92 | } |
| 93 | |
| 94 | |
| 95 | bool Variable::IsStackLocal() const { |
| 96 | Slot* s = AsSlot(); |
| 97 | return s != NULL && s->type() == Slot::LOCAL; |
| 98 | } |
| 99 | |
| 100 | |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 101 | bool Variable::IsContextSlot() const { |
| 102 | Slot* s = AsSlot(); |
| 103 | return s != NULL && s->type() == Slot::CONTEXT; |
| 104 | } |
| 105 | |
| 106 | |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 107 | Variable::Variable(Scope* scope, |
| 108 | Handle<String> name, |
| 109 | Mode mode, |
| 110 | bool is_valid_LHS, |
| 111 | Kind kind) |
| 112 | : scope_(scope), |
| 113 | name_(name), |
| 114 | mode_(mode), |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 115 | kind_(kind), |
| 116 | local_if_not_shadowed_(NULL), |
Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame^] | 117 | rewrite_(NULL), |
| 118 | is_valid_LHS_(is_valid_LHS), |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 119 | is_accessed_from_inner_scope_(false), |
Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame^] | 120 | is_used_(false) { |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 121 | // names must be canonicalized for fast equality checks |
| 122 | ASSERT(name->IsSymbol()); |
| 123 | } |
| 124 | |
| 125 | |
| 126 | bool Variable::is_global() const { |
| 127 | // Temporaries are never global, they must always be allocated in the |
| 128 | // activation frame. |
| 129 | return mode_ != TEMPORARY && scope_ != NULL && scope_->is_global_scope(); |
| 130 | } |
| 131 | |
| 132 | } } // namespace v8::internal |