| 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 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 void lowerSelect(const InstSelect *Instr) override; | 558 void lowerSelect(const InstSelect *Instr) override; |
| 559 void lowerShuffleVector(const InstShuffleVector *Instr) override; | 559 void lowerShuffleVector(const InstShuffleVector *Instr) override; |
| 560 void lowerStore(const InstStore *Instr) override; | 560 void lowerStore(const InstStore *Instr) override; |
| 561 void lowerSwitch(const InstSwitch *Instr) override; | 561 void lowerSwitch(const InstSwitch *Instr) override; |
| 562 void lowerUnreachable(const InstUnreachable *Instr) override; | 562 void lowerUnreachable(const InstUnreachable *Instr) override; |
| 563 void prelowerPhis() override; | 563 void prelowerPhis() override; |
| 564 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override { | 564 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override { |
| 565 (void)Instr; | 565 (void)Instr; |
| 566 return 0; | 566 return 0; |
| 567 } | 567 } |
| 568 void genTargetHelperCallFor(Inst *Instr) override { (void)Instr; } | 568 void genTargetHelperCallFor(Inst *Instr) override; |
| 569 void doAddressOptLoad() override; | 569 void doAddressOptLoad() override; |
| 570 void doAddressOptStore() override; | 570 void doAddressOptStore() override; |
| 571 void randomlyInsertNop(float Probability, | 571 void randomlyInsertNop(float Probability, |
| 572 RandomNumberGenerator &RNG) override; | 572 RandomNumberGenerator &RNG) override; |
| 573 void | 573 void |
| 574 makeRandomRegisterPermutation(llvm::SmallVectorImpl<RegNumT> &Permutation, | 574 makeRandomRegisterPermutation(llvm::SmallVectorImpl<RegNumT> &Permutation, |
| 575 const SmallBitVector &ExcludeRegisters, | 575 const SmallBitVector &ExcludeRegisters, |
| 576 uint64_t Salt) const override; | 576 uint64_t Salt) const override; |
| 577 | 577 |
| 578 OperandMIPS32Mem *formMemoryOperand(Operand *Ptr, Type Ty); | 578 OperandMIPS32Mem *formMemoryOperand(Operand *Ptr, Type Ty); |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 explicit TargetHeaderMIPS32(GlobalContext *Ctx); | 726 explicit TargetHeaderMIPS32(GlobalContext *Ctx); |
| 727 | 727 |
| 728 private: | 728 private: |
| 729 ~TargetHeaderMIPS32() = default; | 729 ~TargetHeaderMIPS32() = default; |
| 730 }; | 730 }; |
| 731 | 731 |
| 732 } // end of namespace MIPS32 | 732 } // end of namespace MIPS32 |
| 733 } // end of namespace Ice | 733 } // end of namespace Ice |
| 734 | 734 |
| 735 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H | 735 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H |
| OLD | NEW |