| OLD | NEW |
| 1 //===- subzero/src/IceTargetLoweringX8632.h - x86-32 lowering ---*- C++ -*-===// | 1 //===- subzero/src/IceTargetLoweringX8632.h - x86-32 lowering ---*- 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 // This file declares the TargetLoweringX8632 class, which | 10 // This file declares the TargetLoweringX8632 class, which |
| (...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 protected: | 502 protected: |
| 503 TargetGlobalInitX8632(GlobalContext *Ctx); | 503 TargetGlobalInitX8632(GlobalContext *Ctx); |
| 504 | 504 |
| 505 private: | 505 private: |
| 506 TargetGlobalInitX8632(const TargetGlobalInitX8632 &) LLVM_DELETED_FUNCTION; | 506 TargetGlobalInitX8632(const TargetGlobalInitX8632 &) LLVM_DELETED_FUNCTION; |
| 507 TargetGlobalInitX8632 & | 507 TargetGlobalInitX8632 & |
| 508 operator=(const TargetGlobalInitX8632 &) LLVM_DELETED_FUNCTION; | 508 operator=(const TargetGlobalInitX8632 &) LLVM_DELETED_FUNCTION; |
| 509 virtual ~TargetGlobalInitX8632() {} | 509 virtual ~TargetGlobalInitX8632() {} |
| 510 }; | 510 }; |
| 511 | 511 |
| 512 template <> void ConstantInteger::emit(GlobalContext *Ctx) const; | 512 template <> void ConstantInteger32::emit(GlobalContext *Ctx) const; |
| 513 template <> void ConstantInteger64::emit(GlobalContext *Ctx) const; |
| 513 template <> void ConstantFloat::emit(GlobalContext *Ctx) const; | 514 template <> void ConstantFloat::emit(GlobalContext *Ctx) const; |
| 514 template <> void ConstantDouble::emit(GlobalContext *Ctx) const; | 515 template <> void ConstantDouble::emit(GlobalContext *Ctx) const; |
| 515 | 516 |
| 516 } // end of namespace Ice | 517 } // end of namespace Ice |
| 517 | 518 |
| 518 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8632_H | 519 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8632_H |
| OLD | NEW |