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

Side by Side Diff: src/heap/heap.h

Issue 1130733003: Resolve references to "this" the same way as normal variables (Closed) Base URL: https://chromium.googlesource.com/v8/v8@master
Patch Set: Add mips/mips64. Fix expectation in nosnap deserialization test. Fix scratch regiser use on x64. Created 5 years, 7 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
« no previous file with comments | « src/contexts.cc ('k') | src/ia32/full-codegen-ia32.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_HEAP_HEAP_H_ 5 #ifndef V8_HEAP_HEAP_H_
6 #define V8_HEAP_HEAP_H_ 6 #define V8_HEAP_HEAP_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 #include <map> 9 #include <map>
10 10
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 V(Function_string, "Function") \ 224 V(Function_string, "Function") \
225 V(length_string, "length") \ 225 V(length_string, "length") \
226 V(name_string, "name") \ 226 V(name_string, "name") \
227 V(null_string, "null") \ 227 V(null_string, "null") \
228 V(number_string, "number") \ 228 V(number_string, "number") \
229 V(Number_string, "Number") \ 229 V(Number_string, "Number") \
230 V(nan_string, "NaN") \ 230 V(nan_string, "NaN") \
231 V(source_string, "source") \ 231 V(source_string, "source") \
232 V(source_url_string, "source_url") \ 232 V(source_url_string, "source_url") \
233 V(source_mapping_url_string, "source_mapping_url") \ 233 V(source_mapping_url_string, "source_mapping_url") \
234 V(this_string, "this") \
234 V(global_string, "global") \ 235 V(global_string, "global") \
235 V(ignore_case_string, "ignoreCase") \ 236 V(ignore_case_string, "ignoreCase") \
236 V(multiline_string, "multiline") \ 237 V(multiline_string, "multiline") \
237 V(sticky_string, "sticky") \ 238 V(sticky_string, "sticky") \
238 V(unicode_string, "unicode") \ 239 V(unicode_string, "unicode") \
239 V(harmony_regexps_string, "harmony_regexps") \ 240 V(harmony_regexps_string, "harmony_regexps") \
240 V(harmony_tostring_string, "harmony_tostring") \ 241 V(harmony_tostring_string, "harmony_tostring") \
241 V(harmony_unicode_regexps_string, "harmony_unicode_regexps") \ 242 V(harmony_unicode_regexps_string, "harmony_unicode_regexps") \
242 V(input_string, "input") \ 243 V(input_string, "input") \
243 V(index_string, "index") \ 244 V(index_string, "index") \
(...skipping 2364 matching lines...) Expand 10 before | Expand all | Expand 10 after
2608 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2609 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2609 2610
2610 private: 2611 private:
2611 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2612 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2612 }; 2613 };
2613 #endif // DEBUG 2614 #endif // DEBUG
2614 } 2615 }
2615 } // namespace v8::internal 2616 } // namespace v8::internal
2616 2617
2617 #endif // V8_HEAP_HEAP_H_ 2618 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/contexts.cc ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698