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

Side by Side Diff: src/contexts.h

Issue 2084573002: Upgrade Wasm JS API, step 1 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Separate test refactorings Created 4 years, 6 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 | « no previous file | src/wasm/wasm-js.cc » ('j') | src/wasm/wasm-js.cc » ('J')
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_CONTEXTS_H_ 5 #ifndef V8_CONTEXTS_H_
6 #define V8_CONTEXTS_H_ 6 #define V8_CONTEXTS_H_
7 7
8 #include "src/heap/heap.h" 8 #include "src/heap/heap.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 10
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 V(SELF_WEAK_CELL_INDEX, WeakCell, self_weak_cell) \ 232 V(SELF_WEAK_CELL_INDEX, WeakCell, self_weak_cell) \
233 V(SET_ITERATOR_MAP_INDEX, Map, set_iterator_map) \ 233 V(SET_ITERATOR_MAP_INDEX, Map, set_iterator_map) \
234 V(SHARED_ARRAY_BUFFER_FUN_INDEX, JSFunction, shared_array_buffer_fun) \ 234 V(SHARED_ARRAY_BUFFER_FUN_INDEX, JSFunction, shared_array_buffer_fun) \
235 V(SLOPPY_ARGUMENTS_MAP_INDEX, Map, sloppy_arguments_map) \ 235 V(SLOPPY_ARGUMENTS_MAP_INDEX, Map, sloppy_arguments_map) \
236 V(SLOPPY_FUNCTION_MAP_INDEX, Map, sloppy_function_map) \ 236 V(SLOPPY_FUNCTION_MAP_INDEX, Map, sloppy_function_map) \
237 V(SLOPPY_FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX, Map, \ 237 V(SLOPPY_FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX, Map, \
238 sloppy_function_without_prototype_map) \ 238 sloppy_function_without_prototype_map) \
239 V(SLOPPY_FUNCTION_WITH_READONLY_PROTOTYPE_MAP_INDEX, Map, \ 239 V(SLOPPY_FUNCTION_WITH_READONLY_PROTOTYPE_MAP_INDEX, Map, \
240 sloppy_function_with_readonly_prototype_map) \ 240 sloppy_function_with_readonly_prototype_map) \
241 V(WASM_FUNCTION_MAP_INDEX, Map, wasm_function_map) \ 241 V(WASM_FUNCTION_MAP_INDEX, Map, wasm_function_map) \
242 V(WASM_MODULE_CONSTRUCTOR_INDEX, JSFunction, wasm_module_constructor) \
243 V(WASM_INSTANCE_CONSTRUCTOR_INDEX, JSFunction, wasm_instance_constructor) \
244 V(WASM_MODULE_SYM_INDEX, Symbol, wasm_module_sym) \
245 V(WASM_INSTANCE_SYM_INDEX, Symbol, wasm_instance_sym) \
242 V(SLOPPY_ASYNC_FUNCTION_MAP_INDEX, Map, sloppy_async_function_map) \ 246 V(SLOPPY_ASYNC_FUNCTION_MAP_INDEX, Map, sloppy_async_function_map) \
243 V(SLOPPY_GENERATOR_FUNCTION_MAP_INDEX, Map, sloppy_generator_function_map) \ 247 V(SLOPPY_GENERATOR_FUNCTION_MAP_INDEX, Map, sloppy_generator_function_map) \
244 V(SLOW_ALIASED_ARGUMENTS_MAP_INDEX, Map, slow_aliased_arguments_map) \ 248 V(SLOW_ALIASED_ARGUMENTS_MAP_INDEX, Map, slow_aliased_arguments_map) \
245 V(STRICT_ASYNC_FUNCTION_MAP_INDEX, Map, strict_async_function_map) \ 249 V(STRICT_ASYNC_FUNCTION_MAP_INDEX, Map, strict_async_function_map) \
246 V(STRICT_ARGUMENTS_MAP_INDEX, Map, strict_arguments_map) \ 250 V(STRICT_ARGUMENTS_MAP_INDEX, Map, strict_arguments_map) \
247 V(STRICT_FUNCTION_MAP_INDEX, Map, strict_function_map) \ 251 V(STRICT_FUNCTION_MAP_INDEX, Map, strict_function_map) \
248 V(STRICT_FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX, Map, \ 252 V(STRICT_FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX, Map, \
249 strict_function_without_prototype_map) \ 253 strict_function_without_prototype_map) \
250 V(STRICT_GENERATOR_FUNCTION_MAP_INDEX, Map, strict_generator_function_map) \ 254 V(STRICT_GENERATOR_FUNCTION_MAP_INDEX, Map, strict_generator_function_map) \
251 V(STRING_FUNCTION_INDEX, JSFunction, string_function) \ 255 V(STRING_FUNCTION_INDEX, JSFunction, string_function) \
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 #endif 575 #endif
572 576
573 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize); 577 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize);
574 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex); 578 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex);
575 }; 579 };
576 580
577 } // namespace internal 581 } // namespace internal
578 } // namespace v8 582 } // namespace v8
579 583
580 #endif // V8_CONTEXTS_H_ 584 #endif // V8_CONTEXTS_H_
OLDNEW
« no previous file with comments | « no previous file | src/wasm/wasm-js.cc » ('j') | src/wasm/wasm-js.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698