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

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

Issue 817143002: Contribution of PowerPC port (continuation of 422063005) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Contribution of PowerPC port - rebase and address initial set of comments Created 5 years, 11 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 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
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
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_
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