| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 5 #ifndef V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
| 6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
| 7 | 7 |
| 8 namespace v8 { | 8 namespace v8 { |
| 9 namespace internal { | 9 namespace internal { |
| 10 namespace compiler { | 10 namespace compiler { |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 V(X64Movzxbl) \ | 121 V(X64Movzxbl) \ |
| 122 V(X64Movsxbq) \ | 122 V(X64Movsxbq) \ |
| 123 V(X64Movzxbq) \ | 123 V(X64Movzxbq) \ |
| 124 V(X64Movb) \ | 124 V(X64Movb) \ |
| 125 V(X64Movsxwl) \ | 125 V(X64Movsxwl) \ |
| 126 V(X64Movzxwl) \ | 126 V(X64Movzxwl) \ |
| 127 V(X64Movsxwq) \ | 127 V(X64Movsxwq) \ |
| 128 V(X64Movzxwq) \ | 128 V(X64Movzxwq) \ |
| 129 V(X64Movw) \ | 129 V(X64Movw) \ |
| 130 V(X64Movl) \ | 130 V(X64Movl) \ |
| 131 V(X64TrapMovl) \ | |
| 132 V(X64Movsxlq) \ | 131 V(X64Movsxlq) \ |
| 133 V(X64Movq) \ | 132 V(X64Movq) \ |
| 134 V(X64Movsd) \ | 133 V(X64Movsd) \ |
| 135 V(X64Movss) \ | 134 V(X64Movss) \ |
| 136 V(X64BitcastFI) \ | 135 V(X64BitcastFI) \ |
| 137 V(X64BitcastDL) \ | 136 V(X64BitcastDL) \ |
| 138 V(X64BitcastIF) \ | 137 V(X64BitcastIF) \ |
| 139 V(X64BitcastLD) \ | 138 V(X64BitcastLD) \ |
| 140 V(X64Lea32) \ | 139 V(X64Lea32) \ |
| 141 V(X64Lea) \ | 140 V(X64Lea) \ |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 V(M1) /* [ %r2*1 ] */ \ | 175 V(M1) /* [ %r2*1 ] */ \ |
| 177 V(M2) /* [ %r2*2 ] */ \ | 176 V(M2) /* [ %r2*2 ] */ \ |
| 178 V(M4) /* [ %r2*4 ] */ \ | 177 V(M4) /* [ %r2*4 ] */ \ |
| 179 V(M8) /* [ %r2*8 ] */ \ | 178 V(M8) /* [ %r2*8 ] */ \ |
| 180 V(M1I) /* [ %r2*1 + K] */ \ | 179 V(M1I) /* [ %r2*1 + K] */ \ |
| 181 V(M2I) /* [ %r2*2 + K] */ \ | 180 V(M2I) /* [ %r2*2 + K] */ \ |
| 182 V(M4I) /* [ %r2*4 + K] */ \ | 181 V(M4I) /* [ %r2*4 + K] */ \ |
| 183 V(M8I) /* [ %r2*8 + K] */ \ | 182 V(M8I) /* [ %r2*8 + K] */ \ |
| 184 V(Root) /* [%root + K] */ | 183 V(Root) /* [%root + K] */ |
| 185 | 184 |
| 185 enum X64MemoryProtection { kUnprotected = 0, kProtected = 1 }; |
| 186 |
| 186 } // namespace compiler | 187 } // namespace compiler |
| 187 } // namespace internal | 188 } // namespace internal |
| 188 } // namespace v8 | 189 } // namespace v8 |
| 189 | 190 |
| 190 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 191 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
| OLD | NEW |