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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp10034 static unsigned getLdOpcode(unsigned LdSize, bool IsThumb1, bool IsThumb2) { argument
10035 if (LdSize >= 8)
10036 return LdSize == 16 ? ARM::VLD1q32wb_fixed
10037 : LdSize == 8 ? ARM::VLD1d32wb_fixed : 0;
10039 return LdSize == 4 ? ARM::tLDRi
10040 : LdSize == 2 ? ARM::tLDRHi
10041 : LdSize == 1 ? ARM::tLDRBi : 0;
10043 return LdSize == 4 ? ARM::t2LDR_POST
10044 : LdSize == 2 ? ARM::t2LDRH_POST
10045 : LdSize
10072 emitPostLd(MachineBasicBlock *BB, MachineBasicBlock::iterator Pos, const TargetInstrInfo *TII, const DebugLoc &dl, unsigned LdSize, unsigned Data, unsigned AddrIn, unsigned AddrOut, bool IsThumb1, bool IsThumb2) argument
[all...]

Completed in 137 milliseconds