Lines Matching refs:LoadStoreOp
1266 int LoadStoreOp = IsStore ? in buildMUBUFOffsetLoadStore() local
1268 if (LoadStoreOp == -1) in buildMUBUFOffsetLoadStore()
1276 BuildMI(*MBB, MI, DL, TII->get(LoadStoreOp)) in buildMUBUFOffsetLoadStore()
1293 unsigned LoadStoreOp, in getFlatScratchSpillOpcode() argument
1295 bool IsStore = TII->get(LoadStoreOp).mayStore(); in getFlatScratchSpillOpcode()
1296 bool HasVAddr = AMDGPU::hasNamedOperand(LoadStoreOp, AMDGPU::OpName::vaddr); in getFlatScratchSpillOpcode()
1298 !HasVAddr && !AMDGPU::hasNamedOperand(LoadStoreOp, AMDGPU::OpName::saddr); in getFlatScratchSpillOpcode()
1302 LoadStoreOp = IsStore ? AMDGPU::SCRATCH_STORE_DWORD_SADDR in getFlatScratchSpillOpcode()
1306 LoadStoreOp = IsStore ? AMDGPU::SCRATCH_STORE_DWORDX2_SADDR in getFlatScratchSpillOpcode()
1310 LoadStoreOp = IsStore ? AMDGPU::SCRATCH_STORE_DWORDX3_SADDR in getFlatScratchSpillOpcode()
1314 LoadStoreOp = IsStore ? AMDGPU::SCRATCH_STORE_DWORDX4_SADDR in getFlatScratchSpillOpcode()
1322 LoadStoreOp = AMDGPU::getFlatScratchInstSVfromSS(LoadStoreOp); in getFlatScratchSpillOpcode()
1324 LoadStoreOp = AMDGPU::getFlatScratchInstSTfromSS(LoadStoreOp); in getFlatScratchSpillOpcode()
1326 return LoadStoreOp; in getFlatScratchSpillOpcode()
1331 unsigned LoadStoreOp, int Index, Register ValueReg, bool IsKill, in buildSpillLoadStore() argument
1341 const MCInstrDesc *Desc = &TII->get(LoadStoreOp); in buildSpillLoadStore()
1343 bool IsFlat = TII->isFLATScratch(LoadStoreOp); in buildSpillLoadStore()
1368 LoadStoreOp = getFlatScratchSpillOpcode(TII, LoadStoreOp, EltSize); in buildSpillLoadStore()
1369 Desc = &TII->get(LoadStoreOp); in buildSpillLoadStore()
1504 assert(AMDGPU::getNamedOperandIdx(LoadStoreOp, AMDGPU::OpName::vaddr) < 0 in buildSpillLoadStore()
1508 LoadStoreOp = AMDGPU::getFlatScratchInstSVfromSS(LoadStoreOp); in buildSpillLoadStore()
1511 LoadStoreOp = AMDGPU::getFlatScratchInstSTfromSS(LoadStoreOp); in buildSpillLoadStore()
1514 Desc = &TII->get(LoadStoreOp); in buildSpillLoadStore()
1521 LoadStoreOp = getFlatScratchSpillOpcode(TII, LoadStoreOp, EltSize); in buildSpillLoadStore()
1523 Desc = &TII->get(LoadStoreOp); in buildSpillLoadStore()
1526 int NewLoadStoreOp = IsStore ? getOffenMUBUFStore(LoadStoreOp) in buildSpillLoadStore()
1527 : getOffenMUBUFLoad(LoadStoreOp); in buildSpillLoadStore()
1607 unsigned Opc = getFlatScratchSpillOpcode(TII, LoadStoreOp, RemEltSize); in buildSpillLoadStore()