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

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

Issue 1418663011: [runtime] Remove the unused weird %Likely and %Unlikely intrinsics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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-intrinsic-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 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_JS_INTRINSIC_LOWERING_H_ 5 #ifndef V8_COMPILER_JS_INTRINSIC_LOWERING_H_
6 #define V8_COMPILER_JS_INTRINSIC_LOWERING_H_ 6 #define V8_COMPILER_JS_INTRINSIC_LOWERING_H_
7 7
8 #include "src/compiler/common-operator.h" 8 #include "src/compiler/common-operator.h"
9 #include "src/compiler/graph-reducer.h" 9 #include "src/compiler/graph-reducer.h"
10 10
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type); 48 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type);
49 Reduction ReduceIsSmi(Node* node); 49 Reduction ReduceIsSmi(Node* node);
50 Reduction ReduceJSValueGetValue(Node* node); 50 Reduction ReduceJSValueGetValue(Node* node);
51 Reduction ReduceMapGetInstanceType(Node* node); 51 Reduction ReduceMapGetInstanceType(Node* node);
52 Reduction ReduceMathClz32(Node* node); 52 Reduction ReduceMathClz32(Node* node);
53 Reduction ReduceMathFloor(Node* node); 53 Reduction ReduceMathFloor(Node* node);
54 Reduction ReduceMathSqrt(Node* node); 54 Reduction ReduceMathSqrt(Node* node);
55 Reduction ReduceSeqStringGetChar(Node* node, String::Encoding encoding); 55 Reduction ReduceSeqStringGetChar(Node* node, String::Encoding encoding);
56 Reduction ReduceSeqStringSetChar(Node* node, String::Encoding encoding); 56 Reduction ReduceSeqStringSetChar(Node* node, String::Encoding encoding);
57 Reduction ReduceStringGetLength(Node* node); 57 Reduction ReduceStringGetLength(Node* node);
58 Reduction ReduceUnLikely(Node* node, BranchHint hint);
59 Reduction ReduceValueOf(Node* node); 58 Reduction ReduceValueOf(Node* node);
60 Reduction ReduceFixedArrayGet(Node* node); 59 Reduction ReduceFixedArrayGet(Node* node);
61 Reduction ReduceFixedArraySet(Node* node); 60 Reduction ReduceFixedArraySet(Node* node);
62 Reduction ReduceGetTypeFeedbackVector(Node* node); 61 Reduction ReduceGetTypeFeedbackVector(Node* node);
63 Reduction ReduceGetCallerJSFunction(Node* node); 62 Reduction ReduceGetCallerJSFunction(Node* node);
64 Reduction ReduceThrowNotDateError(Node* node); 63 Reduction ReduceThrowNotDateError(Node* node);
65 Reduction ReduceToInteger(Node* node); 64 Reduction ReduceToInteger(Node* node);
66 Reduction ReduceToLength(Node* node); 65 Reduction ReduceToLength(Node* node);
67 Reduction ReduceToName(Node* node); 66 Reduction ReduceToName(Node* node);
68 Reduction ReduceToNumber(Node* node); 67 Reduction ReduceToNumber(Node* node);
(...skipping 22 matching lines...) Expand all
91 JSGraph* const jsgraph_; 90 JSGraph* const jsgraph_;
92 DeoptimizationMode const mode_; 91 DeoptimizationMode const mode_;
93 TypeCache const& type_cache_; 92 TypeCache const& type_cache_;
94 }; 93 };
95 94
96 } // namespace compiler 95 } // namespace compiler
97 } // namespace internal 96 } // namespace internal
98 } // namespace v8 97 } // namespace v8
99 98
100 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ 99 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/js-intrinsic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698