OLD | NEW |
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 #include "src/compiler/machine-operator.h" | 5 #include "src/compiler/machine-operator.h" |
6 | 6 |
7 #include "src/base/lazy-instance.h" | 7 #include "src/base/lazy-instance.h" |
8 #include "src/compiler/opcodes.h" | 8 #include "src/compiler/opcodes.h" |
9 #include "src/compiler/operator.h" | 9 #include "src/compiler/operator.h" |
10 | 10 |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 V(Float64LessThan, Operator::kNoProperties, 2, 0, 1) \ | 141 V(Float64LessThan, Operator::kNoProperties, 2, 0, 1) \ |
142 V(Float64LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 142 V(Float64LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
143 V(Float64ExtractLowWord32, Operator::kNoProperties, 1, 0, 1) \ | 143 V(Float64ExtractLowWord32, Operator::kNoProperties, 1, 0, 1) \ |
144 V(Float64ExtractHighWord32, Operator::kNoProperties, 1, 0, 1) \ | 144 V(Float64ExtractHighWord32, Operator::kNoProperties, 1, 0, 1) \ |
145 V(Float64InsertLowWord32, Operator::kNoProperties, 2, 0, 1) \ | 145 V(Float64InsertLowWord32, Operator::kNoProperties, 2, 0, 1) \ |
146 V(Float64InsertHighWord32, Operator::kNoProperties, 2, 0, 1) \ | 146 V(Float64InsertHighWord32, Operator::kNoProperties, 2, 0, 1) \ |
147 V(Float32Max, Operator::kNoProperties, 2, 0, 1) \ | 147 V(Float32Max, Operator::kNoProperties, 2, 0, 1) \ |
148 V(Float32Min, Operator::kNoProperties, 2, 0, 1) \ | 148 V(Float32Min, Operator::kNoProperties, 2, 0, 1) \ |
149 V(Float64Max, Operator::kNoProperties, 2, 0, 1) \ | 149 V(Float64Max, Operator::kNoProperties, 2, 0, 1) \ |
150 V(Float64Min, Operator::kNoProperties, 2, 0, 1) \ | 150 V(Float64Min, Operator::kNoProperties, 2, 0, 1) \ |
151 V(LoadStackPointer, Operator::kNoProperties, 0, 0, 1) | 151 V(LoadStackPointer, Operator::kNoProperties, 0, 0, 1) \ |
| 152 V(LoadFramePointer, Operator::kNoProperties, 0, 0, 1) |
152 | 153 |
153 | 154 |
154 #define MACHINE_TYPE_LIST(V) \ | 155 #define MACHINE_TYPE_LIST(V) \ |
155 V(MachFloat32) \ | 156 V(MachFloat32) \ |
156 V(MachFloat64) \ | 157 V(MachFloat64) \ |
157 V(MachInt8) \ | 158 V(MachInt8) \ |
158 V(MachUint8) \ | 159 V(MachUint8) \ |
159 V(MachInt16) \ | 160 V(MachInt16) \ |
160 V(MachUint16) \ | 161 V(MachUint16) \ |
161 V(MachInt32) \ | 162 V(MachInt32) \ |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 } | 329 } |
329 // Uncached. | 330 // Uncached. |
330 return new (zone_) Operator1<CheckedStoreRepresentation>( | 331 return new (zone_) Operator1<CheckedStoreRepresentation>( |
331 IrOpcode::kCheckedStore, Operator::kNoRead | Operator::kNoThrow, | 332 IrOpcode::kCheckedStore, Operator::kNoRead | Operator::kNoThrow, |
332 "CheckedStore", 4, 1, 1, 0, 1, 0, rep); | 333 "CheckedStore", 4, 1, 1, 0, 1, 0, rep); |
333 } | 334 } |
334 | 335 |
335 } // namespace compiler | 336 } // namespace compiler |
336 } // namespace internal | 337 } // namespace internal |
337 } // namespace v8 | 338 } // namespace v8 |
OLD | NEW |