Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: src/variables.cc

Issue 12210083: Renamed "symbols" to "internalized strings" throughout the code base, (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed Yang's comments Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/variables.h ('k') | src/x64/builtins-x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 location_(UNALLOCATED), 69 location_(UNALLOCATED),
70 index_(-1), 70 index_(-1),
71 initializer_position_(RelocInfo::kNoPosition), 71 initializer_position_(RelocInfo::kNoPosition),
72 local_if_not_shadowed_(NULL), 72 local_if_not_shadowed_(NULL),
73 is_valid_LHS_(is_valid_LHS), 73 is_valid_LHS_(is_valid_LHS),
74 force_context_allocation_(false), 74 force_context_allocation_(false),
75 is_used_(false), 75 is_used_(false),
76 initialization_flag_(initialization_flag), 76 initialization_flag_(initialization_flag),
77 interface_(interface) { 77 interface_(interface) {
78 // Names must be canonicalized for fast equality checks. 78 // Names must be canonicalized for fast equality checks.
79 ASSERT(name->IsSymbol()); 79 ASSERT(name->IsInternalizedString());
80 // Var declared variables never need initialization. 80 // Var declared variables never need initialization.
81 ASSERT(!(mode == VAR && initialization_flag == kNeedsInitialization)); 81 ASSERT(!(mode == VAR && initialization_flag == kNeedsInitialization));
82 } 82 }
83 83
84 84
85 bool Variable::IsGlobalObjectProperty() const { 85 bool Variable::IsGlobalObjectProperty() const {
86 // Temporaries are never global, they must always be allocated in the 86 // Temporaries are never global, they must always be allocated in the
87 // activation frame. 87 // activation frame.
88 return (IsDynamicVariableMode(mode_) || 88 return (IsDynamicVariableMode(mode_) ||
89 (IsDeclaredVariableMode(mode_) && !IsLexicalVariableMode(mode_))) 89 (IsDeclaredVariableMode(mode_) && !IsLexicalVariableMode(mode_)))
90 && scope_ != NULL && scope_->is_global_scope(); 90 && scope_ != NULL && scope_->is_global_scope();
91 } 91 }
92 92
93 93
94 int Variable::CompareIndex(Variable* const* v, Variable* const* w) { 94 int Variable::CompareIndex(Variable* const* v, Variable* const* w) {
95 int x = (*v)->index(); 95 int x = (*v)->index();
96 int y = (*w)->index(); 96 int y = (*w)->index();
97 // Consider sorting them according to type as well? 97 // Consider sorting them according to type as well?
98 return x - y; 98 return x - y;
99 } 99 }
100 100
101 } } // namespace v8::internal 101 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/variables.h ('k') | src/x64/builtins-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698