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

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

Issue 1860043002: [stubs] Introduce MultiplyStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 V(WordNotEqual) \ 58 V(WordNotEqual) \
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(Float64InsertLowWord32) \ 69 V(Float64InsertLowWord32) \
69 V(Float64InsertHighWord32) \ 70 V(Float64InsertHighWord32) \
70 V(IntPtrAdd) \ 71 V(IntPtrAdd) \
71 V(IntPtrAddWithOverflow) \ 72 V(IntPtrAddWithOverflow) \
72 V(IntPtrSub) \ 73 V(IntPtrSub) \
73 V(IntPtrSubWithOverflow) \ 74 V(IntPtrSubWithOverflow) \
74 V(Int32Add) \ 75 V(Int32Add) \
75 V(Int32AddWithOverflow) \ 76 V(Int32AddWithOverflow) \
76 V(Int32Sub) \ 77 V(Int32Sub) \
77 V(Int32Mul) \ 78 V(Int32Mul) \
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 // Map of variables to the list of value nodes that have been added from each 467 // Map of variables to the list of value nodes that have been added from each
467 // merge path in their order of merging. 468 // merge path in their order of merging.
468 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 469 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
469 }; 470 };
470 471
471 } // namespace compiler 472 } // namespace compiler
472 } // namespace internal 473 } // namespace internal
473 } // namespace v8 474 } // namespace v8
474 475
475 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ 476 #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