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

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

Issue 1294513004: [simd.js] Update to spec version 0.8.2. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Latest SIMD.js Spec. 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
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 29 matching lines...) Expand all
40 V(String, empty_string, empty_string) \ 40 V(String, empty_string, empty_string) \
41 V(Oddball, uninitialized_value, UninitializedValue) \ 41 V(Oddball, uninitialized_value, UninitializedValue) \
42 V(Map, cell_map, CellMap) \ 42 V(Map, cell_map, CellMap) \
43 V(Map, global_property_cell_map, GlobalPropertyCellMap) \ 43 V(Map, global_property_cell_map, GlobalPropertyCellMap) \
44 V(Map, shared_function_info_map, SharedFunctionInfoMap) \ 44 V(Map, shared_function_info_map, SharedFunctionInfoMap) \
45 V(Map, meta_map, MetaMap) \ 45 V(Map, meta_map, MetaMap) \
46 V(Map, heap_number_map, HeapNumberMap) \ 46 V(Map, heap_number_map, HeapNumberMap) \
47 V(Map, mutable_heap_number_map, MutableHeapNumberMap) \ 47 V(Map, mutable_heap_number_map, MutableHeapNumberMap) \
48 V(Map, float32x4_map, Float32x4Map) \ 48 V(Map, float32x4_map, Float32x4Map) \
49 V(Map, int32x4_map, Int32x4Map) \ 49 V(Map, int32x4_map, Int32x4Map) \
50 V(Map, uint32x4_map, Uint32x4Map) \
50 V(Map, bool32x4_map, Bool32x4Map) \ 51 V(Map, bool32x4_map, Bool32x4Map) \
51 V(Map, int16x8_map, Int16x8Map) \ 52 V(Map, int16x8_map, Int16x8Map) \
53 V(Map, uint16x8_map, Uint16x8Map) \
52 V(Map, bool16x8_map, Bool16x8Map) \ 54 V(Map, bool16x8_map, Bool16x8Map) \
53 V(Map, int8x16_map, Int8x16Map) \ 55 V(Map, int8x16_map, Int8x16Map) \
56 V(Map, uint8x16_map, Uint8x16Map) \
54 V(Map, bool8x16_map, Bool8x16Map) \ 57 V(Map, bool8x16_map, Bool8x16Map) \
55 V(Map, native_context_map, NativeContextMap) \ 58 V(Map, native_context_map, NativeContextMap) \
56 V(Map, fixed_array_map, FixedArrayMap) \ 59 V(Map, fixed_array_map, FixedArrayMap) \
57 V(Map, code_map, CodeMap) \ 60 V(Map, code_map, CodeMap) \
58 V(Map, scope_info_map, ScopeInfoMap) \ 61 V(Map, scope_info_map, ScopeInfoMap) \
59 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \ 62 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \
60 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \ 63 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \
61 V(Map, weak_cell_map, WeakCellMap) \ 64 V(Map, weak_cell_map, WeakCellMap) \
62 V(Map, one_byte_string_map, OneByteStringMap) \ 65 V(Map, one_byte_string_map, OneByteStringMap) \
63 V(Map, one_byte_internalized_string_map, OneByteInternalizedStringMap) \ 66 V(Map, one_byte_internalized_string_map, OneByteInternalizedStringMap) \
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 V(boolean_string, "boolean") \ 215 V(boolean_string, "boolean") \
213 V(Boolean_string, "Boolean") \ 216 V(Boolean_string, "Boolean") \
214 V(callee_string, "callee") \ 217 V(callee_string, "callee") \
215 V(constructor_string, "constructor") \ 218 V(constructor_string, "constructor") \
216 V(dot_result_string, ".result") \ 219 V(dot_result_string, ".result") \
217 V(eval_string, "eval") \ 220 V(eval_string, "eval") \
218 V(float32x4_string, "float32x4") \ 221 V(float32x4_string, "float32x4") \
219 V(Float32x4_string, "Float32x4") \ 222 V(Float32x4_string, "Float32x4") \
220 V(int32x4_string, "int32x4") \ 223 V(int32x4_string, "int32x4") \
221 V(Int32x4_string, "Int32x4") \ 224 V(Int32x4_string, "Int32x4") \
225 V(uint32x4_string, "uint32x4") \
226 V(Uint32x4_string, "Uint32x4") \
222 V(bool32x4_string, "bool32x4") \ 227 V(bool32x4_string, "bool32x4") \
223 V(Bool32x4_string, "Bool32x4") \ 228 V(Bool32x4_string, "Bool32x4") \
224 V(int16x8_string, "int16x8") \ 229 V(int16x8_string, "int16x8") \
225 V(Int16x8_string, "Int16x8") \ 230 V(Int16x8_string, "Int16x8") \
231 V(uint16x8_string, "uint16x8") \
232 V(Uint16x8_string, "Uint16x8") \
226 V(bool16x8_string, "bool16x8") \ 233 V(bool16x8_string, "bool16x8") \
227 V(Bool16x8_string, "Bool16x8") \ 234 V(Bool16x8_string, "Bool16x8") \
228 V(int8x16_string, "int8x16") \ 235 V(int8x16_string, "int8x16") \
229 V(Int8x16_string, "Int8x16") \ 236 V(Int8x16_string, "Int8x16") \
237 V(uint8x16_string, "uint8x16") \
238 V(Uint8x16_string, "Uint8x16") \
230 V(bool8x16_string, "bool8x16") \ 239 V(bool8x16_string, "bool8x16") \
231 V(Bool8x16_string, "Bool8x16") \ 240 V(Bool8x16_string, "Bool8x16") \
232 V(function_string, "function") \ 241 V(function_string, "function") \
233 V(Function_string, "Function") \ 242 V(Function_string, "Function") \
234 V(length_string, "length") \ 243 V(length_string, "length") \
235 V(name_string, "name") \ 244 V(name_string, "name") \
236 V(null_string, "null") \ 245 V(null_string, "null") \
237 V(number_string, "number") \ 246 V(number_string, "number") \
238 V(Number_string, "Number") \ 247 V(Number_string, "Number") \
239 V(nan_string, "NaN") \ 248 V(nan_string, "NaN") \
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 V(FalseValue) \ 356 V(FalseValue) \
348 V(UninitializedValue) \ 357 V(UninitializedValue) \
349 V(CellMap) \ 358 V(CellMap) \
350 V(GlobalPropertyCellMap) \ 359 V(GlobalPropertyCellMap) \
351 V(SharedFunctionInfoMap) \ 360 V(SharedFunctionInfoMap) \
352 V(MetaMap) \ 361 V(MetaMap) \
353 V(HeapNumberMap) \ 362 V(HeapNumberMap) \
354 V(MutableHeapNumberMap) \ 363 V(MutableHeapNumberMap) \
355 V(Float32x4Map) \ 364 V(Float32x4Map) \
356 V(Int32x4Map) \ 365 V(Int32x4Map) \
366 V(Uint32x4Map) \
357 V(Bool32x4Map) \ 367 V(Bool32x4Map) \
358 V(Int16x8Map) \ 368 V(Int16x8Map) \
369 V(Uint16x8Map) \
359 V(Bool16x8Map) \ 370 V(Bool16x8Map) \
360 V(Int8x16Map) \ 371 V(Int8x16Map) \
372 V(Uint8x16Map) \
361 V(Bool8x16Map) \ 373 V(Bool8x16Map) \
362 V(NativeContextMap) \ 374 V(NativeContextMap) \
363 V(FixedArrayMap) \ 375 V(FixedArrayMap) \
364 V(CodeMap) \ 376 V(CodeMap) \
365 V(ScopeInfoMap) \ 377 V(ScopeInfoMap) \
366 V(FixedCOWArrayMap) \ 378 V(FixedCOWArrayMap) \
367 V(FixedDoubleArrayMap) \ 379 V(FixedDoubleArrayMap) \
368 V(WeakCellMap) \ 380 V(WeakCellMap) \
369 V(NoInterceptorResultSentinel) \ 381 V(NoInterceptorResultSentinel) \
370 V(HashTableMap) \ 382 V(HashTableMap) \
(...skipping 2338 matching lines...) Expand 10 before | Expand all | Expand 10 after
2709 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2721 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2710 2722
2711 private: 2723 private:
2712 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2724 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2713 }; 2725 };
2714 #endif // DEBUG 2726 #endif // DEBUG
2715 } 2727 }
2716 } // namespace v8::internal 2728 } // namespace v8::internal
2717 2729
2718 #endif // V8_HEAP_HEAP_H_ 2730 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/harmony-simd.js ('k') | src/messages.js » ('j') | test/simdjs/testcfg.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698