Lines Matching refs:StoredVT
480 EVT StoredVT = ST->getMemoryVT(); in SelectIndexedStore() local
486 if (TII.isValidAutoIncImm(StoredVT, Val)) { in SelectIndexedStore()
490 if (StoredVT == MVT::i64) Opcode = Hexagon::S2_storerd_pi; in SelectIndexedStore()
491 else if (StoredVT == MVT::i32) Opcode = Hexagon::S2_storeri_pi; in SelectIndexedStore()
492 else if (StoredVT == MVT::i16) Opcode = Hexagon::S2_storerh_pi; in SelectIndexedStore()
493 else if (StoredVT == MVT::i8) Opcode = Hexagon::S2_storerb_pi; in SelectIndexedStore()
497 assert(StoredVT.getSizeInBits() < 64 && "Not a truncating store"); in SelectIndexedStore()
524 if (StoredVT == MVT::i64) Opcode = Hexagon::S2_storerd_io; in SelectIndexedStore()
525 else if (StoredVT == MVT::i32) Opcode = Hexagon::S2_storeri_io; in SelectIndexedStore()
526 else if (StoredVT == MVT::i16) Opcode = Hexagon::S2_storerh_io; in SelectIndexedStore()
527 else if (StoredVT == MVT::i8) Opcode = Hexagon::S2_storerb_io; in SelectIndexedStore()