Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(560)

Side by Side Diff: src/macro-assembler.h

Issue 1777593003: S390: Platform specific includes in common files (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Use new Macro for object in roots array too. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/log.cc ('k') | src/objects.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/log.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698