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 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
780 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; | 780 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; |
781 void lowerInsertElement(const InstInsertElement *Instr) override; | 781 void lowerInsertElement(const InstInsertElement *Instr) override; |
782 void lowerLoad(const InstLoad *Instr) override; | 782 void lowerLoad(const InstLoad *Instr) override; |
783 void lowerPhi(const InstPhi *Instr) override; | 783 void lowerPhi(const InstPhi *Instr) override; |
784 void lowerRet(const InstRet *Instr) override; | 784 void lowerRet(const InstRet *Instr) override; |
785 void lowerSelect(const InstSelect *Instr) override; | 785 void lowerSelect(const InstSelect *Instr) override; |
786 void lowerShuffleVector(const InstShuffleVector *Instr) override; | 786 void lowerShuffleVector(const InstShuffleVector *Instr) override; |
787 void lowerStore(const InstStore *Instr) override; | 787 void lowerStore(const InstStore *Instr) override; |
788 void lowerSwitch(const InstSwitch *Instr) override; | 788 void lowerSwitch(const InstSwitch *Instr) override; |
789 void lowerUnreachable(const InstUnreachable *Instr) override; | 789 void lowerUnreachable(const InstUnreachable *Instr) override; |
| 790 void lowerOther(const Inst *Instr) override; |
790 void prelowerPhis() override; | 791 void prelowerPhis() override; |
791 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override; | 792 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override; |
792 void genTargetHelperCallFor(Inst *Instr) override; | 793 void genTargetHelperCallFor(Inst *Instr) override; |
793 void doAddressOptLoad() override; | 794 void doAddressOptLoad() override; |
794 void doAddressOptStore() override; | 795 void doAddressOptStore() override; |
795 void randomlyInsertNop(float Probability, | 796 void randomlyInsertNop(float Probability, |
796 RandomNumberGenerator &RNG) override; | 797 RandomNumberGenerator &RNG) override; |
797 void | 798 void |
798 makeRandomRegisterPermutation(llvm::SmallVectorImpl<RegNumT> &Permutation, | 799 makeRandomRegisterPermutation(llvm::SmallVectorImpl<RegNumT> &Permutation, |
799 const SmallBitVector &ExcludeRegisters, | 800 const SmallBitVector &ExcludeRegisters, |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1062 uint32_t Flags1 = AFL_FLAGS1_ODDSPREG; | 1063 uint32_t Flags1 = AFL_FLAGS1_ODDSPREG; |
1063 uint32_t Flags2 = AFL_FLAGS2_NONE; | 1064 uint32_t Flags2 = AFL_FLAGS2_NONE; |
1064 | 1065 |
1065 MipsABIFlagsSection() = default; | 1066 MipsABIFlagsSection() = default; |
1066 }; | 1067 }; |
1067 | 1068 |
1068 } // end of namespace MIPS32 | 1069 } // end of namespace MIPS32 |
1069 } // end of namespace Ice | 1070 } // end of namespace Ice |
1070 | 1071 |
1071 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H | 1072 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H |
OLD | NEW |