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

Side by Side Diff: src/compiler/change-lowering.h

Issue 1015953002: [turbofan] Cache Call operator for AllocateHeapNumberStub in change lowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: AllocateHeapNumber cannot throw. Created 5 years, 9 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/change-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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_CHANGE_LOWERING_H_ 5 #ifndef V8_COMPILER_CHANGE_LOWERING_H_
6 #define V8_COMPILER_CHANGE_LOWERING_H_ 6 #define V8_COMPILER_CHANGE_LOWERING_H_
7 7
8 #include "src/compiler/graph-reducer.h" 8 #include "src/compiler/graph-reducer.h"
9 9
10 namespace v8 { 10 namespace v8 {
11 namespace internal { 11 namespace internal {
12 namespace compiler { 12 namespace compiler {
13 13
14 // Forward declarations. 14 // Forward declarations.
15 class CommonOperatorBuilder; 15 class CommonOperatorBuilder;
16 class JSGraph; 16 class JSGraph;
17 class Linkage; 17 class Linkage;
18 class MachineOperatorBuilder; 18 class MachineOperatorBuilder;
19 class Operator;
19 20
20 class ChangeLowering FINAL : public Reducer { 21 class ChangeLowering FINAL : public Reducer {
21 public: 22 public:
22 explicit ChangeLowering(JSGraph* jsgraph) : jsgraph_(jsgraph) {} 23 explicit ChangeLowering(JSGraph* jsgraph) : jsgraph_(jsgraph) {}
23 ~ChangeLowering() FINAL; 24 ~ChangeLowering() FINAL;
24 25
25 Reduction Reduce(Node* node) FINAL; 26 Reduction Reduce(Node* node) FINAL;
26 27
27 private: 28 private:
28 Node* HeapNumberValueIndexConstant(); 29 Node* HeapNumberValueIndexConstant();
(...skipping 18 matching lines...) Expand all
47 Reduction ChangeTaggedToUI32(Node* value, Node* control, 48 Reduction ChangeTaggedToUI32(Node* value, Node* control,
48 Signedness signedness); 49 Signedness signedness);
49 Reduction ChangeUint32ToTagged(Node* value, Node* control); 50 Reduction ChangeUint32ToTagged(Node* value, Node* control);
50 51
51 Graph* graph() const; 52 Graph* graph() const;
52 Isolate* isolate() const; 53 Isolate* isolate() const;
53 JSGraph* jsgraph() const { return jsgraph_; } 54 JSGraph* jsgraph() const { return jsgraph_; }
54 CommonOperatorBuilder* common() const; 55 CommonOperatorBuilder* common() const;
55 MachineOperatorBuilder* machine() const; 56 MachineOperatorBuilder* machine() const;
56 57
57 JSGraph* jsgraph_; 58 JSGraph* const jsgraph_;
59 SetOncePointer<const Operator> allocate_heap_number_operator_;
58 }; 60 };
59 61
60 } // namespace compiler 62 } // namespace compiler
61 } // namespace internal 63 } // namespace internal
62 } // namespace v8 64 } // namespace v8
63 65
64 #endif // V8_COMPILER_CHANGE_LOWERING_H_ 66 #endif // V8_COMPILER_CHANGE_LOWERING_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/change-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698