Home | History | Annotate | Download | only in Mips

Lines Matching refs:Opc

65   unsigned Opc = 0;
69 Opc = Mips::MoveR3216;
72 Opc = Mips::Move32R16;
75 Opc = Mips::Mfhi16, SrcReg = 0;
79 Opc = Mips::Mflo16, SrcReg = 0;
82 assert(Opc && "Cannot copy registers");
84 MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc));
102 unsigned Opc = 0;
104 Opc = Mips::SwRxSpImmX16;
105 assert(Opc && "Register class not handled!");
106 BuildMI(MBB, I, DL, get(Opc)).addReg(SrcReg, getKillRegState(isKill)).
120 unsigned Opc = 0;
123 Opc = Mips::LwRxSpImmX16;
124 assert(Opc && "Register class not handled!");
125 BuildMI(MBB, I, DL, get(Opc), DestReg).addFrameIndex(FI).addImm(Offset)
145 unsigned Mips16InstrInfo::getOppositeBranchOpc(unsigned Opc) const {
146 switch (Opc) {
205 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? Mips::Save16:Mips::SaveX16;
206 MIB = BuildMI(MBB, I, DL, get(Opc));
235 unsigned Opc = ((FrameSize <= 128) && !SaveS2)?
249 MIB = BuildMI(MBB, I, DL, get(Opc));
419 unsigned Mips16InstrInfo::getAnalyzableBrOpc(unsigned Opc) const {
420 return (Opc == Mips::BeqzRxImmX16 || Opc == Mips::BimmX16 ||
421 Opc == Mips::Bimm16 ||
422 Opc == Mips::Bteqz16 || Opc == Mips::Btnez16 ||
423 Opc == Mips::BeqzRxImm16 || Opc == Mips::BnezRxImm16 ||
424 Opc == Mips::BnezRxImmX16 || Opc == Mips::BteqzX16 ||
425 Opc == Mips::BteqzT8CmpX16 || Opc == Mips::BteqzT8CmpiX16 ||
426 Opc == Mips::BteqzT8SltX16 || Opc == Mips::BteqzT8SltuX16 ||
427 Opc == Mips::BteqzT8SltiX16 || Opc == Mips::BteqzT8SltiuX16 ||
428 Opc == Mips::BtnezX16 || Opc == Mips::BtnezT8CmpX16 ||
429 Opc == Mips::BtnezT8CmpiX16 || Opc == Mips::BtnezT8SltX16 ||
430 Opc == Mips::BtnezT8SltuX16 || Opc == Mips::BtnezT8SltiX16 ||
431 Opc == Mips::BtnezT8SltiuX16 ) ? Opc : 0;
436 unsigned Opc) const {
437 BuildMI(MBB, I, I->getDebugLoc(), get(Opc));