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

Side by Side Diff: src/compiler/machine-operator-reducer.h

Issue 1088993003: Replace OVERRIDE->override and FINAL->final since we now require C++11. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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/compiler/machine-operator.cc ('k') | src/compiler/mips/code-generator-mips.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_MACHINE_OPERATOR_REDUCER_H_ 5 #ifndef V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_
6 #define V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_ 6 #define V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_
7 7
8 #include "src/compiler/graph-reducer.h" 8 #include "src/compiler/graph-reducer.h"
9 #include "src/compiler/machine-operator.h" 9 #include "src/compiler/machine-operator.h"
10 10
11 namespace v8 { 11 namespace v8 {
12 namespace internal { 12 namespace internal {
13 namespace compiler { 13 namespace compiler {
14 14
15 // Forward declarations. 15 // Forward declarations.
16 class CommonOperatorBuilder; 16 class CommonOperatorBuilder;
17 class JSGraph; 17 class JSGraph;
18 18
19 19
20 // Performs constant folding and strength reduction on nodes that have 20 // Performs constant folding and strength reduction on nodes that have
21 // machine operators. 21 // machine operators.
22 class MachineOperatorReducer FINAL : public Reducer { 22 class MachineOperatorReducer final : public Reducer {
23 public: 23 public:
24 explicit MachineOperatorReducer(JSGraph* jsgraph); 24 explicit MachineOperatorReducer(JSGraph* jsgraph);
25 ~MachineOperatorReducer(); 25 ~MachineOperatorReducer();
26 26
27 Reduction Reduce(Node* node) OVERRIDE; 27 Reduction Reduce(Node* node) override;
28 28
29 private: 29 private:
30 Node* Float32Constant(volatile float value); 30 Node* Float32Constant(volatile float value);
31 Node* Float64Constant(volatile double value); 31 Node* Float64Constant(volatile double value);
32 Node* Int32Constant(int32_t value); 32 Node* Int32Constant(int32_t value);
33 Node* Int64Constant(int64_t value); 33 Node* Int64Constant(int64_t value);
34 Node* Uint32Constant(uint32_t value) { 34 Node* Uint32Constant(uint32_t value) {
35 return Int32Constant(bit_cast<uint32_t>(value)); 35 return Int32Constant(bit_cast<uint32_t>(value));
36 } 36 }
37 Node* Word32And(Node* lhs, Node* rhs); 37 Node* Word32And(Node* lhs, Node* rhs);
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 MachineOperatorBuilder* machine() const; 87 MachineOperatorBuilder* machine() const;
88 88
89 JSGraph* jsgraph_; 89 JSGraph* jsgraph_;
90 }; 90 };
91 91
92 } // namespace compiler 92 } // namespace compiler
93 } // namespace internal 93 } // namespace internal
94 } // namespace v8 94 } // namespace v8
95 95
96 #endif // V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_ 96 #endif // V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/mips/code-generator-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698