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

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

Issue 2077533002: [builtins] Introduce proper Float64Exp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Import tests from Raymond. 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 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) \
111 V(Float64Log) \ 112 V(Float64Log) \
112 V(Float64Log1p) \ 113 V(Float64Log1p) \
113 V(Float64Log2) \ 114 V(Float64Log2) \
114 V(Float64Log10) \ 115 V(Float64Log10) \
115 V(Float64Neg) \ 116 V(Float64Neg) \
116 V(Float64Sqrt) \ 117 V(Float64Sqrt) \
117 V(Float64ExtractLowWord32) \ 118 V(Float64ExtractLowWord32) \
118 V(Float64ExtractHighWord32) \ 119 V(Float64ExtractHighWord32) \
119 V(BitcastWordToTagged) \ 120 V(BitcastWordToTagged) \
120 V(TruncateFloat64ToWord32) \ 121 V(TruncateFloat64ToWord32) \
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 // Map of variables to the list of value nodes that have been added from each 414 // Map of variables to the list of value nodes that have been added from each
414 // merge path in their order of merging. 415 // merge path in their order of merging.
415 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 416 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
416 }; 417 };
417 418
418 } // namespace compiler 419 } // namespace compiler
419 } // namespace internal 420 } // namespace internal
420 } // namespace v8 421 } // namespace v8
421 422
422 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 423 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698