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

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

Issue 1104453006: [turbofan] Introduce explicit JSCreateLiteral[Array|Object]. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 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/js-operator.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 #include "src/compiler/simplified-operator.h" 10 #include "src/compiler/simplified-operator.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 Reduction ReduceJSStoreContext(Node* node); 48 Reduction ReduceJSStoreContext(Node* node);
49 Reduction ReduceJSEqual(Node* node, bool invert); 49 Reduction ReduceJSEqual(Node* node, bool invert);
50 Reduction ReduceJSStrictEqual(Node* node, bool invert); 50 Reduction ReduceJSStrictEqual(Node* node, bool invert);
51 Reduction ReduceJSUnaryNot(Node* node); 51 Reduction ReduceJSUnaryNot(Node* node);
52 Reduction ReduceJSToBoolean(Node* node); 52 Reduction ReduceJSToBoolean(Node* node);
53 Reduction ReduceJSToNumberInput(Node* input); 53 Reduction ReduceJSToNumberInput(Node* input);
54 Reduction ReduceJSToNumber(Node* node); 54 Reduction ReduceJSToNumber(Node* node);
55 Reduction ReduceJSToStringInput(Node* input); 55 Reduction ReduceJSToStringInput(Node* input);
56 Reduction ReduceJSToString(Node* node); 56 Reduction ReduceJSToString(Node* node);
57 Reduction ReduceJSCreateClosure(Node* node); 57 Reduction ReduceJSCreateClosure(Node* node);
58 Reduction ReduceJSCreateLiteralArray(Node* node);
59 Reduction ReduceJSCreateLiteralObject(Node* node);
58 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp); 60 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp);
59 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); 61 Reduction ReduceInt32Binop(Node* node, const Operator* intOp);
60 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, 62 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness,
61 const Operator* shift_op); 63 const Operator* shift_op);
62 64
63 Node* ConvertPrimitiveToNumber(Node* input); 65 Node* ConvertPrimitiveToNumber(Node* input);
64 template <IrOpcode::Value> 66 template <IrOpcode::Value>
65 Node* FindConversion(Node* input); 67 Node* FindConversion(Node* input);
66 void InsertConversion(Node* conversion); 68 void InsertConversion(Node* conversion);
67 69
(...skipping 14 matching lines...) Expand all
82 Type* one_range_; 84 Type* one_range_;
83 Type* zero_thirtyone_range_; 85 Type* zero_thirtyone_range_;
84 Type* shifted_int32_ranges_[4]; 86 Type* shifted_int32_ranges_[4];
85 }; 87 };
86 88
87 } // namespace compiler 89 } // namespace compiler
88 } // namespace internal 90 } // namespace internal
89 } // namespace v8 91 } // namespace v8
90 92
91 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 93 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_
OLDNEW
« no previous file with comments | « src/compiler/js-operator.cc ('k') | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698