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

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

Issue 2684193003: [turbofan] Add support for %_MaxSmi and %_TypedArrayMaxSizeInHeap. (Closed)
Patch Set: Fix comment. Created 3 years, 10 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/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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 Reduction ReduceRegExpExec(Node* node); 54 Reduction ReduceRegExpExec(Node* node);
55 Reduction ReduceSubString(Node* node); 55 Reduction ReduceSubString(Node* node);
56 Reduction ReduceToInteger(Node* node); 56 Reduction ReduceToInteger(Node* node);
57 Reduction ReduceToLength(Node* node); 57 Reduction ReduceToLength(Node* node);
58 Reduction ReduceToNumber(Node* node); 58 Reduction ReduceToNumber(Node* node);
59 Reduction ReduceToObject(Node* node); 59 Reduction ReduceToObject(Node* node);
60 Reduction ReduceToString(Node* node); 60 Reduction ReduceToString(Node* node);
61 Reduction ReduceCall(Node* node); 61 Reduction ReduceCall(Node* node);
62 Reduction ReduceGetSuperConstructor(Node* node); 62 Reduction ReduceGetSuperConstructor(Node* node);
63 63
64 // TODO(turbofan): typedarray.js support; drop once TypedArrays are
65 // converted to proper CodeStubAssembler based builtins.
66 Reduction ReduceMaxSmi(Node* node);
67 Reduction ReduceTypedArrayMaxSizeInHeap(Node* node);
68
64 // TODO(turbofan): collection.js support; drop once Maps and Sets are 69 // TODO(turbofan): collection.js support; drop once Maps and Sets are
65 // converted to proper CodeStubAssembler based builtins. 70 // converted to proper CodeStubAssembler based builtins.
66 Reduction ReduceJSCollectionGetTable(Node* node); 71 Reduction ReduceJSCollectionGetTable(Node* node);
67 Reduction ReduceStringGetRawHashField(Node* node); 72 Reduction ReduceStringGetRawHashField(Node* node);
68 Reduction ReduceTheHole(Node* node); 73 Reduction ReduceTheHole(Node* node);
69 74
70 // TODO(turbofan): JavaScript builtins support; drop once all uses of 75 // TODO(turbofan): JavaScript builtins support; drop once all uses of
71 // %_ClassOf in JavaScript builtins are eliminated. 76 // %_ClassOf in JavaScript builtins are eliminated.
72 Reduction ReduceClassOf(Node* node); 77 Reduction ReduceClassOf(Node* node);
73 78
(...skipping 15 matching lines...) Expand all
89 94
90 JSGraph* const jsgraph_; 95 JSGraph* const jsgraph_;
91 DeoptimizationMode const mode_; 96 DeoptimizationMode const mode_;
92 }; 97 };
93 98
94 } // namespace compiler 99 } // namespace compiler
95 } // namespace internal 100 } // namespace internal
96 } // namespace v8 101 } // namespace v8
97 102
98 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ 103 #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