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

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

Issue 2126453002: [intrinsic] Drop the %_ValueOf intrinsic. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix noi18n build (narf) 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/code-stub-assembler.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 27 matching lines...) Expand all
38 38
39 private: 39 private:
40 Reduction ReduceCreateIterResultObject(Node* node); 40 Reduction ReduceCreateIterResultObject(Node* node);
41 Reduction ReduceDeoptimizeNow(Node* node); 41 Reduction ReduceDeoptimizeNow(Node* node);
42 Reduction ReduceGeneratorClose(Node* node); 42 Reduction ReduceGeneratorClose(Node* node);
43 Reduction ReduceGeneratorGetInputOrDebugPos(Node* node); 43 Reduction ReduceGeneratorGetInputOrDebugPos(Node* node);
44 Reduction ReduceGeneratorGetResumeMode(Node* node); 44 Reduction ReduceGeneratorGetResumeMode(Node* node);
45 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type); 45 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type);
46 Reduction ReduceIsJSReceiver(Node* node); 46 Reduction ReduceIsJSReceiver(Node* node);
47 Reduction ReduceIsSmi(Node* node); 47 Reduction ReduceIsSmi(Node* node);
48 Reduction ReduceValueOf(Node* node);
49 Reduction ReduceFixedArrayGet(Node* node); 48 Reduction ReduceFixedArrayGet(Node* node);
50 Reduction ReduceFixedArraySet(Node* node); 49 Reduction ReduceFixedArraySet(Node* node);
51 Reduction ReduceRegExpConstructResult(Node* node); 50 Reduction ReduceRegExpConstructResult(Node* node);
52 Reduction ReduceRegExpExec(Node* node); 51 Reduction ReduceRegExpExec(Node* node);
53 Reduction ReduceRegExpFlags(Node* node); 52 Reduction ReduceRegExpFlags(Node* node);
54 Reduction ReduceRegExpSource(Node* node); 53 Reduction ReduceRegExpSource(Node* node);
55 Reduction ReduceSubString(Node* node); 54 Reduction ReduceSubString(Node* node);
56 Reduction ReduceToInteger(Node* node); 55 Reduction ReduceToInteger(Node* node);
57 Reduction ReduceToLength(Node* node); 56 Reduction ReduceToLength(Node* node);
58 Reduction ReduceToName(Node* node); 57 Reduction ReduceToName(Node* node);
(...skipping 24 matching lines...) Expand all
83 82
84 JSGraph* const jsgraph_; 83 JSGraph* const jsgraph_;
85 DeoptimizationMode const mode_; 84 DeoptimizationMode const mode_;
86 }; 85 };
87 86
88 } // namespace compiler 87 } // namespace compiler
89 } // namespace internal 88 } // namespace internal
90 } // namespace v8 89 } // namespace v8
91 90
92 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ 91 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_
OLDNEW
« no previous file with comments | « src/code-stub-assembler.cc ('k') | src/compiler/js-intrinsic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698