| 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"  // NOLINT, must be after assembler_*.h | 57 #include "src/code.h"  // NOLINT, must be after assembler_*.h | 
| 58 #include "src/arm64/macro-assembler-arm64.h"  // NOLINT | 58 #include "src/arm64/macro-assembler-arm64.h"  // NOLINT | 
| 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"                     // NOLINT, must be after assembler_*.h | 65 #include "src/code.h"                     // NOLINT, must be after assembler_*.h | 
| 66 #include "src/arm/macro-assembler-arm.h"  // NOLINT | 66 #include "src/arm/macro-assembler-arm.h"  // NOLINT | 
|  | 67 #elif V8_TARGET_ARCH_PPC | 
|  | 68 #include "src/ppc/constants-ppc.h" | 
|  | 69 #include "src/assembler.h"          // NOLINT | 
|  | 70 #include "src/ppc/assembler-ppc.h"  // NOLINT | 
|  | 71 #include "src/ppc/assembler-ppc-inl.h" | 
|  | 72 #include "src/code.h"  // NOLINT, 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"            // NOLINT | 76 #include "src/assembler.h"            // NOLINT | 
| 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"  // NOLINT, must be after assembler_*.h | 79 #include "src/code.h"  // NOLINT, 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"                // NOLINT | 83 #include "src/assembler.h"                // NOLINT | 
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 264           isolate); | 271           isolate); | 
| 265     } | 272     } | 
| 266     return ExternalReference::new_space_allocation_limit_address(isolate); | 273     return ExternalReference::new_space_allocation_limit_address(isolate); | 
| 267   } | 274   } | 
| 268 }; | 275 }; | 
| 269 | 276 | 
| 270 | 277 | 
| 271 } }  // namespace v8::internal | 278 } }  // namespace v8::internal | 
| 272 | 279 | 
| 273 #endif  // V8_MACRO_ASSEMBLER_H_ | 280 #endif  // V8_MACRO_ASSEMBLER_H_ | 
| OLD | NEW | 
|---|