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

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

Issue 1293113002: Remove property loads from js builtins objects from runtime. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix stack overflow during bootstrapping Created 5 years, 4 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.h ('k') | src/isolate.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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 V(private_api_string, "private_api") \ 268 V(private_api_string, "private_api") \
269 V(private_intern_string, "private_intern") \ 269 V(private_intern_string, "private_intern") \
270 V(Date_string, "Date") \ 270 V(Date_string, "Date") \
271 V(char_at_string, "CharAt") \ 271 V(char_at_string, "CharAt") \
272 V(undefined_string, "undefined") \ 272 V(undefined_string, "undefined") \
273 V(value_of_string, "valueOf") \ 273 V(value_of_string, "valueOf") \
274 V(stack_string, "stack") \ 274 V(stack_string, "stack") \
275 V(toJSON_string, "toJSON") \ 275 V(toJSON_string, "toJSON") \
276 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \ 276 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \
277 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ 277 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \
278 V(stack_overflow_string, "$stackOverflowBoilerplate") \
279 V(illegal_access_string, "illegal access") \ 278 V(illegal_access_string, "illegal access") \
280 V(cell_value_string, "%cell_value") \ 279 V(cell_value_string, "%cell_value") \
281 V(illegal_argument_string, "illegal argument") \ 280 V(illegal_argument_string, "illegal argument") \
282 V(closure_string, "(closure)") \ 281 V(closure_string, "(closure)") \
283 V(dot_string, ".") \ 282 V(dot_string, ".") \
284 V(compare_ic_string, "==") \ 283 V(compare_ic_string, "==") \
285 V(strict_compare_ic_string, "===") \ 284 V(strict_compare_ic_string, "===") \
286 V(infinity_string, "Infinity") \ 285 V(infinity_string, "Infinity") \
287 V(minus_infinity_string, "-Infinity") \ 286 V(minus_infinity_string, "-Infinity") \
288 V(query_colon_string, "(?:)") \ 287 V(query_colon_string, "(?:)") \
(...skipping 2474 matching lines...) Expand 10 before | Expand all | Expand 10 after
2763 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2762 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2764 2763
2765 private: 2764 private:
2766 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2765 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2767 }; 2766 };
2768 #endif // DEBUG 2767 #endif // DEBUG
2769 } 2768 }
2770 } // namespace v8::internal 2769 } // namespace v8::internal
2771 2770
2772 #endif // V8_HEAP_HEAP_H_ 2771 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/contexts.h ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698