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

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

Issue 2138633002: [turbofan] Introduce CheckedInt32Div and CheckedInt32Mod operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Comments 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/code-stubs.cc ('k') | src/compiler/effect-control-linearizer.h » ('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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(Int32Div) \ 88 V(Int32Div) \
89 V(Int32Mod) \
89 V(WordOr) \ 90 V(WordOr) \
90 V(WordAnd) \ 91 V(WordAnd) \
91 V(WordXor) \ 92 V(WordXor) \
92 V(WordShl) \ 93 V(WordShl) \
93 V(WordShr) \ 94 V(WordShr) \
94 V(WordSar) \ 95 V(WordSar) \
95 V(WordRor) \ 96 V(WordRor) \
96 V(Word32Or) \ 97 V(Word32Or) \
97 V(Word32And) \ 98 V(Word32And) \
98 V(Word32Xor) \ 99 V(Word32Xor) \
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 // Map of variables to the list of value nodes that have been added from each 444 // Map of variables to the list of value nodes that have been added from each
444 // merge path in their order of merging. 445 // merge path in their order of merging.
445 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 446 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
446 }; 447 };
447 448
448 } // namespace compiler 449 } // namespace compiler
449 } // namespace internal 450 } // namespace internal
450 } // namespace v8 451 } // namespace v8
451 452
452 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 453 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | src/compiler/effect-control-linearizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698