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

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

Issue 1309513005: Revert of [simd.js] Update to spec version 0.8.2. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/harmony-simd.js ('k') | src/messages.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 28 matching lines...) Expand all
39 V(String, hidden_string, hidden_string) \ 39 V(String, hidden_string, hidden_string) \
40 V(Oddball, uninitialized_value, UninitializedValue) \ 40 V(Oddball, uninitialized_value, UninitializedValue) \
41 V(Map, cell_map, CellMap) \ 41 V(Map, cell_map, CellMap) \
42 V(Map, global_property_cell_map, GlobalPropertyCellMap) \ 42 V(Map, global_property_cell_map, GlobalPropertyCellMap) \
43 V(Map, shared_function_info_map, SharedFunctionInfoMap) \ 43 V(Map, shared_function_info_map, SharedFunctionInfoMap) \
44 V(Map, meta_map, MetaMap) \ 44 V(Map, meta_map, MetaMap) \
45 V(Map, heap_number_map, HeapNumberMap) \ 45 V(Map, heap_number_map, HeapNumberMap) \
46 V(Map, mutable_heap_number_map, MutableHeapNumberMap) \ 46 V(Map, mutable_heap_number_map, MutableHeapNumberMap) \
47 V(Map, float32x4_map, Float32x4Map) \ 47 V(Map, float32x4_map, Float32x4Map) \
48 V(Map, int32x4_map, Int32x4Map) \ 48 V(Map, int32x4_map, Int32x4Map) \
49 V(Map, uint32x4_map, Uint32x4Map) \
50 V(Map, bool32x4_map, Bool32x4Map) \ 49 V(Map, bool32x4_map, Bool32x4Map) \
51 V(Map, int16x8_map, Int16x8Map) \ 50 V(Map, int16x8_map, Int16x8Map) \
52 V(Map, uint16x8_map, Uint16x8Map) \
53 V(Map, bool16x8_map, Bool16x8Map) \ 51 V(Map, bool16x8_map, Bool16x8Map) \
54 V(Map, int8x16_map, Int8x16Map) \ 52 V(Map, int8x16_map, Int8x16Map) \
55 V(Map, uint8x16_map, Uint8x16Map) \
56 V(Map, bool8x16_map, Bool8x16Map) \ 53 V(Map, bool8x16_map, Bool8x16Map) \
57 V(Map, native_context_map, NativeContextMap) \ 54 V(Map, native_context_map, NativeContextMap) \
58 V(Map, fixed_array_map, FixedArrayMap) \ 55 V(Map, fixed_array_map, FixedArrayMap) \
59 V(Map, code_map, CodeMap) \ 56 V(Map, code_map, CodeMap) \
60 V(Map, scope_info_map, ScopeInfoMap) \ 57 V(Map, scope_info_map, ScopeInfoMap) \
61 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \ 58 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \
62 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \ 59 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \
63 V(Map, weak_cell_map, WeakCellMap) \ 60 V(Map, weak_cell_map, WeakCellMap) \
64 V(Map, one_byte_string_map, OneByteStringMap) \ 61 V(Map, one_byte_string_map, OneByteStringMap) \
65 V(Map, one_byte_internalized_string_map, OneByteInternalizedStringMap) \ 62 V(Map, one_byte_internalized_string_map, OneByteInternalizedStringMap) \
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 V(boolean_string, "boolean") \ 214 V(boolean_string, "boolean") \
218 V(Boolean_string, "Boolean") \ 215 V(Boolean_string, "Boolean") \
219 V(callee_string, "callee") \ 216 V(callee_string, "callee") \
220 V(constructor_string, "constructor") \ 217 V(constructor_string, "constructor") \
221 V(dot_result_string, ".result") \ 218 V(dot_result_string, ".result") \
222 V(eval_string, "eval") \ 219 V(eval_string, "eval") \
223 V(float32x4_string, "float32x4") \ 220 V(float32x4_string, "float32x4") \
224 V(Float32x4_string, "Float32x4") \ 221 V(Float32x4_string, "Float32x4") \
225 V(int32x4_string, "int32x4") \ 222 V(int32x4_string, "int32x4") \
226 V(Int32x4_string, "Int32x4") \ 223 V(Int32x4_string, "Int32x4") \
227 V(uint32x4_string, "uint32x4") \
228 V(Uint32x4_string, "Uint32x4") \
229 V(bool32x4_string, "bool32x4") \ 224 V(bool32x4_string, "bool32x4") \
230 V(Bool32x4_string, "Bool32x4") \ 225 V(Bool32x4_string, "Bool32x4") \
231 V(int16x8_string, "int16x8") \ 226 V(int16x8_string, "int16x8") \
232 V(Int16x8_string, "Int16x8") \ 227 V(Int16x8_string, "Int16x8") \
233 V(uint16x8_string, "uint16x8") \
234 V(Uint16x8_string, "Uint16x8") \
235 V(bool16x8_string, "bool16x8") \ 228 V(bool16x8_string, "bool16x8") \
236 V(Bool16x8_string, "Bool16x8") \ 229 V(Bool16x8_string, "Bool16x8") \
237 V(int8x16_string, "int8x16") \ 230 V(int8x16_string, "int8x16") \
238 V(Int8x16_string, "Int8x16") \ 231 V(Int8x16_string, "Int8x16") \
239 V(uint8x16_string, "uint8x16") \
240 V(Uint8x16_string, "Uint8x16") \
241 V(bool8x16_string, "bool8x16") \ 232 V(bool8x16_string, "bool8x16") \
242 V(Bool8x16_string, "Bool8x16") \ 233 V(Bool8x16_string, "Bool8x16") \
243 V(function_string, "function") \ 234 V(function_string, "function") \
244 V(Function_string, "Function") \ 235 V(Function_string, "Function") \
245 V(length_string, "length") \ 236 V(length_string, "length") \
246 V(name_string, "name") \ 237 V(name_string, "name") \
247 V(null_string, "null") \ 238 V(null_string, "null") \
248 V(number_string, "number") \ 239 V(number_string, "number") \
249 V(Number_string, "Number") \ 240 V(Number_string, "Number") \
250 V(nan_string, "NaN") \ 241 V(nan_string, "NaN") \
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 V(FalseValue) \ 362 V(FalseValue) \
372 V(UninitializedValue) \ 363 V(UninitializedValue) \
373 V(CellMap) \ 364 V(CellMap) \
374 V(GlobalPropertyCellMap) \ 365 V(GlobalPropertyCellMap) \
375 V(SharedFunctionInfoMap) \ 366 V(SharedFunctionInfoMap) \
376 V(MetaMap) \ 367 V(MetaMap) \
377 V(HeapNumberMap) \ 368 V(HeapNumberMap) \
378 V(MutableHeapNumberMap) \ 369 V(MutableHeapNumberMap) \
379 V(Float32x4Map) \ 370 V(Float32x4Map) \
380 V(Int32x4Map) \ 371 V(Int32x4Map) \
381 V(Uint32x4Map) \
382 V(Bool32x4Map) \ 372 V(Bool32x4Map) \
383 V(Int16x8Map) \ 373 V(Int16x8Map) \
384 V(Uint16x8Map) \
385 V(Bool16x8Map) \ 374 V(Bool16x8Map) \
386 V(Int8x16Map) \ 375 V(Int8x16Map) \
387 V(Uint8x16Map) \
388 V(Bool8x16Map) \ 376 V(Bool8x16Map) \
389 V(NativeContextMap) \ 377 V(NativeContextMap) \
390 V(FixedArrayMap) \ 378 V(FixedArrayMap) \
391 V(CodeMap) \ 379 V(CodeMap) \
392 V(ScopeInfoMap) \ 380 V(ScopeInfoMap) \
393 V(FixedCOWArrayMap) \ 381 V(FixedCOWArrayMap) \
394 V(FixedDoubleArrayMap) \ 382 V(FixedDoubleArrayMap) \
395 V(WeakCellMap) \ 383 V(WeakCellMap) \
396 V(NoInterceptorResultSentinel) \ 384 V(NoInterceptorResultSentinel) \
397 V(HashTableMap) \ 385 V(HashTableMap) \
(...skipping 2301 matching lines...) Expand 10 before | Expand all | Expand 10 after
2699 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2687 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2700 2688
2701 private: 2689 private:
2702 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2690 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2703 }; 2691 };
2704 #endif // DEBUG 2692 #endif // DEBUG
2705 } 2693 }
2706 } // namespace v8::internal 2694 } // namespace v8::internal
2707 2695
2708 #endif // V8_HEAP_HEAP_H_ 2696 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/harmony-simd.js ('k') | src/messages.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698