Home | History | Annotate | Download | only in ARM

Lines Matching full:opc

262 static bool isT2i32Load(unsigned Opc) {
263 return Opc == ARM::t2LDRi12 || Opc == ARM::t2LDRi8;
266 static bool isi32Load(unsigned Opc) {
267 return Opc == ARM::LDRi12 || isT2i32Load(Opc);
270 static bool isT2i32Store(unsigned Opc) {
271 return Opc == ARM::t2STRi12 || Opc == ARM::t2STRi8;
274 static bool isi32Store(unsigned Opc) {
275 return Opc == ARM::STRi12 || isT2i32Store(Opc);
633 static unsigned getUpdatingLSMultipleOpcode(unsigned Opc,
635 switch (Opc) {
795 static unsigned getPreIndexedLoadStoreOpcode(unsigned Opc,
797 switch (Opc) {
820 static unsigned getPostIndexedLoadStoreOpcode(unsigned Opc,
822 switch (Opc) {
1830 int Opc = MI->getOpcode();
1831 bool isLd = isi32Load(Opc) || Opc == ARM::VLDRS || Opc == ARM::VLDRD;