Home | History | Annotate | Download | only in ARM

Lines Matching full:ldr

54 STATISTIC(NumLDRD2LDR,  "Number of ldrd instructions turned back into ldr's");
844 /// register into the LDR/STR/FLD{D|S}/FST{D|S} op when possible:
995 // Unaligned ldr/str is emulated by some kernels, but unaligned ldm/stm is
1216 /// LoadStoreMultipleOpti - An optimization pass to turn multiple LDR / STR
1252 // r4 := ldr [r5]
1253 // r5 := ldr [r5, #4]
1254 // r6 := ldr [r5, #8]
1256 // The second ldr has effectively broken the chain even though it
1257 // looks like the later ldr(s) use the same base register. Try to
1258 // merge the ldr's so far, including this one. But don't try to
1259 // combine the following ldr(s).