| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 void lowerIntrinsicCall(const InstIntrinsicCall *Inst) override; | 228 void lowerIntrinsicCall(const InstIntrinsicCall *Inst) override; |
| 229 void lowerInsertElement(const InstInsertElement *Inst) override; | 229 void lowerInsertElement(const InstInsertElement *Inst) override; |
| 230 void lowerLoad(const InstLoad *Inst) override; | 230 void lowerLoad(const InstLoad *Inst) override; |
| 231 void lowerPhi(const InstPhi *Inst) override; | 231 void lowerPhi(const InstPhi *Inst) override; |
| 232 void lowerRet(const InstRet *Inst) override; | 232 void lowerRet(const InstRet *Inst) override; |
| 233 void lowerSelect(const InstSelect *Inst) override; | 233 void lowerSelect(const InstSelect *Inst) override; |
| 234 void lowerStore(const InstStore *Inst) override; | 234 void lowerStore(const InstStore *Inst) override; |
| 235 void lowerSwitch(const InstSwitch *Inst) override; | 235 void lowerSwitch(const InstSwitch *Inst) override; |
| 236 void lowerUnreachable(const InstUnreachable *Inst) override; | 236 void lowerUnreachable(const InstUnreachable *Inst) override; |
| 237 void prelowerPhis() override; | 237 void prelowerPhis() override; |
| 238 void genTargetHelperCallFor(Inst *Instr) override { (void)Instr; } |
| 238 void doAddressOptLoad() override; | 239 void doAddressOptLoad() override; |
| 239 void doAddressOptStore() override; | 240 void doAddressOptStore() override; |
| 240 void randomlyInsertNop(float Probability, | 241 void randomlyInsertNop(float Probability, |
| 241 RandomNumberGenerator &RNG) override; | 242 RandomNumberGenerator &RNG) override; |
| 242 void | 243 void |
| 243 makeRandomRegisterPermutation(llvm::SmallVectorImpl<int32_t> &Permutation, | 244 makeRandomRegisterPermutation(llvm::SmallVectorImpl<int32_t> &Permutation, |
| 244 const llvm::SmallBitVector &ExcludeRegisters, | 245 const llvm::SmallBitVector &ExcludeRegisters, |
| 245 uint64_t Salt) const override; | 246 uint64_t Salt) const override; |
| 246 | 247 |
| 247 bool UsesFramePointer = false; | 248 bool UsesFramePointer = false; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 protected: | 295 protected: |
| 295 explicit TargetHeaderMIPS32(GlobalContext *Ctx); | 296 explicit TargetHeaderMIPS32(GlobalContext *Ctx); |
| 296 | 297 |
| 297 private: | 298 private: |
| 298 ~TargetHeaderMIPS32() = default; | 299 ~TargetHeaderMIPS32() = default; |
| 299 }; | 300 }; |
| 300 | 301 |
| 301 } // end of namespace Ice | 302 } // end of namespace Ice |
| 302 | 303 |
| 303 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H | 304 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H |
| OLD | NEW |