Lines Matching refs:Opc
72 unsigned Opc = 0; in copyPhysReg() local
76 Opc = Mips::MoveR3216; in copyPhysReg()
79 Opc = Mips::Move32R16; in copyPhysReg()
82 Opc = Mips::Mfhi16, SrcReg = 0; in copyPhysReg()
86 Opc = Mips::Mflo16, SrcReg = 0; in copyPhysReg()
89 assert(Opc && "Cannot copy registers"); in copyPhysReg()
91 MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc)); in copyPhysReg()
108 unsigned Opc = 0; in storeRegToStackSlot() local
110 Opc = Mips::SwRxSpImmX16; in storeRegToStackSlot()
111 assert(Opc && "Register class not handled!"); in storeRegToStackSlot()
112 BuildMI(MBB, I, DL, get(Opc)).addReg(SrcReg, getKillRegState(isKill)) in storeRegToStackSlot()
124 unsigned Opc = 0; in loadRegFromStackSlot() local
127 Opc = Mips::LwRxSpImmX16; in loadRegFromStackSlot()
128 assert(Opc && "Register class not handled!"); in loadRegFromStackSlot()
129 BuildMI(MBB, I, DL, get(Opc), DestReg).addFrameIndex(FI).addImm(0) in loadRegFromStackSlot()
149 unsigned Mips16InstrInfo::GetOppositeBranchOpc(unsigned Opc) const { in GetOppositeBranchOpc()
150 switch (Opc) { in GetOppositeBranchOpc()
384 unsigned Mips16InstrInfo::GetAnalyzableBrOpc(unsigned Opc) const { in GetAnalyzableBrOpc()
385 return (Opc == Mips::BeqzRxImmX16 || Opc == Mips::BimmX16 || in GetAnalyzableBrOpc()
386 Opc == Mips::BnezRxImmX16 || Opc == Mips::BteqzX16 || in GetAnalyzableBrOpc()
387 Opc == Mips::BteqzT8CmpX16 || Opc == Mips::BteqzT8CmpiX16 || in GetAnalyzableBrOpc()
388 Opc == Mips::BteqzT8SltX16 || Opc == Mips::BteqzT8SltuX16 || in GetAnalyzableBrOpc()
389 Opc == Mips::BteqzT8SltiX16 || Opc == Mips::BteqzT8SltiuX16 || in GetAnalyzableBrOpc()
390 Opc == Mips::BtnezX16 || Opc == Mips::BtnezT8CmpX16 || in GetAnalyzableBrOpc()
391 Opc == Mips::BtnezT8CmpiX16 || Opc == Mips::BtnezT8SltX16 || in GetAnalyzableBrOpc()
392 Opc == Mips::BtnezT8SltuX16 || Opc == Mips::BtnezT8SltiX16 || in GetAnalyzableBrOpc()
393 Opc == Mips::BtnezT8SltiuX16 ) ? Opc : 0; in GetAnalyzableBrOpc()
398 unsigned Opc) const { in ExpandRetRA16()
399 BuildMI(MBB, I, I->getDebugLoc(), get(Opc)); in ExpandRetRA16()