| 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 #include "src/assembler.h" | 8 #include "src/assembler.h" |
| 9 | 9 |
| 10 | 10 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 #elif V8_TARGET_ARCH_MIPS | 61 #elif V8_TARGET_ARCH_MIPS |
| 62 #include "src/mips/assembler-mips.h" | 62 #include "src/mips/assembler-mips.h" |
| 63 #include "src/mips/assembler-mips-inl.h" | 63 #include "src/mips/assembler-mips-inl.h" |
| 64 #include "src/mips/constants-mips.h" | 64 #include "src/mips/constants-mips.h" |
| 65 #include "src/mips/macro-assembler-mips.h" | 65 #include "src/mips/macro-assembler-mips.h" |
| 66 #elif V8_TARGET_ARCH_MIPS64 | 66 #elif V8_TARGET_ARCH_MIPS64 |
| 67 #include "src/mips64/assembler-mips64.h" | 67 #include "src/mips64/assembler-mips64.h" |
| 68 #include "src/mips64/assembler-mips64-inl.h" | 68 #include "src/mips64/assembler-mips64-inl.h" |
| 69 #include "src/mips64/constants-mips64.h" | 69 #include "src/mips64/constants-mips64.h" |
| 70 #include "src/mips64/macro-assembler-mips64.h" | 70 #include "src/mips64/macro-assembler-mips64.h" |
| 71 #elif V8_TARGET_ARCH_S390 |
| 72 #include "src/s390/assembler-s390.h" |
| 73 #include "src/s390/assembler-s390-inl.h" |
| 74 #include "src/s390/constants-s390.h" |
| 75 #include "src/s390/macro-assembler-s390.h" |
| 71 #elif V8_TARGET_ARCH_X87 | 76 #elif V8_TARGET_ARCH_X87 |
| 72 #include "src/x87/assembler-x87.h" | 77 #include "src/x87/assembler-x87.h" |
| 73 #include "src/x87/assembler-x87-inl.h" | 78 #include "src/x87/assembler-x87-inl.h" |
| 74 #include "src/x87/macro-assembler-x87.h" | 79 #include "src/x87/macro-assembler-x87.h" |
| 75 #else | 80 #else |
| 76 #error Unsupported target architecture. | 81 #error Unsupported target architecture. |
| 77 #endif | 82 #endif |
| 78 | 83 |
| 79 namespace v8 { | 84 namespace v8 { |
| 80 namespace internal { | 85 namespace internal { |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 } | 280 } |
| 276 return ExternalReference::new_space_allocation_limit_address(isolate); | 281 return ExternalReference::new_space_allocation_limit_address(isolate); |
| 277 } | 282 } |
| 278 }; | 283 }; |
| 279 | 284 |
| 280 | 285 |
| 281 } // namespace internal | 286 } // namespace internal |
| 282 } // namespace v8 | 287 } // namespace v8 |
| 283 | 288 |
| 284 #endif // V8_MACRO_ASSEMBLER_H_ | 289 #endif // V8_MACRO_ASSEMBLER_H_ |
| OLD | NEW |