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-intrinsic-lowering.h

Issue 1552473002: Revert of [runtime] Introduce dedicated JSBoundFunction to represent bound functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@FunctionConstructor
Patch Set: Created 4 years, 11 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.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 10
(...skipping 29 matching lines...) Expand all
40 private: 40 private:
41 Reduction ReduceConstructDouble(Node* node); 41 Reduction ReduceConstructDouble(Node* node);
42 Reduction ReduceCreateIterResultObject(Node* node); 42 Reduction ReduceCreateIterResultObject(Node* node);
43 Reduction ReduceDateField(Node* node); 43 Reduction ReduceDateField(Node* node);
44 Reduction ReduceDeoptimizeNow(Node* node); 44 Reduction ReduceDeoptimizeNow(Node* node);
45 Reduction ReduceDoubleHi(Node* node); 45 Reduction ReduceDoubleHi(Node* node);
46 Reduction ReduceDoubleLo(Node* node); 46 Reduction ReduceDoubleLo(Node* node);
47 Reduction ReduceIncrementStatsCounter(Node* node); 47 Reduction ReduceIncrementStatsCounter(Node* node);
48 Reduction ReduceIsMinusZero(Node* node); 48 Reduction ReduceIsMinusZero(Node* node);
49 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type); 49 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type);
50 Reduction ReduceIsFunction(Node* node);
51 Reduction ReduceIsJSReceiver(Node* node); 50 Reduction ReduceIsJSReceiver(Node* node);
52 Reduction ReduceIsSmi(Node* node); 51 Reduction ReduceIsSmi(Node* node);
53 Reduction ReduceJSValueGetValue(Node* node); 52 Reduction ReduceJSValueGetValue(Node* node);
54 Reduction ReduceMathClz32(Node* node); 53 Reduction ReduceMathClz32(Node* node);
55 Reduction ReduceMathFloor(Node* node); 54 Reduction ReduceMathFloor(Node* node);
56 Reduction ReduceMathSqrt(Node* node); 55 Reduction ReduceMathSqrt(Node* node);
57 Reduction ReduceValueOf(Node* node); 56 Reduction ReduceValueOf(Node* node);
58 Reduction ReduceFixedArrayGet(Node* node); 57 Reduction ReduceFixedArrayGet(Node* node);
59 Reduction ReduceFixedArraySet(Node* node); 58 Reduction ReduceFixedArraySet(Node* node);
60 Reduction ReduceRegExpConstructResult(Node* node); 59 Reduction ReduceRegExpConstructResult(Node* node);
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 JSGraph* const jsgraph_; 95 JSGraph* const jsgraph_;
97 DeoptimizationMode const mode_; 96 DeoptimizationMode const mode_;
98 TypeCache const& type_cache_; 97 TypeCache const& type_cache_;
99 }; 98 };
100 99
101 } // namespace compiler 100 } // namespace compiler
102 } // namespace internal 101 } // namespace internal
103 } // namespace v8 102 } // namespace v8
104 103
105 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ 104 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/compiler/js-intrinsic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698