| OLD | NEW |
| 1 //===- subzero/src/IceTargetLoweringMIPS32.h - MIPS32 lowering ---*- C++-*-===// | 1 //===- subzero/src/IceTargetLoweringMIPS32.h - MIPS32 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 /// \file | 10 /// \file |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 void lowerCast(const InstCast *Instr) override; | 292 void lowerCast(const InstCast *Instr) override; |
| 293 void lowerExtractElement(const InstExtractElement *Instr) override; | 293 void lowerExtractElement(const InstExtractElement *Instr) override; |
| 294 void lowerFcmp(const InstFcmp *Instr) override; | 294 void lowerFcmp(const InstFcmp *Instr) override; |
| 295 void lowerIcmp(const InstIcmp *Instr) override; | 295 void lowerIcmp(const InstIcmp *Instr) override; |
| 296 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; | 296 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; |
| 297 void lowerInsertElement(const InstInsertElement *Instr) override; | 297 void lowerInsertElement(const InstInsertElement *Instr) override; |
| 298 void lowerLoad(const InstLoad *Instr) override; | 298 void lowerLoad(const InstLoad *Instr) override; |
| 299 void lowerPhi(const InstPhi *Instr) override; | 299 void lowerPhi(const InstPhi *Instr) override; |
| 300 void lowerRet(const InstRet *Instr) override; | 300 void lowerRet(const InstRet *Instr) override; |
| 301 void lowerSelect(const InstSelect *Instr) override; | 301 void lowerSelect(const InstSelect *Instr) override; |
| 302 void lowerShuffleVector(const InstShuffleVector *Instr) override; |
| 302 void lowerStore(const InstStore *Instr) override; | 303 void lowerStore(const InstStore *Instr) override; |
| 303 void lowerSwitch(const InstSwitch *Instr) override; | 304 void lowerSwitch(const InstSwitch *Instr) override; |
| 304 void lowerUnreachable(const InstUnreachable *Instr) override; | 305 void lowerUnreachable(const InstUnreachable *Instr) override; |
| 305 void prelowerPhis() override; | 306 void prelowerPhis() override; |
| 306 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override { | 307 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override { |
| 307 (void)Instr; | 308 (void)Instr; |
| 308 return 0; | 309 return 0; |
| 309 } | 310 } |
| 310 void genTargetHelperCallFor(Inst *Instr) override { (void)Instr; } | 311 void genTargetHelperCallFor(Inst *Instr) override { (void)Instr; } |
| 311 void doAddressOptLoad() override; | 312 void doAddressOptLoad() override; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 explicit TargetHeaderMIPS32(GlobalContext *Ctx); | 369 explicit TargetHeaderMIPS32(GlobalContext *Ctx); |
| 369 | 370 |
| 370 private: | 371 private: |
| 371 ~TargetHeaderMIPS32() = default; | 372 ~TargetHeaderMIPS32() = default; |
| 372 }; | 373 }; |
| 373 | 374 |
| 374 } // end of namespace MIPS32 | 375 } // end of namespace MIPS32 |
| 375 } // end of namespace Ice | 376 } // end of namespace Ice |
| 376 | 377 |
| 377 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H | 378 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H |
| OLD | NEW |