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

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

Issue 2006613002: [turbofan] Lower intrinsics %_GeneratorGetInput and %_GeneratorGetResumeMode. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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/access-builder.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 25 matching lines...) Expand all
36 36
37 Reduction Reduce(Node* node) final; 37 Reduction Reduce(Node* node) final;
38 38
39 private: 39 private:
40 Reduction ReduceConstructDouble(Node* node); 40 Reduction ReduceConstructDouble(Node* node);
41 Reduction ReduceCreateIterResultObject(Node* node); 41 Reduction ReduceCreateIterResultObject(Node* node);
42 Reduction ReduceDeoptimizeNow(Node* node); 42 Reduction ReduceDeoptimizeNow(Node* node);
43 Reduction ReduceDoubleHi(Node* node); 43 Reduction ReduceDoubleHi(Node* node);
44 Reduction ReduceDoubleLo(Node* node); 44 Reduction ReduceDoubleLo(Node* node);
45 Reduction ReduceGeneratorClose(Node* node); 45 Reduction ReduceGeneratorClose(Node* node);
46 Reduction ReduceGeneratorGetInput(Node* node);
47 Reduction ReduceGeneratorGetResumeMode(Node* node);
46 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type); 48 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type);
47 Reduction ReduceIsJSReceiver(Node* node); 49 Reduction ReduceIsJSReceiver(Node* node);
48 Reduction ReduceIsSmi(Node* node); 50 Reduction ReduceIsSmi(Node* node);
49 Reduction ReduceValueOf(Node* node); 51 Reduction ReduceValueOf(Node* node);
50 Reduction ReduceFixedArrayGet(Node* node); 52 Reduction ReduceFixedArrayGet(Node* node);
51 Reduction ReduceFixedArraySet(Node* node); 53 Reduction ReduceFixedArraySet(Node* node);
52 Reduction ReduceRegExpConstructResult(Node* node); 54 Reduction ReduceRegExpConstructResult(Node* node);
53 Reduction ReduceRegExpExec(Node* node); 55 Reduction ReduceRegExpExec(Node* node);
54 Reduction ReduceRegExpFlags(Node* node); 56 Reduction ReduceRegExpFlags(Node* node);
55 Reduction ReduceRegExpSource(Node* node); 57 Reduction ReduceRegExpSource(Node* node);
(...skipping 28 matching lines...) Expand all
84 86
85 JSGraph* const jsgraph_; 87 JSGraph* const jsgraph_;
86 DeoptimizationMode const mode_; 88 DeoptimizationMode const mode_;
87 }; 89 };
88 90
89 } // namespace compiler 91 } // namespace compiler
90 } // namespace internal 92 } // namespace internal
91 } // namespace v8 93 } // namespace v8
92 94
93 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ 95 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_
OLDNEW
« no previous file with comments | « src/compiler/access-builder.cc ('k') | src/compiler/js-intrinsic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698