Searched refs:SYSm (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/Utils/ |
H A D | ARMBaseInfo.cpp | 52 const MClassSysReg *lookupMClassSysRegBy12bitSYSmValue(unsigned SYSm) { in lookupMClassSysRegBy12bitSYSmValue() argument 53 return lookupMClassSysRegByM1Encoding12(SYSm); in lookupMClassSysRegBy12bitSYSmValue() 58 const MClassSysReg *lookupMClassSysRegAPSRNonDeprecated(unsigned SYSm) { in lookupMClassSysRegAPSRNonDeprecated() argument 59 return lookupMClassSysRegByM2M3Encoding8((1<<9)|(SYSm & 0xFF)); in lookupMClassSysRegAPSRNonDeprecated() 63 const MClassSysReg *lookupMClassSysRegBy8bitSYSmValue(unsigned SYSm) { in lookupMClassSysRegBy8bitSYSmValue() argument 64 return ARMSysReg::lookupMClassSysRegByM2M3Encoding8((1<<8)|(SYSm & 0xFF)); in lookupMClassSysRegBy8bitSYSmValue()
|
H A D | ARMBaseInfo.h | 214 const MClassSysReg *lookupMClassSysRegBy12bitSYSmValue(unsigned SYSm); 218 const MClassSysReg *lookupMClassSysRegAPSRNonDeprecated(unsigned SYSm); 221 const MClassSysReg *lookupMClassSysRegBy8bitSYSmValue(unsigned SYSm);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMInstPrinter.cpp | 915 unsigned SYSm = Op.getImm() & 0xFFF; // 12-bit SYSm in printMSRMaskOperand() local 920 auto TheReg =ARMSysReg::lookupMClassSysRegBy12bitSYSmValue(SYSm); in printMSRMaskOperand() 928 SYSm &= 0xff; in printMSRMaskOperand() 932 auto TheReg = ARMSysReg::lookupMClassSysRegAPSRNonDeprecated(SYSm); in printMSRMaskOperand() 939 auto TheReg = ARMSysReg::lookupMClassSysRegBy8bitSYSmValue(SYSm); in printMSRMaskOperand() 945 O << SYSm; in printMSRMaskOperand()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMInstrThumb2.td | 4521 def t2MRS_M : T2I<(outs rGPR:$Rd), (ins msr_mask:$SYSm), NoItinerary, 4522 "mrs", "\t$Rd, $SYSm", []>, 4525 bits<8> SYSm; 4528 let Inst{7-0} = SYSm; 4580 def t2MSR_M : T2I<(outs), (ins msr_mask:$SYSm, rGPR:$Rn), 4581 NoItinerary, "msr", "\t$SYSm, $Rn", []>, 4583 bits<12> SYSm; 4589 let Inst{11-10} = SYSm{11-10}; 4591 let Inst{7-0} = SYSm{7-0};
|