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

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

Issue 422063005: Contribution of PowerPC port. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: re-upload - catch up to 8/19 level Created 6 years, 3 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 | Annotate | Revision Log
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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 isolate); 203 isolate);
197 } 204 }
198 return ExternalReference::new_space_allocation_limit_address(isolate); 205 return ExternalReference::new_space_allocation_limit_address(isolate);
199 } 206 }
200 }; 207 };
201 208
202 209
203 } } // namespace v8::internal 210 } } // namespace v8::internal
204 211
205 #endif // V8_MACRO_ASSEMBLER_H_ 212 #endif // V8_MACRO_ASSEMBLER_H_
OLDNEW
« src/hydrogen-bch.cc ('K') | « src/log.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698