1//=- AMDGPURegisterBank.td - Describe the AMDGPU Banks -------*- tablegen -*-=// 2// 3// The LLVM Compiler Infrastructure 4// 5// This file is distributed under the University of Illinois Open Source 6// License. See LICENSE.TXT for details. 7// 8//===----------------------------------------------------------------------===// 9 10def SGPRRegBank : RegisterBank<"SGPR", 11 [SReg_32, SReg_64, SReg_128, SReg_256, SReg_512] 12>; 13 14def VGPRRegBank : RegisterBank<"VGPR", 15 [VGPR_32, VReg_64, VReg_96, VReg_128, VReg_256, VReg_512] 16>; 17 18def SCCRegBank : RegisterBank <"SCC", [SCC_CLASS ]>; 19