| 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/handles.h" | 8 #include "src/handles.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 V(StoreIC_Slow, STORE_IC) \ | 179 V(StoreIC_Slow, STORE_IC) \ |
| 180 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \ | 180 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \ |
| 181 V(LoadIC_Normal, LOAD_IC) \ | 181 V(LoadIC_Normal, LOAD_IC) \ |
| 182 V(LoadIC_Normal_Strong, LOAD_IC) \ | 182 V(LoadIC_Normal_Strong, LOAD_IC) \ |
| 183 V(StoreIC_Normal, STORE_IC) | 183 V(StoreIC_Normal, STORE_IC) |
| 184 | 184 |
| 185 // Define list of builtins used by the debugger implemented in assembly. | 185 // Define list of builtins used by the debugger implemented in assembly. |
| 186 #define BUILTIN_LIST_DEBUG_A(V) \ | 186 #define BUILTIN_LIST_DEBUG_A(V) \ |
| 187 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \ | 187 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \ |
| 188 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \ | 188 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \ |
| 189 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) \ |
| 189 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) | 190 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) |
| 190 | 191 |
| 191 | 192 |
| 192 class BuiltinFunctionTable; | 193 class BuiltinFunctionTable; |
| 193 class ObjectVisitor; | 194 class ObjectVisitor; |
| 194 | 195 |
| 195 | 196 |
| 196 class Builtins { | 197 class Builtins { |
| 197 public: | 198 public: |
| 198 ~Builtins(); | 199 ~Builtins(); |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 friend class BuiltinFunctionTable; | 376 friend class BuiltinFunctionTable; |
| 376 friend class Isolate; | 377 friend class Isolate; |
| 377 | 378 |
| 378 DISALLOW_COPY_AND_ASSIGN(Builtins); | 379 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 379 }; | 380 }; |
| 380 | 381 |
| 381 } // namespace internal | 382 } // namespace internal |
| 382 } // namespace v8 | 383 } // namespace v8 |
| 383 | 384 |
| 384 #endif // V8_BUILTINS_H_ | 385 #endif // V8_BUILTINS_H_ |
| OLD | NEW |