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) \ | |
205 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) | 204 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) |
206 | 205 |
207 | 206 |
208 class BuiltinFunctionTable; | 207 class BuiltinFunctionTable; |
209 class ObjectVisitor; | 208 class ObjectVisitor; |
210 | 209 |
211 | 210 |
212 class Builtins { | 211 class Builtins { |
213 public: | 212 public: |
214 ~Builtins(); | 213 ~Builtins(); |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 friend class BuiltinFunctionTable; | 390 friend class BuiltinFunctionTable; |
392 friend class Isolate; | 391 friend class Isolate; |
393 | 392 |
394 DISALLOW_COPY_AND_ASSIGN(Builtins); | 393 DISALLOW_COPY_AND_ASSIGN(Builtins); |
395 }; | 394 }; |
396 | 395 |
397 } // namespace internal | 396 } // namespace internal |
398 } // namespace v8 | 397 } // namespace v8 |
399 | 398 |
400 #endif // V8_BUILTINS_H_ | 399 #endif // V8_BUILTINS_H_ |
OLD | NEW |