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

Side by Side Diff: src/builtins.h

Issue 247373002: CallICStub with a "never patch" approach until customization. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE + code size multiplier. Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « src/ast.cc ('k') | src/builtins.cc » ('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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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_BUILTINS_H_ 5 #ifndef V8_BUILTINS_H_
6 #define V8_BUILTINS_H_ 6 #define V8_BUILTINS_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 10
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \ 173 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \
174 V(LoadIC_Normal, LOAD_IC) \ 174 V(LoadIC_Normal, LOAD_IC) \
175 V(StoreIC_Normal, STORE_IC) 175 V(StoreIC_Normal, STORE_IC)
176 176
177 // Define list of builtins used by the debugger implemented in assembly. 177 // Define list of builtins used by the debugger implemented in assembly.
178 #define BUILTIN_LIST_DEBUG_A(V) \ 178 #define BUILTIN_LIST_DEBUG_A(V) \
179 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, \ 179 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, \
180 DEBUG_BREAK) \ 180 DEBUG_BREAK) \
181 V(CallFunctionStub_DebugBreak, BUILTIN, DEBUG_STUB, \ 181 V(CallFunctionStub_DebugBreak, BUILTIN, DEBUG_STUB, \
182 DEBUG_BREAK) \ 182 DEBUG_BREAK) \
183 V(CallFunctionStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \
184 DEBUG_BREAK) \
185 V(CallConstructStub_DebugBreak, BUILTIN, DEBUG_STUB, \ 183 V(CallConstructStub_DebugBreak, BUILTIN, DEBUG_STUB, \
186 DEBUG_BREAK) \ 184 DEBUG_BREAK) \
187 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \ 185 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \
188 DEBUG_BREAK) \ 186 DEBUG_BREAK) \
187 V(CallICStub_DebugBreak, CALL_IC, DEBUG_STUB, \
188 DEBUG_BREAK) \
189 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_STUB, \ 189 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_STUB, \
190 DEBUG_BREAK) \ 190 DEBUG_BREAK) \
191 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_STUB, \ 191 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_STUB, \
192 DEBUG_BREAK) \ 192 DEBUG_BREAK) \
193 V(StoreIC_DebugBreak, STORE_IC, DEBUG_STUB, \ 193 V(StoreIC_DebugBreak, STORE_IC, DEBUG_STUB, \
194 DEBUG_BREAK) \ 194 DEBUG_BREAK) \
195 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_STUB, \ 195 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_STUB, \
196 DEBUG_BREAK) \ 196 DEBUG_BREAK) \
197 V(CompareNilIC_DebugBreak, COMPARE_NIL_IC, DEBUG_STUB, \ 197 V(CompareNilIC_DebugBreak, COMPARE_NIL_IC, DEBUG_STUB, \
198 DEBUG_BREAK) \ 198 DEBUG_BREAK) \
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 380
381 friend class BuiltinFunctionTable; 381 friend class BuiltinFunctionTable;
382 friend class Isolate; 382 friend class Isolate;
383 383
384 DISALLOW_COPY_AND_ASSIGN(Builtins); 384 DISALLOW_COPY_AND_ASSIGN(Builtins);
385 }; 385 };
386 386
387 } } // namespace v8::internal 387 } } // namespace v8::internal
388 388
389 #endif // V8_BUILTINS_H_ 389 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/ast.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698