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

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

Issue 2639533002: [generators] Always call function with closure context when resuming. (Closed)
Patch Set: Ports. Created 3 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/builtins/x87/builtins-x87.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/base/compiler-specific.h" 8 #include "src/base/compiler-specific.h"
9 #include "src/compiler/common-operator.h" 9 #include "src/compiler/common-operator.h"
10 #include "src/compiler/graph-reducer.h" 10 #include "src/compiler/graph-reducer.h"
(...skipping 25 matching lines...) Expand all
36 DeoptimizationMode mode); 36 DeoptimizationMode mode);
37 ~JSIntrinsicLowering() final {} 37 ~JSIntrinsicLowering() final {}
38 38
39 Reduction Reduce(Node* node) final; 39 Reduction Reduce(Node* node) final;
40 40
41 private: 41 private:
42 Reduction ReduceCreateIterResultObject(Node* node); 42 Reduction ReduceCreateIterResultObject(Node* node);
43 Reduction ReduceDebugIsActive(Node* node); 43 Reduction ReduceDebugIsActive(Node* node);
44 Reduction ReduceDeoptimizeNow(Node* node); 44 Reduction ReduceDeoptimizeNow(Node* node);
45 Reduction ReduceGeneratorClose(Node* node); 45 Reduction ReduceGeneratorClose(Node* node);
46 Reduction ReduceGeneratorGetContext(Node* node);
46 Reduction ReduceGeneratorGetInputOrDebugPos(Node* node); 47 Reduction ReduceGeneratorGetInputOrDebugPos(Node* node);
47 Reduction ReduceGeneratorGetResumeMode(Node* node); 48 Reduction ReduceGeneratorGetResumeMode(Node* node);
48 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type); 49 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type);
49 Reduction ReduceIsJSReceiver(Node* node); 50 Reduction ReduceIsJSReceiver(Node* node);
50 Reduction ReduceIsSmi(Node* node); 51 Reduction ReduceIsSmi(Node* node);
51 Reduction ReduceFixedArrayGet(Node* node); 52 Reduction ReduceFixedArrayGet(Node* node);
52 Reduction ReduceFixedArraySet(Node* node); 53 Reduction ReduceFixedArraySet(Node* node);
53 Reduction ReduceRegExpExec(Node* node); 54 Reduction ReduceRegExpExec(Node* node);
54 Reduction ReduceSubString(Node* node); 55 Reduction ReduceSubString(Node* node);
55 Reduction ReduceToInteger(Node* node); 56 Reduction ReduceToInteger(Node* node);
(...skipping 22 matching lines...) Expand all
78 79
79 JSGraph* const jsgraph_; 80 JSGraph* const jsgraph_;
80 DeoptimizationMode const mode_; 81 DeoptimizationMode const mode_;
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/builtins/x87/builtins-x87.cc ('k') | src/compiler/js-intrinsic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698