Lines Matching refs:LoadStoreOp
1205 int LoadStoreOp = IsStore ? in buildMUBUFOffsetLoadStore() local
1207 if (LoadStoreOp == -1) in buildMUBUFOffsetLoadStore()
1215 BuildMI(*MBB, MI, DL, TII->get(LoadStoreOp)) in buildMUBUFOffsetLoadStore()
1233 unsigned LoadStoreOp, in getFlatScratchSpillOpcode() argument
1235 bool IsStore = TII->get(LoadStoreOp).mayStore(); in getFlatScratchSpillOpcode()
1236 bool HasVAddr = AMDGPU::getNamedOperandIdx(LoadStoreOp, AMDGPU::OpName::vaddr) != -1; in getFlatScratchSpillOpcode()
1239 AMDGPU::getNamedOperandIdx(LoadStoreOp, AMDGPU::OpName::saddr) < 0; in getFlatScratchSpillOpcode()
1243 LoadStoreOp = IsStore ? AMDGPU::SCRATCH_STORE_DWORD_SADDR in getFlatScratchSpillOpcode()
1247 LoadStoreOp = IsStore ? AMDGPU::SCRATCH_STORE_DWORDX2_SADDR in getFlatScratchSpillOpcode()
1251 LoadStoreOp = IsStore ? AMDGPU::SCRATCH_STORE_DWORDX3_SADDR in getFlatScratchSpillOpcode()
1255 LoadStoreOp = IsStore ? AMDGPU::SCRATCH_STORE_DWORDX4_SADDR in getFlatScratchSpillOpcode()
1263 LoadStoreOp = AMDGPU::getFlatScratchInstSVfromSS(LoadStoreOp); in getFlatScratchSpillOpcode()
1265 LoadStoreOp = AMDGPU::getFlatScratchInstSTfromSS(LoadStoreOp); in getFlatScratchSpillOpcode()
1267 return LoadStoreOp; in getFlatScratchSpillOpcode()
1272 unsigned LoadStoreOp, int Index, Register ValueReg, bool IsKill, in buildSpillLoadStore() argument
1282 const MCInstrDesc *Desc = &TII->get(LoadStoreOp); in buildSpillLoadStore()
1284 bool IsFlat = TII->isFLATScratch(LoadStoreOp); in buildSpillLoadStore()
1309 LoadStoreOp = getFlatScratchSpillOpcode(TII, LoadStoreOp, EltSize); in buildSpillLoadStore()
1310 Desc = &TII->get(LoadStoreOp); in buildSpillLoadStore()
1445 assert(AMDGPU::getNamedOperandIdx(LoadStoreOp, AMDGPU::OpName::vaddr) < 0 in buildSpillLoadStore()
1449 LoadStoreOp = AMDGPU::getFlatScratchInstSVfromSS(LoadStoreOp); in buildSpillLoadStore()
1452 LoadStoreOp = AMDGPU::getFlatScratchInstSTfromSS(LoadStoreOp); in buildSpillLoadStore()
1455 Desc = &TII->get(LoadStoreOp); in buildSpillLoadStore()
1462 LoadStoreOp = getFlatScratchSpillOpcode(TII, LoadStoreOp, EltSize); in buildSpillLoadStore()
1464 Desc = &TII->get(LoadStoreOp); in buildSpillLoadStore()
1467 int NewLoadStoreOp = IsStore ? getOffenMUBUFStore(LoadStoreOp) in buildSpillLoadStore()
1468 : getOffenMUBUFLoad(LoadStoreOp); in buildSpillLoadStore()
1545 unsigned Opc = getFlatScratchSpillOpcode(TII, LoadStoreOp, RemEltSize); in buildSpillLoadStore()