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

Side by Side Diff: src/compiler/js-typed-lowering.h

Issue 2107783004: [turbofan] Disallow typing for change/checked operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@TurboFan_RepresentationSelection_Typer
Patch Set: ReferenceEqual foo 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 | « no previous file | src/compiler/js-typed-lowering.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_JS_TYPED_LOWERING_H_ 5 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_
6 #define V8_COMPILER_JS_TYPED_LOWERING_H_ 6 #define V8_COMPILER_JS_TYPED_LOWERING_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/compiler/graph-reducer.h" 9 #include "src/compiler/graph-reducer.h"
10 #include "src/compiler/opcodes.h" 10 #include "src/compiler/opcodes.h"
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 Reduction ReduceJSToObject(Node* node); 73 Reduction ReduceJSToObject(Node* node);
74 Reduction ReduceJSConvertReceiver(Node* node); 74 Reduction ReduceJSConvertReceiver(Node* node);
75 Reduction ReduceJSCallConstruct(Node* node); 75 Reduction ReduceJSCallConstruct(Node* node);
76 Reduction ReduceJSCallFunction(Node* node); 76 Reduction ReduceJSCallFunction(Node* node);
77 Reduction ReduceJSForInDone(Node* node); 77 Reduction ReduceJSForInDone(Node* node);
78 Reduction ReduceJSForInNext(Node* node); 78 Reduction ReduceJSForInNext(Node* node);
79 Reduction ReduceJSForInStep(Node* node); 79 Reduction ReduceJSForInStep(Node* node);
80 Reduction ReduceJSGeneratorStore(Node* node); 80 Reduction ReduceJSGeneratorStore(Node* node);
81 Reduction ReduceJSGeneratorRestoreContinuation(Node* node); 81 Reduction ReduceJSGeneratorRestoreContinuation(Node* node);
82 Reduction ReduceJSGeneratorRestoreRegister(Node* node); 82 Reduction ReduceJSGeneratorRestoreRegister(Node* node);
83 Reduction ReduceNumberRoundop(Node* node);
83 Reduction ReduceSelect(Node* node); 84 Reduction ReduceSelect(Node* node);
84 Reduction ReduceJSSubtract(Node* node); 85 Reduction ReduceJSSubtract(Node* node);
85 Reduction ReduceJSDivide(Node* node); 86 Reduction ReduceJSDivide(Node* node);
86 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); 87 Reduction ReduceInt32Binop(Node* node, const Operator* intOp);
87 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, 88 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness,
88 const Operator* shift_op); 89 const Operator* shift_op);
89 90
90 Node* Word32Shl(Node* const lhs, int32_t const rhs); 91 Node* Word32Shl(Node* const lhs, int32_t const rhs);
91 92
92 Node* EmptyFrameState(); 93 Node* EmptyFrameState();
(...skipping 19 matching lines...) Expand all
112 TypeCache const& type_cache_; 113 TypeCache const& type_cache_;
113 }; 114 };
114 115
115 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) 116 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags)
116 117
117 } // namespace compiler 118 } // namespace compiler
118 } // namespace internal 119 } // namespace internal
119 } // namespace v8 120 } // namespace v8
120 121
121 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 122 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698