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

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

Issue 1288923002: Revert of [runtime] Remove useless IN builtin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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-generic-lowering.cc ('k') | 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 #include "src/compiler/simplified-operator.h" 10 #include "src/compiler/simplified-operator.h"
(...skipping 23 matching lines...) Expand all
34 private: 34 private:
35 Reduction ReduceConstructDouble(Node* node); 35 Reduction ReduceConstructDouble(Node* node);
36 Reduction ReduceDateField(Node* node); 36 Reduction ReduceDateField(Node* node);
37 Reduction ReduceDeoptimizeNow(Node* node); 37 Reduction ReduceDeoptimizeNow(Node* node);
38 Reduction ReduceDoubleHi(Node* node); 38 Reduction ReduceDoubleHi(Node* node);
39 Reduction ReduceDoubleLo(Node* node); 39 Reduction ReduceDoubleLo(Node* node);
40 Reduction ReduceHeapObjectGetMap(Node* node); 40 Reduction ReduceHeapObjectGetMap(Node* node);
41 Reduction ReduceIncrementStatsCounter(Node* node); 41 Reduction ReduceIncrementStatsCounter(Node* node);
42 Reduction ReduceIsMinusZero(Node* node); 42 Reduction ReduceIsMinusZero(Node* node);
43 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type); 43 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type);
44 Reduction ReduceIsNonNegativeSmi(Node* node);
44 Reduction ReduceIsSmi(Node* node); 45 Reduction ReduceIsSmi(Node* node);
45 Reduction ReduceJSValueGetValue(Node* node); 46 Reduction ReduceJSValueGetValue(Node* node);
46 Reduction ReduceMapGetInstanceType(Node* node); 47 Reduction ReduceMapGetInstanceType(Node* node);
47 Reduction ReduceMathClz32(Node* node); 48 Reduction ReduceMathClz32(Node* node);
48 Reduction ReduceMathFloor(Node* node); 49 Reduction ReduceMathFloor(Node* node);
49 Reduction ReduceMathSqrt(Node* node); 50 Reduction ReduceMathSqrt(Node* node);
50 Reduction ReduceSeqStringGetChar(Node* node, String::Encoding encoding); 51 Reduction ReduceSeqStringGetChar(Node* node, String::Encoding encoding);
51 Reduction ReduceSeqStringSetChar(Node* node, String::Encoding encoding); 52 Reduction ReduceSeqStringSetChar(Node* node, String::Encoding encoding);
52 Reduction ReduceStringGetLength(Node* node); 53 Reduction ReduceStringGetLength(Node* node);
53 Reduction ReduceUnLikely(Node* node, BranchHint hint); 54 Reduction ReduceUnLikely(Node* node, BranchHint hint);
(...skipping 24 matching lines...) Expand all
78 JSGraph* const jsgraph_; 79 JSGraph* const jsgraph_;
79 DeoptimizationMode const mode_; 80 DeoptimizationMode const mode_;
80 SimplifiedOperatorBuilder simplified_; 81 SimplifiedOperatorBuilder simplified_;
81 }; 82 };
82 83
83 } // namespace compiler 84 } // namespace compiler
84 } // namespace internal 85 } // namespace internal
85 } // namespace v8 86 } // namespace v8
86 87
87 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ 88 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_
OLDNEW
« no previous file with comments | « src/compiler/js-generic-lowering.cc ('k') | src/compiler/js-intrinsic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698