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

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

Issue 1865293003: [stubs] Introduce DivideStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Updated: make sure labels are bound. Created 4 years, 8 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_STUB_ASSEMBLER_H_ 5 #ifndef V8_COMPILER_CODE_STUB_ASSEMBLER_H_
6 #define V8_COMPILER_CODE_STUB_ASSEMBLER_H_ 6 #define V8_COMPILER_CODE_STUB_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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 V(Word32Equal) \ 59 V(Word32Equal) \
60 V(Word32NotEqual) \ 60 V(Word32NotEqual) \
61 V(Word64Equal) \ 61 V(Word64Equal) \
62 V(Word64NotEqual) 62 V(Word64NotEqual)
63 63
64 #define CODE_STUB_ASSEMBLER_BINARY_OP_LIST(V) \ 64 #define CODE_STUB_ASSEMBLER_BINARY_OP_LIST(V) \
65 CODE_STUB_ASSEMBLER_COMPARE_BINARY_OP_LIST(V) \ 65 CODE_STUB_ASSEMBLER_COMPARE_BINARY_OP_LIST(V) \
66 V(Float64Add) \ 66 V(Float64Add) \
67 V(Float64Sub) \ 67 V(Float64Sub) \
68 V(Float64Mul) \ 68 V(Float64Mul) \
69 V(Float64Div) \
69 V(Float64InsertLowWord32) \ 70 V(Float64InsertLowWord32) \
70 V(Float64InsertHighWord32) \ 71 V(Float64InsertHighWord32) \
71 V(IntPtrAdd) \ 72 V(IntPtrAdd) \
72 V(IntPtrAddWithOverflow) \ 73 V(IntPtrAddWithOverflow) \
73 V(IntPtrSub) \ 74 V(IntPtrSub) \
74 V(IntPtrSubWithOverflow) \ 75 V(IntPtrSubWithOverflow) \
76 V(IntPtrMul) \
77 V(IntPtrDiv) \
75 V(Int32Add) \ 78 V(Int32Add) \
76 V(Int32AddWithOverflow) \ 79 V(Int32AddWithOverflow) \
77 V(Int32Sub) \ 80 V(Int32Sub) \
78 V(Int32Mul) \ 81 V(Int32Mul) \
79 V(WordOr) \ 82 V(WordOr) \
80 V(WordAnd) \ 83 V(WordAnd) \
81 V(WordXor) \ 84 V(WordXor) \
82 V(WordShl) \ 85 V(WordShl) \
83 V(WordShr) \ 86 V(WordShr) \
84 V(WordSar) \ 87 V(WordSar) \
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 // Map of variables to the list of value nodes that have been added from each 474 // Map of variables to the list of value nodes that have been added from each
472 // merge path in their order of merging. 475 // merge path in their order of merging.
473 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 476 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
474 }; 477 };
475 478
476 } // namespace compiler 479 } // namespace compiler
477 } // namespace internal 480 } // namespace internal
478 } // namespace v8 481 } // namespace v8
479 482
480 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ 483 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_
OLDNEW
« src/code-stubs.cc ('K') | « src/code-stubs.cc ('k') | src/compiler/js-generic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698