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

Side by Side Diff: src/compiler/code-assembler.h

Issue 2070813002: Revert of [builtins] Introduce proper Float64Exp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
« no previous file with comments | « src/compiler/arm64/code-generator-arm64.cc ('k') | src/compiler/ia32/code-generator-ia32.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_CODE_ASSEMBLER_H_ 5 #ifndef V8_COMPILER_CODE_ASSEMBLER_H_
6 #define V8_COMPILER_CODE_ASSEMBLER_H_ 6 #define V8_COMPILER_CODE_ASSEMBLER_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 // Clients of this interface shouldn't depend on lots of compiler internals. 10 // Clients of this interface shouldn't depend on lots of compiler internals.
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 V(Word32Ror) \ 101 V(Word32Ror) \
102 V(Word64Or) \ 102 V(Word64Or) \
103 V(Word64And) \ 103 V(Word64And) \
104 V(Word64Xor) \ 104 V(Word64Xor) \
105 V(Word64Shr) \ 105 V(Word64Shr) \
106 V(Word64Sar) \ 106 V(Word64Sar) \
107 V(Word64Ror) 107 V(Word64Ror)
108 108
109 #define CODE_ASSEMBLER_UNARY_OP_LIST(V) \ 109 #define CODE_ASSEMBLER_UNARY_OP_LIST(V) \
110 V(Float64Atan) \ 110 V(Float64Atan) \
111 V(Float64Exp) \
112 V(Float64Log) \ 111 V(Float64Log) \
113 V(Float64Log1p) \ 112 V(Float64Log1p) \
114 V(Float64Log2) \ 113 V(Float64Log2) \
115 V(Float64Log10) \ 114 V(Float64Log10) \
116 V(Float64Neg) \ 115 V(Float64Neg) \
117 V(Float64Sqrt) \ 116 V(Float64Sqrt) \
118 V(Float64ExtractLowWord32) \ 117 V(Float64ExtractLowWord32) \
119 V(Float64ExtractHighWord32) \ 118 V(Float64ExtractHighWord32) \
120 V(BitcastWordToTagged) \ 119 V(BitcastWordToTagged) \
121 V(TruncateFloat64ToWord32) \ 120 V(TruncateFloat64ToWord32) \
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 // Map of variables to the list of value nodes that have been added from each 413 // Map of variables to the list of value nodes that have been added from each
415 // merge path in their order of merging. 414 // merge path in their order of merging.
416 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 415 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
417 }; 416 };
418 417
419 } // namespace compiler 418 } // namespace compiler
420 } // namespace internal 419 } // namespace internal
421 } // namespace v8 420 } // namespace v8
422 421
423 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 422 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/compiler/arm64/code-generator-arm64.cc ('k') | src/compiler/ia32/code-generator-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698