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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp10053 static unsigned getStOpcode(unsigned StSize, bool IsThumb1, bool IsThumb2) { argument
10054 if (StSize >= 8)
10055 return StSize == 16 ? ARM::VST1q32wb_fixed
10056 : StSize == 8 ? ARM::VST1d32wb_fixed : 0;
10058 return StSize == 4 ? ARM::tSTRi
10059 : StSize == 2 ? ARM::tSTRHi
10060 : StSize == 1 ? ARM::tSTRBi : 0;
10062 return StSize == 4 ? ARM::t2STR_POST
10063 : StSize == 2 ? ARM::t2STRH_POST
10064 : StSize
10113 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 136 milliseconds