| OLD | NEW |
| 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_CODE_STUBS_H_ | 5 #ifndef V8_CODE_STUBS_H_ |
| 6 #define V8_CODE_STUBS_H_ | 6 #define V8_CODE_STUBS_H_ |
| 7 | 7 |
| 8 #include "allocation.h" | 8 #include "allocation.h" |
| 9 #include "assembler.h" | 9 #include "assembler.h" |
| 10 #include "codegen.h" | 10 #include "codegen.h" |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 #if V8_TARGET_ARCH_IA32 | 439 #if V8_TARGET_ARCH_IA32 |
| 440 #include "ia32/code-stubs-ia32.h" | 440 #include "ia32/code-stubs-ia32.h" |
| 441 #elif V8_TARGET_ARCH_X64 | 441 #elif V8_TARGET_ARCH_X64 |
| 442 #include "x64/code-stubs-x64.h" | 442 #include "x64/code-stubs-x64.h" |
| 443 #elif V8_TARGET_ARCH_ARM64 | 443 #elif V8_TARGET_ARCH_ARM64 |
| 444 #include "arm64/code-stubs-arm64.h" | 444 #include "arm64/code-stubs-arm64.h" |
| 445 #elif V8_TARGET_ARCH_ARM | 445 #elif V8_TARGET_ARCH_ARM |
| 446 #include "arm/code-stubs-arm.h" | 446 #include "arm/code-stubs-arm.h" |
| 447 #elif V8_TARGET_ARCH_MIPS | 447 #elif V8_TARGET_ARCH_MIPS |
| 448 #include "mips/code-stubs-mips.h" | 448 #include "mips/code-stubs-mips.h" |
| 449 #elif V8_TARGET_ARCH_X87 |
| 450 #include "x87/code-stubs-x87.h" |
| 449 #else | 451 #else |
| 450 #error Unsupported target architecture. | 452 #error Unsupported target architecture. |
| 451 #endif | 453 #endif |
| 452 | 454 |
| 453 namespace v8 { | 455 namespace v8 { |
| 454 namespace internal { | 456 namespace internal { |
| 455 | 457 |
| 456 | 458 |
| 457 // RuntimeCallHelper implementation used in stubs: enters/leaves a | 459 // RuntimeCallHelper implementation used in stubs: enters/leaves a |
| 458 // newly created internal frame before/after the runtime call. | 460 // newly created internal frame before/after the runtime call. |
| (...skipping 2036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2495 | 2497 |
| 2496 | 2498 |
| 2497 class CallDescriptors { | 2499 class CallDescriptors { |
| 2498 public: | 2500 public: |
| 2499 static void InitializeForIsolate(Isolate* isolate); | 2501 static void InitializeForIsolate(Isolate* isolate); |
| 2500 }; | 2502 }; |
| 2501 | 2503 |
| 2502 } } // namespace v8::internal | 2504 } } // namespace v8::internal |
| 2503 | 2505 |
| 2504 #endif // V8_CODE_STUBS_H_ | 2506 #endif // V8_CODE_STUBS_H_ |
| OLD | NEW |