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

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

Issue 2101123005: [turbofan] Introduce integer multiplication with overflow. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. 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
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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 V(Float64InsertHighWord32) \ 78 V(Float64InsertHighWord32) \
79 V(IntPtrAdd) \ 79 V(IntPtrAdd) \
80 V(IntPtrAddWithOverflow) \ 80 V(IntPtrAddWithOverflow) \
81 V(IntPtrSub) \ 81 V(IntPtrSub) \
82 V(IntPtrSubWithOverflow) \ 82 V(IntPtrSubWithOverflow) \
83 V(IntPtrMul) \ 83 V(IntPtrMul) \
84 V(Int32Add) \ 84 V(Int32Add) \
85 V(Int32AddWithOverflow) \ 85 V(Int32AddWithOverflow) \
86 V(Int32Sub) \ 86 V(Int32Sub) \
87 V(Int32Mul) \ 87 V(Int32Mul) \
88 V(Int32MulWithOverflow) \
88 V(Int32Div) \ 89 V(Int32Div) \
89 V(Int32Mod) \ 90 V(Int32Mod) \
90 V(WordOr) \ 91 V(WordOr) \
91 V(WordAnd) \ 92 V(WordAnd) \
92 V(WordXor) \ 93 V(WordXor) \
93 V(WordShl) \ 94 V(WordShl) \
94 V(WordShr) \ 95 V(WordShr) \
95 V(WordSar) \ 96 V(WordSar) \
96 V(WordRor) \ 97 V(WordRor) \
97 V(Word32Or) \ 98 V(Word32Or) \
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 // Map of variables to the list of value nodes that have been added from each 448 // Map of variables to the list of value nodes that have been added from each
448 // merge path in their order of merging. 449 // merge path in their order of merging.
449 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 450 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
450 }; 451 };
451 452
452 } // namespace compiler 453 } // namespace compiler
453 } // namespace internal 454 } // namespace internal
454 } // namespace v8 455 } // namespace v8
455 456
456 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 457 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/compiler/arm64/instruction-selector-arm64.cc ('k') | src/compiler/ia32/instruction-selector-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698