Home | History | Annotate | Download | only in AMDGPU

Lines Matching refs:Index

67   // getNamedOperandIdx returns the index for the MachineInstr's operands,
70 // the real index.
171 // getNamedOperandIdx returns the index for MachineInstrs. Since they
173 // subtract the index by one.
1724 // value so we don't need to worry about merging its subreg index with the
1752 llvm_unreachable("Unhandled register index for immediate");
2035 // subregister index types e.g. sub0_sub1 + sub2 + sub3
3025 for (int Index = Begin; Index <= End; ++Index)
3026 Reserved.set(AMDGPU::VGPR_32RegClass.getRegister(Index));
3028 for (int Index = std::max(0, Begin - 1); Index <= End; ++Index)
3029 Reserved.set(AMDGPU::VReg_64RegClass.getRegister(Index));
3031 for (int Index = std::max(0, Begin - 2); Index <= End; ++Index)
3032 Reserved.set(AMDGPU::VReg_96RegClass.getRegister(Index));
3034 for (int Index = std::max(0, Begin - 3); Index <= End; ++Index)
3035 Reserved.set(AMDGPU::VReg_128RegClass.getRegister(Index));
3037 for (int Index = std::max(0, Begin - 7); Index <= End; ++Index)
3038 Reserved.set(AMDGPU::VReg_256RegClass.getRegister(Index));
3040 for (int Index = std::max(0, Begin - 15); Index <= End; ++Index)
3041 Reserved.set(AMDGPU::VReg_512RegClass.getRegister(Index));