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

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

Issue 2448463002: [regexp] Remove unused code (Closed)
Patch Set: Created 4 years, 1 month 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-stubs-hydrogen.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/base/compiler-specific.h" 8 #include "src/base/compiler-specific.h"
9 #include "src/compiler/common-operator.h" 9 #include "src/compiler/common-operator.h"
10 #include "src/compiler/graph-reducer.h" 10 #include "src/compiler/graph-reducer.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 Reduction ReduceCreateIterResultObject(Node* node); 42 Reduction ReduceCreateIterResultObject(Node* node);
43 Reduction ReduceDeoptimizeNow(Node* node); 43 Reduction ReduceDeoptimizeNow(Node* node);
44 Reduction ReduceGeneratorClose(Node* node); 44 Reduction ReduceGeneratorClose(Node* node);
45 Reduction ReduceGeneratorGetInputOrDebugPos(Node* node); 45 Reduction ReduceGeneratorGetInputOrDebugPos(Node* node);
46 Reduction ReduceGeneratorGetResumeMode(Node* node); 46 Reduction ReduceGeneratorGetResumeMode(Node* node);
47 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type); 47 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type);
48 Reduction ReduceIsJSReceiver(Node* node); 48 Reduction ReduceIsJSReceiver(Node* node);
49 Reduction ReduceIsSmi(Node* node); 49 Reduction ReduceIsSmi(Node* node);
50 Reduction ReduceFixedArrayGet(Node* node); 50 Reduction ReduceFixedArrayGet(Node* node);
51 Reduction ReduceFixedArraySet(Node* node); 51 Reduction ReduceFixedArraySet(Node* node);
52 Reduction ReduceRegExpConstructResult(Node* node);
53 Reduction ReduceRegExpExec(Node* node); 52 Reduction ReduceRegExpExec(Node* node);
54 Reduction ReduceRegExpFlags(Node* node);
55 Reduction ReduceRegExpSource(Node* node);
56 Reduction ReduceSubString(Node* node); 53 Reduction ReduceSubString(Node* node);
57 Reduction ReduceToInteger(Node* node); 54 Reduction ReduceToInteger(Node* node);
58 Reduction ReduceToLength(Node* node); 55 Reduction ReduceToLength(Node* node);
59 Reduction ReduceToNumber(Node* node); 56 Reduction ReduceToNumber(Node* node);
60 Reduction ReduceToObject(Node* node); 57 Reduction ReduceToObject(Node* node);
61 Reduction ReduceToString(Node* node); 58 Reduction ReduceToString(Node* node);
62 Reduction ReduceCall(Node* node); 59 Reduction ReduceCall(Node* node);
63 Reduction ReduceNewObject(Node* node); 60 Reduction ReduceNewObject(Node* node);
64 Reduction ReduceGetSuperConstructor(Node* node); 61 Reduction ReduceGetSuperConstructor(Node* node);
65 62
(...skipping 15 matching lines...) Expand all
81 78
82 JSGraph* const jsgraph_; 79 JSGraph* const jsgraph_;
83 DeoptimizationMode const mode_; 80 DeoptimizationMode const mode_;
84 }; 81 };
85 82
86 } // namespace compiler 83 } // namespace compiler
87 } // namespace internal 84 } // namespace internal
88 } // namespace v8 85 } // namespace v8
89 86
90 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ 87 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_
OLDNEW
« no previous file with comments | « src/code-stubs-hydrogen.cc ('k') | src/compiler/js-intrinsic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698