| OLD | NEW |
| 1 //===- subzero/src/IceTargetLoweringARM32.h - ARM32 lowering ----*- C++ -*-===// | 1 //===- subzero/src/IceTargetLoweringARM32.h - ARM32 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 TargetLoweringARM32 class, which implements the | 10 // This file declares the TargetLoweringARM32 class, which implements the |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 | 317 |
| 318 protected: | 318 protected: |
| 319 explicit TargetDataARM32(GlobalContext *Ctx); | 319 explicit TargetDataARM32(GlobalContext *Ctx); |
| 320 | 320 |
| 321 private: | 321 private: |
| 322 void lowerGlobal(const VariableDeclaration &Var) const; | 322 void lowerGlobal(const VariableDeclaration &Var) const; |
| 323 ~TargetDataARM32() override {} | 323 ~TargetDataARM32() override {} |
| 324 template <typename T> static void emitConstantPool(GlobalContext *Ctx); | 324 template <typename T> static void emitConstantPool(GlobalContext *Ctx); |
| 325 }; | 325 }; |
| 326 | 326 |
| 327 class TargetHeaderARM32 : public TargetHeaderLowering { |
| 328 TargetHeaderARM32() = delete; |
| 329 TargetHeaderARM32(const TargetHeaderARM32 &) = delete; |
| 330 TargetHeaderARM32 &operator=(const TargetHeaderARM32 &) = delete; |
| 331 |
| 332 public: |
| 333 static TargetHeaderLowering *create(GlobalContext *Ctx) { |
| 334 return new TargetHeaderARM32(Ctx); |
| 335 } |
| 336 |
| 337 void lower() final; |
| 338 |
| 339 protected: |
| 340 explicit TargetHeaderARM32(GlobalContext *Ctx); |
| 341 |
| 342 private: |
| 343 ~TargetHeaderARM32() final {} |
| 344 }; |
| 345 |
| 327 } // end of namespace Ice | 346 } // end of namespace Ice |
| 328 | 347 |
| 329 #endif // SUBZERO_SRC_ICETARGETLOWERINGARM32_H | 348 #endif // SUBZERO_SRC_ICETARGETLOWERINGARM32_H |
| OLD | NEW |