| OLD | NEW |
| 1 //===- subzero/src/IceInstARM32.h - ARM32 machine instructions --*- C++ -*-===// | 1 //===- subzero/src/IceInstARM32.h - ARM32 machine instructions --*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 /// | 9 /// |
| 10 /// \file | 10 /// \file |
| (...skipping 1322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 | 1333 |
| 1334 private: | 1334 private: |
| 1335 InstARM32Mov(Cfg *Func, Variable *Dest, Operand *Src, | 1335 InstARM32Mov(Cfg *Func, Variable *Dest, Operand *Src, |
| 1336 CondARM32::Cond Predicate); | 1336 CondARM32::Cond Predicate); |
| 1337 | 1337 |
| 1338 void emitMultiDestSingleSource(const Cfg *Func) const; | 1338 void emitMultiDestSingleSource(const Cfg *Func) const; |
| 1339 void emitSingleDestMultiSource(const Cfg *Func) const; | 1339 void emitSingleDestMultiSource(const Cfg *Func) const; |
| 1340 void emitSingleDestSingleSource(const Cfg *Func) const; | 1340 void emitSingleDestSingleSource(const Cfg *Func) const; |
| 1341 | 1341 |
| 1342 void emitIASSingleDestSingleSource(const Cfg *Func) const; | 1342 void emitIASSingleDestSingleSource(const Cfg *Func) const; |
| 1343 void emitIASCoreVFPMove(const Cfg *Func) const; |
| 1343 | 1344 |
| 1344 Variable *DestHi = nullptr; | 1345 Variable *DestHi = nullptr; |
| 1345 }; | 1346 }; |
| 1346 | 1347 |
| 1347 class InstARM32Vcmp final : public InstARM32Pred { | 1348 class InstARM32Vcmp final : public InstARM32Pred { |
| 1348 InstARM32Vcmp() = delete; | 1349 InstARM32Vcmp() = delete; |
| 1349 InstARM32Vcmp(const InstARM32Vcmp &) = delete; | 1350 InstARM32Vcmp(const InstARM32Vcmp &) = delete; |
| 1350 InstARM32Vcmp &operator=(const InstARM32Vcmp &) = delete; | 1351 InstARM32Vcmp &operator=(const InstARM32Vcmp &) = delete; |
| 1351 | 1352 |
| 1352 public: | 1353 public: |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1432 // violations and link errors. | 1433 // violations and link errors. |
| 1433 | 1434 |
| 1434 template <> void InstARM32Ldr::emit(const Cfg *Func) const; | 1435 template <> void InstARM32Ldr::emit(const Cfg *Func) const; |
| 1435 template <> void InstARM32Movw::emit(const Cfg *Func) const; | 1436 template <> void InstARM32Movw::emit(const Cfg *Func) const; |
| 1436 template <> void InstARM32Movt::emit(const Cfg *Func) const; | 1437 template <> void InstARM32Movt::emit(const Cfg *Func) const; |
| 1437 | 1438 |
| 1438 } // end of namespace ARM32 | 1439 } // end of namespace ARM32 |
| 1439 } // end of namespace Ice | 1440 } // end of namespace Ice |
| 1440 | 1441 |
| 1441 #endif // SUBZERO_SRC_ICEINSTARM32_H | 1442 #endif // SUBZERO_SRC_ICEINSTARM32_H |
| OLD | NEW |