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/simplified-operator.h

Issue 2221043002: [turbofan] Remove unused Type parameter from ReferenceEqual. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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/compiler/js-typed-lowering.cc ('k') | src/compiler/simplified-operator.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_SIMPLIFIED_OPERATOR_H_ 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_
6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/compiler/operator.h" 10 #include "src/compiler/operator.h"
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 const Operator* SpeculativeNumberShiftRight(NumberOperationHint hint); 284 const Operator* SpeculativeNumberShiftRight(NumberOperationHint hint);
285 const Operator* SpeculativeNumberShiftRightLogical(NumberOperationHint hint); 285 const Operator* SpeculativeNumberShiftRightLogical(NumberOperationHint hint);
286 const Operator* SpeculativeNumberBitwiseAnd(NumberOperationHint hint); 286 const Operator* SpeculativeNumberBitwiseAnd(NumberOperationHint hint);
287 const Operator* SpeculativeNumberBitwiseOr(NumberOperationHint hint); 287 const Operator* SpeculativeNumberBitwiseOr(NumberOperationHint hint);
288 const Operator* SpeculativeNumberBitwiseXor(NumberOperationHint hint); 288 const Operator* SpeculativeNumberBitwiseXor(NumberOperationHint hint);
289 289
290 const Operator* SpeculativeNumberLessThan(NumberOperationHint hint); 290 const Operator* SpeculativeNumberLessThan(NumberOperationHint hint);
291 const Operator* SpeculativeNumberLessThanOrEqual(NumberOperationHint hint); 291 const Operator* SpeculativeNumberLessThanOrEqual(NumberOperationHint hint);
292 const Operator* SpeculativeNumberEqual(NumberOperationHint hint); 292 const Operator* SpeculativeNumberEqual(NumberOperationHint hint);
293 293
294 const Operator* ReferenceEqual(Type* type); 294 const Operator* ReferenceEqual();
295 295
296 const Operator* StringEqual(); 296 const Operator* StringEqual();
297 const Operator* StringLessThan(); 297 const Operator* StringLessThan();
298 const Operator* StringLessThanOrEqual(); 298 const Operator* StringLessThanOrEqual();
299 const Operator* StringCharCodeAt(); 299 const Operator* StringCharCodeAt();
300 const Operator* StringFromCharCode(); 300 const Operator* StringFromCharCode();
301 301
302 const Operator* PlainPrimitiveToNumber(); 302 const Operator* PlainPrimitiveToNumber();
303 const Operator* PlainPrimitiveToWord32(); 303 const Operator* PlainPrimitiveToWord32();
304 const Operator* PlainPrimitiveToFloat64(); 304 const Operator* PlainPrimitiveToFloat64();
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 Zone* const zone_; 387 Zone* const zone_;
388 388
389 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 389 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
390 }; 390 };
391 391
392 } // namespace compiler 392 } // namespace compiler
393 } // namespace internal 393 } // namespace internal
394 } // namespace v8 394 } // namespace v8
395 395
396 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 396 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698