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_X87_INSTRUCTION_CODES_X87_H_ | 5 #ifndef V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ |
6 #define V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ | 6 #define V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ |
7 | 7 |
8 #include "src/compiler/instruction.h" | 8 #include "src/compiler/instruction.h" |
9 #include "src/compiler/instruction-codes.h" | 9 #include "src/compiler/instruction-codes.h" |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 V(X87Movsxbl) \ | 67 V(X87Movsxbl) \ |
68 V(X87Movzxbl) \ | 68 V(X87Movzxbl) \ |
69 V(X87Movb) \ | 69 V(X87Movb) \ |
70 V(X87Movsxwl) \ | 70 V(X87Movsxwl) \ |
71 V(X87Movzxwl) \ | 71 V(X87Movzxwl) \ |
72 V(X87Movw) \ | 72 V(X87Movw) \ |
73 V(X87Movl) \ | 73 V(X87Movl) \ |
74 V(X87Movss) \ | 74 V(X87Movss) \ |
75 V(X87Movsd) \ | 75 V(X87Movsd) \ |
76 V(X87Lea) \ | 76 V(X87Lea) \ |
| 77 V(X87BitcastFI) \ |
| 78 V(X87BitcastIF) \ |
77 V(X87Push) \ | 79 V(X87Push) \ |
78 V(X87PushFloat64) \ | 80 V(X87PushFloat64) \ |
79 V(X87PushFloat32) \ | 81 V(X87PushFloat32) \ |
80 V(X87Poke) \ | 82 V(X87Poke) \ |
81 V(X87StoreWriteBarrier) \ | 83 V(X87StoreWriteBarrier) \ |
82 V(X87StackCheck) | 84 V(X87StackCheck) |
83 | 85 |
84 | 86 |
85 // Addressing modes represent the "shape" of inputs to an instruction. | 87 // Addressing modes represent the "shape" of inputs to an instruction. |
86 // Many instructions support multiple addressing modes. Addressing modes | 88 // Many instructions support multiple addressing modes. Addressing modes |
(...skipping 26 matching lines...) Expand all Loading... |
113 V(M2I) /* [ %r2*2 + K] */ \ | 115 V(M2I) /* [ %r2*2 + K] */ \ |
114 V(M4I) /* [ %r2*4 + K] */ \ | 116 V(M4I) /* [ %r2*4 + K] */ \ |
115 V(M8I) /* [ %r2*8 + K] */ \ | 117 V(M8I) /* [ %r2*8 + K] */ \ |
116 V(MI) /* [ K] */ | 118 V(MI) /* [ K] */ |
117 | 119 |
118 } // namespace compiler | 120 } // namespace compiler |
119 } // namespace internal | 121 } // namespace internal |
120 } // namespace v8 | 122 } // namespace v8 |
121 | 123 |
122 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ | 124 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ |
OLD | NEW |