Searched refs:StSize (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp10491 static unsigned getStOpcode(unsigned StSize, bool IsThumb1, bool IsThumb2) { argument
10492 if (StSize >= 8)
10493 return StSize == 16 ? ARM::VST1q32wb_fixed
10494 : StSize == 8 ? ARM::VST1d32wb_fixed : 0;
10496 return StSize == 4 ? ARM::tSTRi
10497 : StSize == 2 ? ARM::tSTRHi
10498 : StSize == 1 ? ARM::tSTRBi : 0;
10500 return StSize == 4 ? ARM::t2STR_POST
10501 : StSize == 2 ? ARM::t2STRH_POST
10502 : StSize
10551 emitPostSt(MachineBasicBlock *BB, MachineBasicBlock::iterator Pos, const TargetInstrInfo *TII, const DebugLoc &dl, unsigned StSize, unsigned Data, unsigned AddrIn, unsigned AddrOut, bool IsThumb1, bool IsThumb2) argument
[all...]

Completed in 139 milliseconds