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

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

Issue 2053893003: [builtins] Introduce proper base::ieee754::log. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: BUILD.gn Created 4 years, 6 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 25 matching lines...) Expand all
36 V(IA32AddPair) \ 36 V(IA32AddPair) \
37 V(IA32SubPair) \ 37 V(IA32SubPair) \
38 V(IA32MulPair) \ 38 V(IA32MulPair) \
39 V(IA32ShlPair) \ 39 V(IA32ShlPair) \
40 V(IA32ShrPair) \ 40 V(IA32ShrPair) \
41 V(IA32SarPair) \ 41 V(IA32SarPair) \
42 V(IA32Ror) \ 42 V(IA32Ror) \
43 V(IA32Lzcnt) \ 43 V(IA32Lzcnt) \
44 V(IA32Tzcnt) \ 44 V(IA32Tzcnt) \
45 V(IA32Popcnt) \ 45 V(IA32Popcnt) \
46 V(X87Float64Log) \
47 V(SSEFloat32Cmp) \ 46 V(SSEFloat32Cmp) \
48 V(SSEFloat32Add) \ 47 V(SSEFloat32Add) \
49 V(SSEFloat32Sub) \ 48 V(SSEFloat32Sub) \
50 V(SSEFloat32Mul) \ 49 V(SSEFloat32Mul) \
51 V(SSEFloat32Div) \ 50 V(SSEFloat32Div) \
52 V(SSEFloat32Max) \ 51 V(SSEFloat32Max) \
53 V(SSEFloat32Min) \ 52 V(SSEFloat32Min) \
54 V(SSEFloat32Abs) \ 53 V(SSEFloat32Abs) \
55 V(SSEFloat32Neg) \ 54 V(SSEFloat32Neg) \
56 V(SSEFloat32Sqrt) \ 55 V(SSEFloat32Sqrt) \
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 V(M2I) /* [ %r2*2 + K] */ \ 149 V(M2I) /* [ %r2*2 + K] */ \
151 V(M4I) /* [ %r2*4 + K] */ \ 150 V(M4I) /* [ %r2*4 + K] */ \
152 V(M8I) /* [ %r2*8 + K] */ \ 151 V(M8I) /* [ %r2*8 + K] */ \
153 V(MI) /* [ K] */ 152 V(MI) /* [ K] */
154 153
155 } // namespace compiler 154 } // namespace compiler
156 } // namespace internal 155 } // namespace internal
157 } // namespace v8 156 } // namespace v8
158 157
159 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 158 #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-scheduler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698