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

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

Issue 371923006: Add mips64 port. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase Created 6 years, 5 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
« no previous file with comments | « src/lithium-codegen.cc ('k') | src/mips64/OWNERS » ('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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 #include "src/arm/assembler-arm-inl.h" 64 #include "src/arm/assembler-arm-inl.h"
65 #include "src/code.h" // must be after assembler_*.h 65 #include "src/code.h" // must be after assembler_*.h
66 #include "src/arm/macro-assembler-arm.h" 66 #include "src/arm/macro-assembler-arm.h"
67 #elif V8_TARGET_ARCH_MIPS 67 #elif V8_TARGET_ARCH_MIPS
68 #include "src/mips/constants-mips.h" 68 #include "src/mips/constants-mips.h"
69 #include "src/assembler.h" 69 #include "src/assembler.h"
70 #include "src/mips/assembler-mips.h" // NOLINT 70 #include "src/mips/assembler-mips.h" // NOLINT
71 #include "src/mips/assembler-mips-inl.h" 71 #include "src/mips/assembler-mips-inl.h"
72 #include "src/code.h" // must be after assembler_*.h 72 #include "src/code.h" // must be after assembler_*.h
73 #include "src/mips/macro-assembler-mips.h" 73 #include "src/mips/macro-assembler-mips.h"
74 #elif V8_TARGET_ARCH_MIPS64
75 #include "src/mips64/constants-mips64.h"
76 #include "src/assembler.h"
77 #include "src/mips64/assembler-mips64.h" // NOLINT
78 #include "src/mips64/assembler-mips64-inl.h"
79 #include "src/code.h" // must be after assembler_*.h
80 #include "src/mips64/macro-assembler-mips64.h"
74 #elif V8_TARGET_ARCH_X87 81 #elif V8_TARGET_ARCH_X87
75 #include "src/assembler.h" 82 #include "src/assembler.h"
76 #include "src/x87/assembler-x87.h" 83 #include "src/x87/assembler-x87.h"
77 #include "src/x87/assembler-x87-inl.h" 84 #include "src/x87/assembler-x87-inl.h"
78 #include "src/code.h" // must be after assembler_*.h 85 #include "src/code.h" // must be after assembler_*.h
79 #include "src/x87/macro-assembler-x87.h" 86 #include "src/x87/macro-assembler-x87.h"
80 #else 87 #else
81 #error Unsupported target architecture. 88 #error Unsupported target architecture.
82 #endif 89 #endif
83 90
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 isolate); 196 isolate);
190 } 197 }
191 return ExternalReference::new_space_allocation_limit_address(isolate); 198 return ExternalReference::new_space_allocation_limit_address(isolate);
192 } 199 }
193 }; 200 };
194 201
195 202
196 } } // namespace v8::internal 203 } } // namespace v8::internal
197 204
198 #endif // V8_MACRO_ASSEMBLER_H_ 205 #endif // V8_MACRO_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/lithium-codegen.cc ('k') | src/mips64/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698