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

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

Issue 1850643002: Adding %_NewObject intrinsic (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: formatting Created 4 years, 8 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 | « no previous file | 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 Reduction ReduceRegExpSource(Node* node); 56 Reduction ReduceRegExpSource(Node* node);
57 Reduction ReduceSubString(Node* node); 57 Reduction ReduceSubString(Node* node);
58 Reduction ReduceToInteger(Node* node); 58 Reduction ReduceToInteger(Node* node);
59 Reduction ReduceToLength(Node* node); 59 Reduction ReduceToLength(Node* node);
60 Reduction ReduceToName(Node* node); 60 Reduction ReduceToName(Node* node);
61 Reduction ReduceToNumber(Node* node); 61 Reduction ReduceToNumber(Node* node);
62 Reduction ReduceToObject(Node* node); 62 Reduction ReduceToObject(Node* node);
63 Reduction ReduceToPrimitive(Node* node); 63 Reduction ReduceToPrimitive(Node* node);
64 Reduction ReduceToString(Node* node); 64 Reduction ReduceToString(Node* node);
65 Reduction ReduceCall(Node* node); 65 Reduction ReduceCall(Node* node);
66 Reduction ReduceNewObject(Node* node);
66 Reduction ReduceGetSuperConstructor(Node* node); 67 Reduction ReduceGetSuperConstructor(Node* node);
67 Reduction ReduceGetOrdinaryHasInstance(Node* node); 68 Reduction ReduceGetOrdinaryHasInstance(Node* node);
68 69
69 Reduction Change(Node* node, const Operator* op); 70 Reduction Change(Node* node, const Operator* op);
70 Reduction Change(Node* node, const Operator* op, Node* a, Node* b); 71 Reduction Change(Node* node, const Operator* op, Node* a, Node* b);
71 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c); 72 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c);
72 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c, 73 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c,
73 Node* d); 74 Node* d);
74 Reduction ChangeToUndefined(Node* node, Node* effect = nullptr); 75 Reduction ChangeToUndefined(Node* node, Node* effect = nullptr);
75 Reduction Change(Node* node, Callable const& callable, 76 Reduction Change(Node* node, Callable const& callable,
(...skipping 12 matching lines...) Expand all
88 JSGraph* const jsgraph_; 89 JSGraph* const jsgraph_;
89 DeoptimizationMode const mode_; 90 DeoptimizationMode const mode_;
90 TypeCache const& type_cache_; 91 TypeCache const& type_cache_;
91 }; 92 };
92 93
93 } // namespace compiler 94 } // namespace compiler
94 } // namespace internal 95 } // namespace internal
95 } // namespace v8 96 } // namespace v8
96 97
97 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ 98 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/js-intrinsic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698