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

Side by Side Diff: src/compiler/ia32/instruction-codes-ia32.h

Issue 1356913002: [turbofan] Add support for reinterpreting integers as floating point and vice versa. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rename ReinterpretAs to BitcastTo Created 5 years, 3 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
OLDNEW
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_IA32_INSTRUCTION_CODES_IA32_H_ 5 #ifndef V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_
6 #define V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 6 #define V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 V(AVXFloat32Neg) \ 82 V(AVXFloat32Neg) \
83 V(IA32Movsxbl) \ 83 V(IA32Movsxbl) \
84 V(IA32Movzxbl) \ 84 V(IA32Movzxbl) \
85 V(IA32Movb) \ 85 V(IA32Movb) \
86 V(IA32Movsxwl) \ 86 V(IA32Movsxwl) \
87 V(IA32Movzxwl) \ 87 V(IA32Movzxwl) \
88 V(IA32Movw) \ 88 V(IA32Movw) \
89 V(IA32Movl) \ 89 V(IA32Movl) \
90 V(IA32Movss) \ 90 V(IA32Movss) \
91 V(IA32Movsd) \ 91 V(IA32Movsd) \
92 V(IA32BitcastFI) \
93 V(IA32BitcastIF) \
92 V(IA32Lea) \ 94 V(IA32Lea) \
93 V(IA32Push) \ 95 V(IA32Push) \
94 V(IA32Poke) \ 96 V(IA32Poke) \
95 V(IA32StoreWriteBarrier) \ 97 V(IA32StoreWriteBarrier) \
96 V(IA32StackCheck) 98 V(IA32StackCheck)
97 99
98 100
99 // Addressing modes represent the "shape" of inputs to an instruction. 101 // Addressing modes represent the "shape" of inputs to an instruction.
100 // Many instructions support multiple addressing modes. Addressing modes 102 // Many instructions support multiple addressing modes. Addressing modes
101 // are encoded into the InstructionCode of the instruction and tell the 103 // are encoded into the InstructionCode of the instruction and tell the
(...skipping 25 matching lines...) Expand all
127 V(M2I) /* [ %r2*2 + K] */ \ 129 V(M2I) /* [ %r2*2 + K] */ \
128 V(M4I) /* [ %r2*4 + K] */ \ 130 V(M4I) /* [ %r2*4 + K] */ \
129 V(M8I) /* [ %r2*8 + K] */ \ 131 V(M8I) /* [ %r2*8 + K] */ \
130 V(MI) /* [ K] */ 132 V(MI) /* [ K] */
131 133
132 } // namespace compiler 134 } // namespace compiler
133 } // namespace internal 135 } // namespace internal
134 } // namespace v8 136 } // namespace v8
135 137
136 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 138 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_
OLDNEW
« no previous file with comments | « src/compiler/ia32/code-generator-ia32.cc ('k') | src/compiler/ia32/instruction-selector-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698