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

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

Issue 2029413005: [builtins] Migrate Math.log to TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix typo. 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_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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 V(X64Sar) \ 49 V(X64Sar) \
50 V(X64Sar32) \ 50 V(X64Sar32) \
51 V(X64Ror) \ 51 V(X64Ror) \
52 V(X64Ror32) \ 52 V(X64Ror32) \
53 V(X64Lzcnt) \ 53 V(X64Lzcnt) \
54 V(X64Lzcnt32) \ 54 V(X64Lzcnt32) \
55 V(X64Tzcnt) \ 55 V(X64Tzcnt) \
56 V(X64Tzcnt32) \ 56 V(X64Tzcnt32) \
57 V(X64Popcnt) \ 57 V(X64Popcnt) \
58 V(X64Popcnt32) \ 58 V(X64Popcnt32) \
59 V(X87Float64Log) \
59 V(SSEFloat32Cmp) \ 60 V(SSEFloat32Cmp) \
60 V(SSEFloat32Add) \ 61 V(SSEFloat32Add) \
61 V(SSEFloat32Sub) \ 62 V(SSEFloat32Sub) \
62 V(SSEFloat32Mul) \ 63 V(SSEFloat32Mul) \
63 V(SSEFloat32Div) \ 64 V(SSEFloat32Div) \
64 V(SSEFloat32Abs) \ 65 V(SSEFloat32Abs) \
65 V(SSEFloat32Neg) \ 66 V(SSEFloat32Neg) \
66 V(SSEFloat32Sqrt) \ 67 V(SSEFloat32Sqrt) \
67 V(SSEFloat32Max) \ 68 V(SSEFloat32Max) \
68 V(SSEFloat32Min) \ 69 V(SSEFloat32Min) \
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 V(M1I) /* [ %r2*1 + K] */ \ 177 V(M1I) /* [ %r2*1 + K] */ \
177 V(M2I) /* [ %r2*2 + K] */ \ 178 V(M2I) /* [ %r2*2 + K] */ \
178 V(M4I) /* [ %r2*4 + K] */ \ 179 V(M4I) /* [ %r2*4 + K] */ \
179 V(M8I) /* [ %r2*8 + K] */ 180 V(M8I) /* [ %r2*8 + K] */
180 181
181 } // namespace compiler 182 } // namespace compiler
182 } // namespace internal 183 } // namespace internal
183 } // namespace v8 184 } // namespace v8
184 185
185 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 186 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698