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/x87/instruction-codes-x87.h

Issue 2270193003: X87: [turbofan] Add Float32(Max|Min) machine operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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
« no previous file with comments | « src/compiler/x87/code-generator-x87.cc ('k') | src/compiler/x87/instruction-selector-x87.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 V(X87Float32Abs) \ 52 V(X87Float32Abs) \
53 V(X87Float32Neg) \ 53 V(X87Float32Neg) \
54 V(X87Float32Sqrt) \ 54 V(X87Float32Sqrt) \
55 V(X87Float32Round) \ 55 V(X87Float32Round) \
56 V(X87LoadFloat64Constant) \ 56 V(X87LoadFloat64Constant) \
57 V(X87Float64Add) \ 57 V(X87Float64Add) \
58 V(X87Float64Sub) \ 58 V(X87Float64Sub) \
59 V(X87Float64Mul) \ 59 V(X87Float64Mul) \
60 V(X87Float64Div) \ 60 V(X87Float64Div) \
61 V(X87Float64Mod) \ 61 V(X87Float64Mod) \
62 V(X87Float32Max) \
62 V(X87Float64Max) \ 63 V(X87Float64Max) \
64 V(X87Float32Min) \
63 V(X87Float64Min) \ 65 V(X87Float64Min) \
64 V(X87Float64Abs) \ 66 V(X87Float64Abs) \
65 V(X87Float64Neg) \ 67 V(X87Float64Neg) \
66 V(X87Int32ToFloat32) \ 68 V(X87Int32ToFloat32) \
67 V(X87Uint32ToFloat32) \ 69 V(X87Uint32ToFloat32) \
68 V(X87Int32ToFloat64) \ 70 V(X87Int32ToFloat64) \
69 V(X87Float32ToFloat64) \ 71 V(X87Float32ToFloat64) \
70 V(X87Uint32ToFloat64) \ 72 V(X87Uint32ToFloat64) \
71 V(X87Float64ToInt32) \ 73 V(X87Float64ToInt32) \
72 V(X87Float32ToInt32) \ 74 V(X87Float32ToInt32) \
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 V(M2I) /* [ %r2*2 + K] */ \ 135 V(M2I) /* [ %r2*2 + K] */ \
134 V(M4I) /* [ %r2*4 + K] */ \ 136 V(M4I) /* [ %r2*4 + K] */ \
135 V(M8I) /* [ %r2*8 + K] */ \ 137 V(M8I) /* [ %r2*8 + K] */ \
136 V(MI) /* [ K] */ 138 V(MI) /* [ K] */
137 139
138 } // namespace compiler 140 } // namespace compiler
139 } // namespace internal 141 } // namespace internal
140 } // namespace v8 142 } // namespace v8
141 143
142 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ 144 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_
OLDNEW
« no previous file with comments | « src/compiler/x87/code-generator-x87.cc ('k') | src/compiler/x87/instruction-selector-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698