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

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

Issue 1558433002: [runtime] Migrate Object.create to C++. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address Camillos comment. Created 4 years, 11 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/builtins.cc ('k') | src/js/v8natives.js » ('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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 205
206 206
207 #define ROOT_LIST(V) \ 207 #define ROOT_LIST(V) \
208 STRONG_ROOT_LIST(V) \ 208 STRONG_ROOT_LIST(V) \
209 SMI_ROOT_LIST(V) \ 209 SMI_ROOT_LIST(V) \
210 V(StringTable, string_table, StringTable) 210 V(StringTable, string_table, StringTable)
211 211
212 #define INTERNALIZED_STRING_LIST(V) \ 212 #define INTERNALIZED_STRING_LIST(V) \
213 V(anonymous_string, "anonymous") \ 213 V(anonymous_string, "anonymous") \
214 V(apply_string, "apply") \ 214 V(apply_string, "apply") \
215 V(assign_string, "assign") \
215 V(arguments_string, "arguments") \ 216 V(arguments_string, "arguments") \
216 V(Arguments_string, "Arguments") \ 217 V(Arguments_string, "Arguments") \
217 V(Array_string, "Array") \ 218 V(Array_string, "Array") \
218 V(bind_string, "bind") \ 219 V(bind_string, "bind") \
219 V(bool16x8_string, "bool16x8") \ 220 V(bool16x8_string, "bool16x8") \
220 V(Bool16x8_string, "Bool16x8") \ 221 V(Bool16x8_string, "Bool16x8") \
221 V(bool32x4_string, "bool32x4") \ 222 V(bool32x4_string, "bool32x4") \
222 V(Bool32x4_string, "Bool32x4") \ 223 V(Bool32x4_string, "Bool32x4") \
223 V(bool8x16_string, "bool8x16") \ 224 V(bool8x16_string, "bool8x16") \
224 V(Bool8x16_string, "Bool8x16") \ 225 V(Bool8x16_string, "Bool8x16") \
225 V(boolean_string, "boolean") \ 226 V(boolean_string, "boolean") \
226 V(Boolean_string, "Boolean") \ 227 V(Boolean_string, "Boolean") \
227 V(bound__string, "bound ") \ 228 V(bound__string, "bound ") \
228 V(byte_length_string, "byteLength") \ 229 V(byte_length_string, "byteLength") \
229 V(byte_offset_string, "byteOffset") \ 230 V(byte_offset_string, "byteOffset") \
230 V(call_string, "call") \ 231 V(call_string, "call") \
231 V(callee_string, "callee") \ 232 V(callee_string, "callee") \
232 V(caller_string, "caller") \ 233 V(caller_string, "caller") \
233 V(cell_value_string, "%cell_value") \ 234 V(cell_value_string, "%cell_value") \
234 V(char_at_string, "CharAt") \ 235 V(char_at_string, "CharAt") \
235 V(closure_string, "(closure)") \ 236 V(closure_string, "(closure)") \
236 V(compare_ic_string, "==") \ 237 V(compare_ic_string, "==") \
237 V(configurable_string, "configurable") \ 238 V(configurable_string, "configurable") \
238 V(constructor_string, "constructor") \ 239 V(constructor_string, "constructor") \
239 V(construct_string, "construct") \ 240 V(construct_string, "construct") \
241 V(create_string, "create") \
240 V(Date_string, "Date") \ 242 V(Date_string, "Date") \
241 V(default_string, "default") \ 243 V(default_string, "default") \
242 V(defineProperty_string, "defineProperty") \ 244 V(defineProperty_string, "defineProperty") \
243 V(deleteProperty_string, "deleteProperty") \ 245 V(deleteProperty_string, "deleteProperty") \
244 V(display_name_string, "displayName") \ 246 V(display_name_string, "displayName") \
245 V(done_string, "done") \ 247 V(done_string, "done") \
246 V(dot_result_string, ".result") \ 248 V(dot_result_string, ".result") \
247 V(dot_string, ".") \ 249 V(dot_string, ".") \
248 V(enumerable_string, "enumerable") \ 250 V(enumerable_string, "enumerable") \
249 V(enumerate_string, "enumerate") \ 251 V(enumerate_string, "enumerate") \
(...skipping 2502 matching lines...) Expand 10 before | Expand all | Expand 10 after
2752 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2754 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2753 2755
2754 private: 2756 private:
2755 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2757 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2756 }; 2758 };
2757 #endif // DEBUG 2759 #endif // DEBUG
2758 } // namespace internal 2760 } // namespace internal
2759 } // namespace v8 2761 } // namespace v8
2760 2762
2761 #endif // V8_HEAP_HEAP_H_ 2763 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/js/v8natives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698