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

/freebsd-10-stable/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp7275 static unsigned getLdOpcode(unsigned LdSize, bool IsThumb1, bool IsThumb2) { argument
7276 if (LdSize >= 8)
7277 return LdSize == 16 ? ARM::VLD1q32wb_fixed
7278 : LdSize == 8 ? ARM::VLD1d32wb_fixed : 0;
7280 return LdSize == 4 ? ARM::tLDRi
7281 : LdSize == 2 ? ARM::tLDRHi
7282 : LdSize == 1 ? ARM::tLDRBi : 0;
7284 return LdSize == 4 ? ARM::t2LDR_POST
7285 : LdSize == 2 ? ARM::t2LDRH_POST
7286 : LdSize
7313 emitPostLd(MachineBasicBlock *BB, MachineInstr *Pos, const TargetInstrInfo *TII, DebugLoc dl, unsigned LdSize, unsigned Data, unsigned AddrIn, unsigned AddrOut, bool IsThumb1, bool IsThumb2) argument
[all...]

Completed in 112 milliseconds