OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 #include "ia32/assembler-ia32.h" | 65 #include "ia32/assembler-ia32.h" |
66 #include "ia32/assembler-ia32-inl.h" | 66 #include "ia32/assembler-ia32-inl.h" |
67 #include "code.h" // must be after assembler_*.h | 67 #include "code.h" // must be after assembler_*.h |
68 #include "ia32/macro-assembler-ia32.h" | 68 #include "ia32/macro-assembler-ia32.h" |
69 #elif V8_TARGET_ARCH_X64 | 69 #elif V8_TARGET_ARCH_X64 |
70 #include "assembler.h" | 70 #include "assembler.h" |
71 #include "x64/assembler-x64.h" | 71 #include "x64/assembler-x64.h" |
72 #include "x64/assembler-x64-inl.h" | 72 #include "x64/assembler-x64-inl.h" |
73 #include "code.h" // must be after assembler_*.h | 73 #include "code.h" // must be after assembler_*.h |
74 #include "x64/macro-assembler-x64.h" | 74 #include "x64/macro-assembler-x64.h" |
| 75 #elif V8_TARGET_ARCH_X32 |
| 76 #include "assembler.h" |
| 77 #include "x32/assembler-x32.h" |
| 78 #include "x32/assembler-x32-inl.h" |
| 79 #include "code.h" // must be after assembler_*.h |
| 80 #include "x32/macro-assembler-x32.h" |
75 #elif V8_TARGET_ARCH_ARM | 81 #elif V8_TARGET_ARCH_ARM |
76 #include "arm/constants-arm.h" | 82 #include "arm/constants-arm.h" |
77 #include "assembler.h" | 83 #include "assembler.h" |
78 #include "arm/assembler-arm.h" | 84 #include "arm/assembler-arm.h" |
79 #include "arm/assembler-arm-inl.h" | 85 #include "arm/assembler-arm-inl.h" |
80 #include "code.h" // must be after assembler_*.h | 86 #include "code.h" // must be after assembler_*.h |
81 #include "arm/macro-assembler-arm.h" | 87 #include "arm/macro-assembler-arm.h" |
82 #elif V8_TARGET_ARCH_MIPS | 88 #elif V8_TARGET_ARCH_MIPS |
83 #include "mips/constants-mips.h" | 89 #include "mips/constants-mips.h" |
84 #include "assembler.h" | 90 #include "assembler.h" |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 isolate); | 203 isolate); |
198 } | 204 } |
199 return ExternalReference::new_space_allocation_limit_address(isolate); | 205 return ExternalReference::new_space_allocation_limit_address(isolate); |
200 } | 206 } |
201 }; | 207 }; |
202 | 208 |
203 | 209 |
204 } } // namespace v8::internal | 210 } } // namespace v8::internal |
205 | 211 |
206 #endif // V8_MACRO_ASSEMBLER_H_ | 212 #endif // V8_MACRO_ASSEMBLER_H_ |
OLD | NEW |