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_MACRO_ASSEMBLER_H_ | 5 #ifndef V8_MACRO_ASSEMBLER_H_ |
6 #define V8_MACRO_ASSEMBLER_H_ | 6 #define V8_MACRO_ASSEMBLER_H_ |
7 | 7 |
8 | 8 |
9 // Helper types to make boolean flag easier to read at call-site. | 9 // Helper types to make boolean flag easier to read at call-site. |
10 enum InvokeFlag { | 10 enum InvokeFlag { |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 #include "src/code.h" // must be after assembler_*.h | 57 #include "src/code.h" // must be after assembler_*.h |
58 #include "src/arm64/macro-assembler-arm64.h" | 58 #include "src/arm64/macro-assembler-arm64.h" |
59 #include "src/arm64/macro-assembler-arm64-inl.h" | 59 #include "src/arm64/macro-assembler-arm64-inl.h" |
60 #elif V8_TARGET_ARCH_ARM | 60 #elif V8_TARGET_ARCH_ARM |
61 #include "src/arm/constants-arm.h" | 61 #include "src/arm/constants-arm.h" |
62 #include "src/assembler.h" | 62 #include "src/assembler.h" |
63 #include "src/arm/assembler-arm.h" // NOLINT | 63 #include "src/arm/assembler-arm.h" // NOLINT |
64 #include "src/arm/assembler-arm-inl.h" | 64 #include "src/arm/assembler-arm-inl.h" |
65 #include "src/code.h" // must be after assembler_*.h | 65 #include "src/code.h" // must be after assembler_*.h |
66 #include "src/arm/macro-assembler-arm.h" | 66 #include "src/arm/macro-assembler-arm.h" |
| 67 #elif V8_TARGET_ARCH_PPC |
| 68 #include "src/ppc/constants-ppc.h" |
| 69 #include "src/assembler.h" |
| 70 #include "src/ppc/assembler-ppc.h" // NOLINT |
| 71 #include "src/ppc/assembler-ppc-inl.h" |
| 72 #include "src/code.h" // must be after assembler_*.h |
| 73 #include "src/ppc/macro-assembler-ppc.h" |
67 #elif V8_TARGET_ARCH_MIPS | 74 #elif V8_TARGET_ARCH_MIPS |
68 #include "src/mips/constants-mips.h" | 75 #include "src/mips/constants-mips.h" |
69 #include "src/assembler.h" | 76 #include "src/assembler.h" |
70 #include "src/mips/assembler-mips.h" // NOLINT | 77 #include "src/mips/assembler-mips.h" // NOLINT |
71 #include "src/mips/assembler-mips-inl.h" | 78 #include "src/mips/assembler-mips-inl.h" |
72 #include "src/code.h" // must be after assembler_*.h | 79 #include "src/code.h" // must be after assembler_*.h |
73 #include "src/mips/macro-assembler-mips.h" | 80 #include "src/mips/macro-assembler-mips.h" |
74 #elif V8_TARGET_ARCH_MIPS64 | 81 #elif V8_TARGET_ARCH_MIPS64 |
75 #include "src/mips64/constants-mips64.h" | 82 #include "src/mips64/constants-mips64.h" |
76 #include "src/assembler.h" | 83 #include "src/assembler.h" |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 isolate); | 203 isolate); |
197 } | 204 } |
198 return ExternalReference::new_space_allocation_limit_address(isolate); | 205 return ExternalReference::new_space_allocation_limit_address(isolate); |
199 } | 206 } |
200 }; | 207 }; |
201 | 208 |
202 | 209 |
203 } } // namespace v8::internal | 210 } } // namespace v8::internal |
204 | 211 |
205 #endif // V8_MACRO_ASSEMBLER_H_ | 212 #endif // V8_MACRO_ASSEMBLER_H_ |
OLD | NEW |