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

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

Issue 547233003: [turbofan] Machine operators are globally shared singletons. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Next windows fix. Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « src/compiler/raw-machine-assembler.cc ('k') | src/compiler/simplified-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_SIMPLIFIED_LOWERING_H_ 5 #ifndef V8_COMPILER_SIMPLIFIED_LOWERING_H_
6 #define V8_COMPILER_SIMPLIFIED_LOWERING_H_ 6 #define V8_COMPILER_SIMPLIFIED_LOWERING_H_
7 7
8 #include "src/compiler/js-graph.h" 8 #include "src/compiler/js-graph.h"
9 #include "src/compiler/machine-operator.h" 9 #include "src/compiler/machine-operator.h"
10 #include "src/compiler/node.h" 10 #include "src/compiler/node.h"
11 #include "src/compiler/simplified-operator.h" 11 #include "src/compiler/simplified-operator.h"
12 12
13 namespace v8 { 13 namespace v8 {
14 namespace internal { 14 namespace internal {
15 namespace compiler { 15 namespace compiler {
16 16
17 class SimplifiedLowering { 17 class SimplifiedLowering {
18 public: 18 public:
19 explicit SimplifiedLowering(JSGraph* jsgraph) 19 explicit SimplifiedLowering(JSGraph* jsgraph) : jsgraph_(jsgraph) {}
20 : jsgraph_(jsgraph), machine_(jsgraph->zone()) {}
21 virtual ~SimplifiedLowering() {} 20 virtual ~SimplifiedLowering() {}
22 21
23 void LowerAllNodes(); 22 void LowerAllNodes();
24 23
25 // TODO(titzer): These are exposed for direct testing. Use a friend class. 24 // TODO(titzer): These are exposed for direct testing. Use a friend class.
26 void DoLoadField(Node* node); 25 void DoLoadField(Node* node);
27 void DoStoreField(Node* node); 26 void DoStoreField(Node* node);
28 void DoLoadElement(Node* node); 27 void DoLoadElement(Node* node);
29 void DoStoreElement(Node* node); 28 void DoStoreElement(Node* node);
30 void DoStringAdd(Node* node); 29 void DoStringAdd(Node* node);
(...skipping 19 matching lines...) Expand all
50 Graph* graph() { return jsgraph()->graph(); } 49 Graph* graph() { return jsgraph()->graph(); }
51 CommonOperatorBuilder* common() { return jsgraph()->common(); } 50 CommonOperatorBuilder* common() { return jsgraph()->common(); }
52 MachineOperatorBuilder* machine() { return &machine_; } 51 MachineOperatorBuilder* machine() { return &machine_; }
53 }; 52 };
54 53
55 } // namespace compiler 54 } // namespace compiler
56 } // namespace internal 55 } // namespace internal
57 } // namespace v8 56 } // namespace v8
58 57
59 #endif // V8_COMPILER_SIMPLIFIED_LOWERING_H_ 58 #endif // V8_COMPILER_SIMPLIFIED_LOWERING_H_
OLDNEW
« no previous file with comments | « src/compiler/raw-machine-assembler.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698