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/codegen.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/code-stubs.h ('k') | src/flag-definitions.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_CODEGEN_H_ 5 #ifndef V8_CODEGEN_H_
6 #define V8_CODEGEN_H_ 6 #define V8_CODEGEN_H_
7 7
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/runtime.h" 9 #include "src/runtime.h"
10 10
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 #if V8_TARGET_ARCH_IA32 48 #if V8_TARGET_ARCH_IA32
49 #include "src/ia32/codegen-ia32.h" // NOLINT 49 #include "src/ia32/codegen-ia32.h" // NOLINT
50 #elif V8_TARGET_ARCH_X64 50 #elif V8_TARGET_ARCH_X64
51 #include "src/x64/codegen-x64.h" // NOLINT 51 #include "src/x64/codegen-x64.h" // NOLINT
52 #elif V8_TARGET_ARCH_ARM64 52 #elif V8_TARGET_ARCH_ARM64
53 #include "src/arm64/codegen-arm64.h" // NOLINT 53 #include "src/arm64/codegen-arm64.h" // NOLINT
54 #elif V8_TARGET_ARCH_ARM 54 #elif V8_TARGET_ARCH_ARM
55 #include "src/arm/codegen-arm.h" // NOLINT 55 #include "src/arm/codegen-arm.h" // NOLINT
56 #elif V8_TARGET_ARCH_MIPS 56 #elif V8_TARGET_ARCH_MIPS
57 #include "src/mips/codegen-mips.h" // NOLINT 57 #include "src/mips/codegen-mips.h" // NOLINT
58 #elif V8_TARGET_ARCH_MIPS64
59 #include "src/mips64/codegen-mips64.h" // NOLINT
58 #elif V8_TARGET_ARCH_X87 60 #elif V8_TARGET_ARCH_X87
59 #include "src/x87/codegen-x87.h" // NOLINT 61 #include "src/x87/codegen-x87.h" // NOLINT
60 #else 62 #else
61 #error Unsupported target architecture. 63 #error Unsupported target architecture.
62 #endif 64 #endif
63 65
64 namespace v8 { 66 namespace v8 {
65 namespace internal { 67 namespace internal {
66 68
67 69
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 #ifdef DEBUG 157 #ifdef DEBUG
156 #ifdef V8_TARGET_ARCH_ARM64 158 #ifdef V8_TARGET_ARCH_ARM64
157 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_; 159 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_;
158 #endif 160 #endif
159 #endif 161 #endif
160 }; 162 };
161 163
162 } } // namespace v8::internal 164 } } // namespace v8::internal
163 165
164 #endif // V8_CODEGEN_H_ 166 #endif // V8_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/code-stubs.h ('k') | src/flag-definitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698