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

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

Issue 2137203002: [intrinsics] Remove obsolete intrinsics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Really nuke TO_NAME. Created 4 years, 5 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.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/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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 Reduction ReduceIsSmi(Node* node); 47 Reduction ReduceIsSmi(Node* node);
48 Reduction ReduceFixedArrayGet(Node* node); 48 Reduction ReduceFixedArrayGet(Node* node);
49 Reduction ReduceFixedArraySet(Node* node); 49 Reduction ReduceFixedArraySet(Node* node);
50 Reduction ReduceRegExpConstructResult(Node* node); 50 Reduction ReduceRegExpConstructResult(Node* node);
51 Reduction ReduceRegExpExec(Node* node); 51 Reduction ReduceRegExpExec(Node* node);
52 Reduction ReduceRegExpFlags(Node* node); 52 Reduction ReduceRegExpFlags(Node* node);
53 Reduction ReduceRegExpSource(Node* node); 53 Reduction ReduceRegExpSource(Node* node);
54 Reduction ReduceSubString(Node* node); 54 Reduction ReduceSubString(Node* node);
55 Reduction ReduceToInteger(Node* node); 55 Reduction ReduceToInteger(Node* node);
56 Reduction ReduceToLength(Node* node); 56 Reduction ReduceToLength(Node* node);
57 Reduction ReduceToName(Node* node);
58 Reduction ReduceToNumber(Node* node); 57 Reduction ReduceToNumber(Node* node);
59 Reduction ReduceToObject(Node* node); 58 Reduction ReduceToObject(Node* node);
60 Reduction ReduceToPrimitive(Node* node);
61 Reduction ReduceToString(Node* node); 59 Reduction ReduceToString(Node* node);
62 Reduction ReduceCall(Node* node); 60 Reduction ReduceCall(Node* node);
63 Reduction ReduceNewObject(Node* node); 61 Reduction ReduceNewObject(Node* node);
64 Reduction ReduceGetSuperConstructor(Node* node); 62 Reduction ReduceGetSuperConstructor(Node* node);
65 63
66 Reduction Change(Node* node, const Operator* op); 64 Reduction Change(Node* node, const Operator* op);
67 Reduction Change(Node* node, const Operator* op, Node* a, Node* b); 65 Reduction Change(Node* node, const Operator* op, Node* a, Node* b);
68 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c); 66 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c);
69 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c, 67 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c,
70 Node* d); 68 Node* d);
(...skipping 11 matching lines...) Expand all
82 80
83 JSGraph* const jsgraph_; 81 JSGraph* const jsgraph_;
84 DeoptimizationMode const mode_; 82 DeoptimizationMode const mode_;
85 }; 83 };
86 84
87 } // namespace compiler 85 } // namespace compiler
88 } // namespace internal 86 } // namespace internal
89 } // namespace v8 87 } // namespace v8
90 88
91 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ 89 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/compiler/js-intrinsic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698