| 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_ARM_INSTRUCTION_CODES_ARM_H_ | 5 #ifndef V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ | 
| 6 #define V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ | 6 #define V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ | 
| 7 | 7 | 
| 8 namespace v8 { | 8 namespace v8 { | 
| 9 namespace internal { | 9 namespace internal { | 
| 10 namespace compiler { | 10 namespace compiler { | 
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 131   V(ArmF32x4UConvertI32x4)         \ | 131   V(ArmF32x4UConvertI32x4)         \ | 
| 132   V(ArmF32x4Abs)                   \ | 132   V(ArmF32x4Abs)                   \ | 
| 133   V(ArmF32x4Neg)                   \ | 133   V(ArmF32x4Neg)                   \ | 
| 134   V(ArmF32x4RecipApprox)           \ | 134   V(ArmF32x4RecipApprox)           \ | 
| 135   V(ArmF32x4RecipSqrtApprox)       \ | 135   V(ArmF32x4RecipSqrtApprox)       \ | 
| 136   V(ArmF32x4Add)                   \ | 136   V(ArmF32x4Add)                   \ | 
| 137   V(ArmF32x4Sub)                   \ | 137   V(ArmF32x4Sub)                   \ | 
| 138   V(ArmF32x4Mul)                   \ | 138   V(ArmF32x4Mul)                   \ | 
| 139   V(ArmF32x4Min)                   \ | 139   V(ArmF32x4Min)                   \ | 
| 140   V(ArmF32x4Max)                   \ | 140   V(ArmF32x4Max)                   \ | 
| 141   V(ArmF32x4RecipRefine)           \ |  | 
| 142   V(ArmF32x4RecipSqrtRefine)       \ |  | 
| 143   V(ArmF32x4Eq)                    \ | 141   V(ArmF32x4Eq)                    \ | 
| 144   V(ArmF32x4Ne)                    \ | 142   V(ArmF32x4Ne)                    \ | 
| 145   V(ArmF32x4Lt)                    \ | 143   V(ArmF32x4Lt)                    \ | 
| 146   V(ArmF32x4Le)                    \ | 144   V(ArmF32x4Le)                    \ | 
| 147   V(ArmI32x4Splat)                 \ | 145   V(ArmI32x4Splat)                 \ | 
| 148   V(ArmI32x4ExtractLane)           \ | 146   V(ArmI32x4ExtractLane)           \ | 
| 149   V(ArmI32x4ReplaceLane)           \ | 147   V(ArmI32x4ReplaceLane)           \ | 
| 150   V(ArmI32x4SConvertF32x4)         \ | 148   V(ArmI32x4SConvertF32x4)         \ | 
| 151   V(ArmI32x4SConvertI16x8Low)      \ | 149   V(ArmI32x4SConvertI16x8Low)      \ | 
| 152   V(ArmI32x4SConvertI16x8High)     \ | 150   V(ArmI32x4SConvertI16x8High)     \ | 
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 255   V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \ | 253   V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \ | 
| 256   V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \ | 254   V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \ | 
| 257   V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \ | 255   V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \ | 
| 258   V(Operand2_R_ROR_R) /* %r0 ROR %r1 */ | 256   V(Operand2_R_ROR_R) /* %r0 ROR %r1 */ | 
| 259 | 257 | 
| 260 }  // namespace compiler | 258 }  // namespace compiler | 
| 261 }  // namespace internal | 259 }  // namespace internal | 
| 262 }  // namespace v8 | 260 }  // namespace v8 | 
| 263 | 261 | 
| 264 #endif  // V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ | 262 #endif  // V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ | 
| OLD | NEW | 
|---|