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

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

Issue 1540953004: [runtime] Rewrite Function.prototype.toString in C++. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix typos. Created 5 years 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
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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 V(bool16x8_string, "bool16x8") \ 218 V(bool16x8_string, "bool16x8") \
219 V(Bool16x8_string, "Bool16x8") \ 219 V(Bool16x8_string, "Bool16x8") \
220 V(bool32x4_string, "bool32x4") \ 220 V(bool32x4_string, "bool32x4") \
221 V(Bool32x4_string, "Bool32x4") \ 221 V(Bool32x4_string, "Bool32x4") \
222 V(bool8x16_string, "bool8x16") \ 222 V(bool8x16_string, "bool8x16") \
223 V(Bool8x16_string, "Bool8x16") \ 223 V(Bool8x16_string, "Bool8x16") \
224 V(boolean_string, "boolean") \ 224 V(boolean_string, "boolean") \
225 V(Boolean_string, "Boolean") \ 225 V(Boolean_string, "Boolean") \
226 V(byte_length_string, "byteLength") \ 226 V(byte_length_string, "byteLength") \
227 V(byte_offset_string, "byteOffset") \ 227 V(byte_offset_string, "byteOffset") \
228 V(call_string, "call") \
228 V(callee_string, "callee") \ 229 V(callee_string, "callee") \
229 V(caller_string, "caller") \ 230 V(caller_string, "caller") \
230 V(cell_value_string, "%cell_value") \ 231 V(cell_value_string, "%cell_value") \
231 V(char_at_string, "CharAt") \ 232 V(char_at_string, "CharAt") \
232 V(closure_string, "(closure)") \ 233 V(closure_string, "(closure)") \
233 V(compare_ic_string, "==") \ 234 V(compare_ic_string, "==") \
234 V(configurable_string, "configurable") \ 235 V(configurable_string, "configurable") \
235 V(constructor_string, "constructor") \ 236 V(constructor_string, "constructor") \
236 V(construct_string, "construct") \ 237 V(construct_string, "construct") \
237 V(Date_string, "Date") \ 238 V(Date_string, "Date") \
(...skipping 2511 matching lines...) Expand 10 before | Expand all | Expand 10 after
2749 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2750 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2750 2751
2751 private: 2752 private:
2752 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2753 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2753 }; 2754 };
2754 #endif // DEBUG 2755 #endif // DEBUG
2755 } // namespace internal 2756 } // namespace internal
2756 } // namespace v8 2757 } // namespace v8
2757 2758
2758 #endif // V8_HEAP_HEAP_H_ 2759 #endif // V8_HEAP_HEAP_H_
OLDNEW
« src/debug/mirrors.js ('K') | « src/elements.cc ('k') | src/ia32/builtins-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698