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

Side by Side Diff: src/arm64/constants-arm64.h

Issue 1380863004: Revert of Reland: Remove register index/code indirection (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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/arm64/assembler-arm64.cc ('k') | src/arm64/deoptimizer-arm64.cc » ('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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_ARM64_CONSTANTS_ARM64_H_ 5 #ifndef V8_ARM64_CONSTANTS_ARM64_H_
6 #define V8_ARM64_CONSTANTS_ARM64_H_ 6 #define V8_ARM64_CONSTANTS_ARM64_H_
7 7
8 #include "src/base/macros.h" 8 #include "src/base/macros.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 10
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 const unsigned kDoubleWordSizeInBytes = kDoubleWordSize >> 3; 111 const unsigned kDoubleWordSizeInBytes = kDoubleWordSize >> 3;
112 const unsigned kQuadWordSize = 128; 112 const unsigned kQuadWordSize = 128;
113 const unsigned kQuadWordSizeInBytes = kQuadWordSize >> 3; 113 const unsigned kQuadWordSizeInBytes = kQuadWordSize >> 3;
114 // AArch64 floating-point specifics. These match IEEE-754. 114 // AArch64 floating-point specifics. These match IEEE-754.
115 const unsigned kDoubleMantissaBits = 52; 115 const unsigned kDoubleMantissaBits = 52;
116 const unsigned kDoubleExponentBits = 11; 116 const unsigned kDoubleExponentBits = 11;
117 const unsigned kDoubleExponentBias = 1023; 117 const unsigned kDoubleExponentBias = 1023;
118 const unsigned kFloatMantissaBits = 23; 118 const unsigned kFloatMantissaBits = 23;
119 const unsigned kFloatExponentBits = 8; 119 const unsigned kFloatExponentBits = 8;
120 120
121 #define REGISTER_CODE_LIST(R) \
122 R(0) R(1) R(2) R(3) R(4) R(5) R(6) R(7) \
123 R(8) R(9) R(10) R(11) R(12) R(13) R(14) R(15) \
124 R(16) R(17) R(18) R(19) R(20) R(21) R(22) R(23) \
125 R(24) R(25) R(26) R(27) R(28) R(29) R(30) R(31)
126
121 #define INSTRUCTION_FIELDS_LIST(V_) \ 127 #define INSTRUCTION_FIELDS_LIST(V_) \
122 /* Register fields */ \ 128 /* Register fields */ \
123 V_(Rd, 4, 0, Bits) /* Destination register. */ \ 129 V_(Rd, 4, 0, Bits) /* Destination register. */ \
124 V_(Rn, 9, 5, Bits) /* First source register. */ \ 130 V_(Rn, 9, 5, Bits) /* First source register. */ \
125 V_(Rm, 20, 16, Bits) /* Second source register. */ \ 131 V_(Rm, 20, 16, Bits) /* Second source register. */ \
126 V_(Ra, 14, 10, Bits) /* Third source register. */ \ 132 V_(Ra, 14, 10, Bits) /* Third source register. */ \
127 V_(Rt, 4, 0, Bits) /* Load dest / store source. */ \ 133 V_(Rt, 4, 0, Bits) /* Load dest / store source. */ \
128 V_(Rt2, 14, 10, Bits) /* Load second dest / */ \ 134 V_(Rt2, 14, 10, Bits) /* Load second dest / */ \
129 /* store second source. */ \ 135 /* store second source. */ \
130 V_(PrefetchMode, 4, 0, Bits) \ 136 V_(PrefetchMode, 4, 0, Bits) \
(...skipping 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after
1228 1234
1229 enum UnallocatedOp { 1235 enum UnallocatedOp {
1230 UnallocatedFixed = 0x00000000, 1236 UnallocatedFixed = 0x00000000,
1231 UnallocatedFMask = 0x00000000 1237 UnallocatedFMask = 0x00000000
1232 }; 1238 };
1233 1239
1234 } // namespace internal 1240 } // namespace internal
1235 } // namespace v8 1241 } // namespace v8
1236 1242
1237 #endif // V8_ARM64_CONSTANTS_ARM64_H_ 1243 #endif // V8_ARM64_CONSTANTS_ARM64_H_
OLDNEW
« no previous file with comments | « src/arm64/assembler-arm64.cc ('k') | src/arm64/deoptimizer-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698