| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_ASSEMBLER_MIPS_H_ | 5 #ifndef VM_ASSEMBLER_MIPS_H_ |
| 6 #define VM_ASSEMBLER_MIPS_H_ | 6 #define VM_ASSEMBLER_MIPS_H_ |
| 7 | 7 |
| 8 #ifndef VM_ASSEMBLER_H_ | 8 #ifndef VM_ASSEMBLER_H_ |
| 9 #error Do not include assembler_mips.h directly; use assembler.h instead. | 9 #error Do not include assembler_mips.h directly; use assembler.h instead. |
| 10 #endif | 10 #endif |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 131 |
| 132 friend class Assembler; | 132 friend class Assembler; |
| 133 DISALLOW_COPY_AND_ASSIGN(Label); | 133 DISALLOW_COPY_AND_ASSIGN(Label); |
| 134 }; | 134 }; |
| 135 | 135 |
| 136 | 136 |
| 137 class CPUFeatures : public AllStatic { | 137 class CPUFeatures : public AllStatic { |
| 138 public: | 138 public: |
| 139 static void InitOnce() { } | 139 static void InitOnce() { } |
| 140 static bool double_truncate_round_supported() { | 140 static bool double_truncate_round_supported() { |
| 141 UNIMPLEMENTED(); | |
| 142 return false; | 141 return false; |
| 143 } | 142 } |
| 144 }; | 143 }; |
| 145 | 144 |
| 146 | 145 |
| 147 class Assembler : public ValueObject { | 146 class Assembler : public ValueObject { |
| 148 public: | 147 public: |
| 149 Assembler() | 148 Assembler() |
| 150 : buffer_(), | 149 : buffer_(), |
| 151 object_pool_(GrowableObjectArray::Handle()), | 150 object_pool_(GrowableObjectArray::Handle()), |
| (...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1224 Register value, | 1223 Register value, |
| 1225 Label* no_update); | 1224 Label* no_update); |
| 1226 | 1225 |
| 1227 DISALLOW_ALLOCATION(); | 1226 DISALLOW_ALLOCATION(); |
| 1228 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1227 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1229 }; | 1228 }; |
| 1230 | 1229 |
| 1231 } // namespace dart | 1230 } // namespace dart |
| 1232 | 1231 |
| 1233 #endif // VM_ASSEMBLER_MIPS_H_ | 1232 #endif // VM_ASSEMBLER_MIPS_H_ |
| OLD | NEW |