| 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 11 matching lines...) Expand all  Loading... | 
| 22   V(X64Test32)                     \ | 22   V(X64Test32)                     \ | 
| 23   V(X64Or)                         \ | 23   V(X64Or)                         \ | 
| 24   V(X64Or32)                       \ | 24   V(X64Or32)                       \ | 
| 25   V(X64Xor)                        \ | 25   V(X64Xor)                        \ | 
| 26   V(X64Xor32)                      \ | 26   V(X64Xor32)                      \ | 
| 27   V(X64Sub)                        \ | 27   V(X64Sub)                        \ | 
| 28   V(X64Sub32)                      \ | 28   V(X64Sub32)                      \ | 
| 29   V(X64Imul)                       \ | 29   V(X64Imul)                       \ | 
| 30   V(X64Imul32)                     \ | 30   V(X64Imul32)                     \ | 
| 31   V(X64ImulHigh32)                 \ | 31   V(X64ImulHigh32)                 \ | 
|  | 32   V(X64UmulHigh32)                 \ | 
| 32   V(X64Idiv)                       \ | 33   V(X64Idiv)                       \ | 
| 33   V(X64Idiv32)                     \ | 34   V(X64Idiv32)                     \ | 
| 34   V(X64Udiv)                       \ | 35   V(X64Udiv)                       \ | 
| 35   V(X64Udiv32)                     \ | 36   V(X64Udiv32)                     \ | 
| 36   V(X64Not)                        \ | 37   V(X64Not)                        \ | 
| 37   V(X64Not32)                      \ | 38   V(X64Not32)                      \ | 
| 38   V(X64Neg)                        \ | 39   V(X64Neg)                        \ | 
| 39   V(X64Neg32)                      \ | 40   V(X64Neg32)                      \ | 
| 40   V(X64Shl)                        \ | 41   V(X64Shl)                        \ | 
| 41   V(X64Shl32)                      \ | 42   V(X64Shl32)                      \ | 
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 108   V(M1I)  /* [      %r2*1 + K] */      \ | 109   V(M1I)  /* [      %r2*1 + K] */      \ | 
| 109   V(M2I)  /* [      %r2*2 + K] */      \ | 110   V(M2I)  /* [      %r2*2 + K] */      \ | 
| 110   V(M4I)  /* [      %r2*4 + K] */      \ | 111   V(M4I)  /* [      %r2*4 + K] */      \ | 
| 111   V(M8I)  /* [      %r2*8 + K] */ | 112   V(M8I)  /* [      %r2*8 + K] */ | 
| 112 | 113 | 
| 113 }  // namespace compiler | 114 }  // namespace compiler | 
| 114 }  // namespace internal | 115 }  // namespace internal | 
| 115 }  // namespace v8 | 116 }  // namespace v8 | 
| 116 | 117 | 
| 117 #endif  // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 118 #endif  // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 
| OLD | NEW | 
|---|