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

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

Issue 1517593003: [turbofan] Optimize JSCallConstruct in typed lowering to direct calls. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix arm typo. Created 5 years 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/code-factory.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/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/compiler/graph-reducer.h" 9 #include "src/compiler/graph-reducer.h"
10 #include "src/compiler/opcodes.h" 10 #include "src/compiler/opcodes.h"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 Reduction ReduceJSCreate(Node* node); 70 Reduction ReduceJSCreate(Node* node);
71 Reduction ReduceJSCreateArguments(Node* node); 71 Reduction ReduceJSCreateArguments(Node* node);
72 Reduction ReduceJSCreateArray(Node* node); 72 Reduction ReduceJSCreateArray(Node* node);
73 Reduction ReduceJSCreateClosure(Node* node); 73 Reduction ReduceJSCreateClosure(Node* node);
74 Reduction ReduceJSCreateLiteralArray(Node* node); 74 Reduction ReduceJSCreateLiteralArray(Node* node);
75 Reduction ReduceJSCreateLiteralObject(Node* node); 75 Reduction ReduceJSCreateLiteralObject(Node* node);
76 Reduction ReduceJSCreateFunctionContext(Node* node); 76 Reduction ReduceJSCreateFunctionContext(Node* node);
77 Reduction ReduceJSCreateWithContext(Node* node); 77 Reduction ReduceJSCreateWithContext(Node* node);
78 Reduction ReduceJSCreateCatchContext(Node* node); 78 Reduction ReduceJSCreateCatchContext(Node* node);
79 Reduction ReduceJSCreateBlockContext(Node* node); 79 Reduction ReduceJSCreateBlockContext(Node* node);
80 Reduction ReduceJSCallConstruct(Node* node);
80 Reduction ReduceJSCallFunction(Node* node); 81 Reduction ReduceJSCallFunction(Node* node);
81 Reduction ReduceJSForInDone(Node* node); 82 Reduction ReduceJSForInDone(Node* node);
82 Reduction ReduceJSForInNext(Node* node); 83 Reduction ReduceJSForInNext(Node* node);
83 Reduction ReduceJSForInPrepare(Node* node); 84 Reduction ReduceJSForInPrepare(Node* node);
84 Reduction ReduceJSForInStep(Node* node); 85 Reduction ReduceJSForInStep(Node* node);
85 Reduction ReduceSelect(Node* node); 86 Reduction ReduceSelect(Node* node);
86 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp); 87 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp);
87 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); 88 Reduction ReduceInt32Binop(Node* node, const Operator* intOp);
88 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, 89 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness,
89 const Operator* shift_op); 90 const Operator* shift_op);
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 TypeCache const& type_cache_; 125 TypeCache const& type_cache_;
125 }; 126 };
126 127
127 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) 128 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags)
128 129
129 } // namespace compiler 130 } // namespace compiler
130 } // namespace internal 131 } // namespace internal
131 } // namespace v8 132 } // namespace v8
132 133
133 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 134 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_
OLDNEW
« no previous file with comments | « src/code-factory.cc ('k') | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698