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

Side by Side Diff: src/contexts.h

Issue 2398423002: [regexp] Port RegExp.prototype[@@replace] (Closed)
Patch Set: Smi::kZero Created 4 years, 2 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/code-stub-assembler.cc ('k') | src/js/prologue.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_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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 V(OBJECT_WITH_NULL_PROTOTYPE_MAP, Map, object_with_null_prototype_map) \ 196 V(OBJECT_WITH_NULL_PROTOTYPE_MAP, Map, object_with_null_prototype_map) \
197 V(OBJECT_FUNCTION_PROTOTYPE_MAP_INDEX, Map, object_function_prototype_map) \ 197 V(OBJECT_FUNCTION_PROTOTYPE_MAP_INDEX, Map, object_function_prototype_map) \
198 V(OPAQUE_REFERENCE_FUNCTION_INDEX, JSFunction, opaque_reference_function) \ 198 V(OPAQUE_REFERENCE_FUNCTION_INDEX, JSFunction, opaque_reference_function) \
199 V(PROXY_CALLABLE_MAP_INDEX, Map, proxy_callable_map) \ 199 V(PROXY_CALLABLE_MAP_INDEX, Map, proxy_callable_map) \
200 V(PROXY_CONSTRUCTOR_MAP_INDEX, Map, proxy_constructor_map) \ 200 V(PROXY_CONSTRUCTOR_MAP_INDEX, Map, proxy_constructor_map) \
201 V(PROXY_FUNCTION_INDEX, JSFunction, proxy_function) \ 201 V(PROXY_FUNCTION_INDEX, JSFunction, proxy_function) \
202 V(PROXY_FUNCTION_MAP_INDEX, Map, proxy_function_map) \ 202 V(PROXY_FUNCTION_MAP_INDEX, Map, proxy_function_map) \
203 V(PROXY_MAP_INDEX, Map, proxy_map) \ 203 V(PROXY_MAP_INDEX, Map, proxy_map) \
204 V(REGEXP_EXEC_FUNCTION_INDEX, JSFunction, regexp_exec_function) \ 204 V(REGEXP_EXEC_FUNCTION_INDEX, JSFunction, regexp_exec_function) \
205 V(REGEXP_FUNCTION_INDEX, JSFunction, regexp_function) \ 205 V(REGEXP_FUNCTION_INDEX, JSFunction, regexp_function) \
206 V(REGEXP_PROTOTYPE_MAP_INDEX, Map, regexp_prototype_map) \
206 V(REGEXP_RESULT_MAP_INDEX, Map, regexp_result_map) \ 207 V(REGEXP_RESULT_MAP_INDEX, Map, regexp_result_map) \
207 V(SCRIPT_CONTEXT_TABLE_INDEX, ScriptContextTable, script_context_table) \ 208 V(SCRIPT_CONTEXT_TABLE_INDEX, ScriptContextTable, script_context_table) \
208 V(SCRIPT_FUNCTION_INDEX, JSFunction, script_function) \ 209 V(SCRIPT_FUNCTION_INDEX, JSFunction, script_function) \
209 V(SECURITY_TOKEN_INDEX, Object, security_token) \ 210 V(SECURITY_TOKEN_INDEX, Object, security_token) \
210 V(SELF_WEAK_CELL_INDEX, WeakCell, self_weak_cell) \ 211 V(SELF_WEAK_CELL_INDEX, WeakCell, self_weak_cell) \
211 V(SET_ITERATOR_MAP_INDEX, Map, set_iterator_map) \ 212 V(SET_ITERATOR_MAP_INDEX, Map, set_iterator_map) \
212 V(SHARED_ARRAY_BUFFER_FUN_INDEX, JSFunction, shared_array_buffer_fun) \ 213 V(SHARED_ARRAY_BUFFER_FUN_INDEX, JSFunction, shared_array_buffer_fun) \
213 V(SLOPPY_ARGUMENTS_MAP_INDEX, Map, sloppy_arguments_map) \ 214 V(SLOPPY_ARGUMENTS_MAP_INDEX, Map, sloppy_arguments_map) \
214 V(SLOPPY_FUNCTION_MAP_INDEX, Map, sloppy_function_map) \ 215 V(SLOPPY_FUNCTION_MAP_INDEX, Map, sloppy_function_map) \
215 V(SLOPPY_FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX, Map, \ 216 V(SLOPPY_FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX, Map, \
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 #endif 565 #endif
565 566
566 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize); 567 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize);
567 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex); 568 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex);
568 }; 569 };
569 570
570 } // namespace internal 571 } // namespace internal
571 } // namespace v8 572 } // namespace v8
572 573
573 #endif // V8_CONTEXTS_H_ 574 #endif // V8_CONTEXTS_H_
OLDNEW
« no previous file with comments | « src/code-stub-assembler.cc ('k') | src/js/prologue.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698