OLD | NEW |
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 #include "src/base/flags.h" | 8 #include "src/base/flags.h" |
9 #include "src/handles.h" | 9 #include "src/handles.h" |
10 | 10 |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 V(StoreIC_Slow, STORE_IC) \ | 194 V(StoreIC_Slow, STORE_IC) \ |
195 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \ | 195 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \ |
196 V(LoadIC_Normal, LOAD_IC) \ | 196 V(LoadIC_Normal, LOAD_IC) \ |
197 V(LoadIC_Normal_Strong, LOAD_IC) \ | 197 V(LoadIC_Normal_Strong, LOAD_IC) \ |
198 V(StoreIC_Normal, STORE_IC) | 198 V(StoreIC_Normal, STORE_IC) |
199 | 199 |
200 // Define list of builtins used by the debugger implemented in assembly. | 200 // Define list of builtins used by the debugger implemented in assembly. |
201 #define BUILTIN_LIST_DEBUG_A(V) \ | 201 #define BUILTIN_LIST_DEBUG_A(V) \ |
202 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \ | 202 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \ |
203 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \ | 203 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \ |
| 204 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) \ |
204 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) | 205 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) |
205 | 206 |
206 | 207 |
207 class BuiltinFunctionTable; | 208 class BuiltinFunctionTable; |
208 class ObjectVisitor; | 209 class ObjectVisitor; |
209 | 210 |
210 | 211 |
211 class Builtins { | 212 class Builtins { |
212 public: | 213 public: |
213 ~Builtins(); | 214 ~Builtins(); |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 friend class BuiltinFunctionTable; | 391 friend class BuiltinFunctionTable; |
391 friend class Isolate; | 392 friend class Isolate; |
392 | 393 |
393 DISALLOW_COPY_AND_ASSIGN(Builtins); | 394 DISALLOW_COPY_AND_ASSIGN(Builtins); |
394 }; | 395 }; |
395 | 396 |
396 } // namespace internal | 397 } // namespace internal |
397 } // namespace v8 | 398 } // namespace v8 |
398 | 399 |
399 #endif // V8_BUILTINS_H_ | 400 #endif // V8_BUILTINS_H_ |
OLD | NEW |