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/code-assembler.h

Issue 2103733003: [turbofan] Introduce Float64Pow and NumberPow operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE on ARM64 bug fix. Created 4 years, 5 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 V(Word64NotEqual) 66 V(Word64NotEqual)
67 67
68 #define CODE_ASSEMBLER_BINARY_OP_LIST(V) \ 68 #define CODE_ASSEMBLER_BINARY_OP_LIST(V) \
69 CODE_ASSEMBLER_COMPARE_BINARY_OP_LIST(V) \ 69 CODE_ASSEMBLER_COMPARE_BINARY_OP_LIST(V) \
70 V(Float64Add) \ 70 V(Float64Add) \
71 V(Float64Sub) \ 71 V(Float64Sub) \
72 V(Float64Mul) \ 72 V(Float64Mul) \
73 V(Float64Div) \ 73 V(Float64Div) \
74 V(Float64Mod) \ 74 V(Float64Mod) \
75 V(Float64Atan2) \ 75 V(Float64Atan2) \
76 V(Float64Pow) \
76 V(Float64InsertLowWord32) \ 77 V(Float64InsertLowWord32) \
77 V(Float64InsertHighWord32) \ 78 V(Float64InsertHighWord32) \
78 V(IntPtrAdd) \ 79 V(IntPtrAdd) \
79 V(IntPtrAddWithOverflow) \ 80 V(IntPtrAddWithOverflow) \
80 V(IntPtrSub) \ 81 V(IntPtrSub) \
81 V(IntPtrSubWithOverflow) \ 82 V(IntPtrSubWithOverflow) \
82 V(IntPtrMul) \ 83 V(IntPtrMul) \
83 V(Int32Add) \ 84 V(Int32Add) \
84 V(Int32AddWithOverflow) \ 85 V(Int32AddWithOverflow) \
85 V(Int32Sub) \ 86 V(Int32Sub) \
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 // Map of variables to the list of value nodes that have been added from each 430 // Map of variables to the list of value nodes that have been added from each
430 // merge path in their order of merging. 431 // merge path in their order of merging.
431 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 432 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
432 }; 433 };
433 434
434 } // namespace compiler 435 } // namespace compiler
435 } // namespace internal 436 } // namespace internal
436 } // namespace v8 437 } // namespace v8
437 438
438 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 439 #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