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

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

Issue 1412113004: [turbofan] Lower unmapped arguments objects in inline frame. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments. Created 5 years, 2 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-typed-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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_TYPED_LOWERING_H_ 5 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_
6 #define V8_COMPILER_JS_TYPED_LOWERING_H_ 6 #define V8_COMPILER_JS_TYPED_LOWERING_H_
7 7
8 #include "src/compiler/graph-reducer.h" 8 #include "src/compiler/graph-reducer.h"
9 #include "src/compiler/opcodes.h" 9 #include "src/compiler/opcodes.h"
10 10
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 Reduction ReduceJSForInDone(Node* node); 67 Reduction ReduceJSForInDone(Node* node);
68 Reduction ReduceJSForInNext(Node* node); 68 Reduction ReduceJSForInNext(Node* node);
69 Reduction ReduceJSForInPrepare(Node* node); 69 Reduction ReduceJSForInPrepare(Node* node);
70 Reduction ReduceJSForInStep(Node* node); 70 Reduction ReduceJSForInStep(Node* node);
71 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp); 71 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp);
72 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); 72 Reduction ReduceInt32Binop(Node* node, const Operator* intOp);
73 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, 73 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness,
74 const Operator* shift_op); 74 const Operator* shift_op);
75 75
76 Node* Word32Shl(Node* const lhs, int32_t const rhs); 76 Node* Word32Shl(Node* const lhs, int32_t const rhs);
77 Node* AllocateArguments(Node* effect, Node* control, Node* frame_state);
77 78
78 Factory* factory() const; 79 Factory* factory() const;
79 Graph* graph() const; 80 Graph* graph() const;
80 JSGraph* jsgraph() const { return jsgraph_; } 81 JSGraph* jsgraph() const { return jsgraph_; }
81 Isolate* isolate() const; 82 Isolate* isolate() const;
82 JSOperatorBuilder* javascript() const; 83 JSOperatorBuilder* javascript() const;
83 CommonOperatorBuilder* common() const; 84 CommonOperatorBuilder* common() const;
84 SimplifiedOperatorBuilder* simplified() const; 85 SimplifiedOperatorBuilder* simplified() const;
85 MachineOperatorBuilder* machine() const; 86 MachineOperatorBuilder* machine() const;
86 87
87 // Limits up to which context allocations are inlined. 88 // Limits up to which context allocations are inlined.
88 static const int kFunctionContextAllocationLimit = 16; 89 static const int kFunctionContextAllocationLimit = 16;
89 static const int kBlockContextAllocationLimit = 16; 90 static const int kBlockContextAllocationLimit = 16;
90 91
91 JSGraph* jsgraph_; 92 JSGraph* jsgraph_;
92 Type* shifted_int32_ranges_[4]; 93 Type* shifted_int32_ranges_[4];
93 }; 94 };
94 95
95 } // namespace compiler 96 } // namespace compiler
96 } // namespace internal 97 } // namespace internal
97 } // namespace v8 98 } // namespace v8
98 99
99 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 100 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_
OLDNEW
« no previous file with comments | « src/compiler/access-builder.cc ('k') | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698