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 "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/assembler.h" | 9 #include "src/assembler.h" |
10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
590 virtual void AfterCall(MacroAssembler* masm) const = 0; | 590 virtual void AfterCall(MacroAssembler* masm) const = 0; |
591 | 591 |
592 protected: | 592 protected: |
593 RuntimeCallHelper() {} | 593 RuntimeCallHelper() {} |
594 | 594 |
595 private: | 595 private: |
596 DISALLOW_COPY_AND_ASSIGN(RuntimeCallHelper); | 596 DISALLOW_COPY_AND_ASSIGN(RuntimeCallHelper); |
597 }; | 597 }; |
598 | 598 |
599 | 599 |
600 } } // namespace v8::internal | 600 } // namespace internal |
| 601 } // namespace v8 |
601 | 602 |
602 #if V8_TARGET_ARCH_IA32 | 603 #if V8_TARGET_ARCH_IA32 |
603 #include "src/ia32/code-stubs-ia32.h" | 604 #include "src/ia32/code-stubs-ia32.h" |
604 #elif V8_TARGET_ARCH_X64 | 605 #elif V8_TARGET_ARCH_X64 |
605 #include "src/x64/code-stubs-x64.h" | 606 #include "src/x64/code-stubs-x64.h" |
606 #elif V8_TARGET_ARCH_ARM64 | 607 #elif V8_TARGET_ARCH_ARM64 |
607 #include "src/arm64/code-stubs-arm64.h" | 608 #include "src/arm64/code-stubs-arm64.h" |
608 #elif V8_TARGET_ARCH_ARM | 609 #elif V8_TARGET_ARCH_ARM |
609 #include "src/arm/code-stubs-arm.h" | 610 #include "src/arm/code-stubs-arm.h" |
610 #elif V8_TARGET_ARCH_PPC | 611 #elif V8_TARGET_ARCH_PPC |
(...skipping 2480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3091 #undef DEFINE_HYDROGEN_CODE_STUB | 3092 #undef DEFINE_HYDROGEN_CODE_STUB |
3092 #undef DEFINE_CODE_STUB | 3093 #undef DEFINE_CODE_STUB |
3093 #undef DEFINE_CODE_STUB_BASE | 3094 #undef DEFINE_CODE_STUB_BASE |
3094 | 3095 |
3095 extern Representation RepresentationFromType(Type* type); | 3096 extern Representation RepresentationFromType(Type* type); |
3096 | 3097 |
3097 } // namespace internal | 3098 } // namespace internal |
3098 } // namespace v8 | 3099 } // namespace v8 |
3099 | 3100 |
3100 #endif // V8_CODE_STUBS_H_ | 3101 #endif // V8_CODE_STUBS_H_ |
OLD | NEW |