Home
last modified time | relevance | path

Searched refs:MCRegInfo (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsOptionRecord.cpp71 const MCRegisterInfo *MCRegInfo) { in SetPhysRegUsed() argument
74 for (const MCPhysReg &SubReg : MCRegInfo->subregs_inclusive(Reg)) { in SetPhysRegUsed()
75 unsigned EncVal = MCRegInfo->getEncodingValue(SubReg); in SetPhysRegUsed()
H A DMipsELFStreamer.cpp41 const MCRegisterInfo *MCRegInfo = Context.getRegisterInfo(); in emitInstruction() local
50 RegInfoRecord->SetPhysRegUsed(Reg, MCRegInfo); in emitInstruction()
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp658 std::unique_ptr<MCRegisterInfo> MCRegInfo; in createRegInfo() local
668 MCRegInfo.reset(TheTarget->createMCRegInfo(TT.str())); in createRegInfo()
669 return MCRegInfo; in createRegInfo()
675 auto MCRegInfo = createRegInfo(Obj); in dumpObjectFile() local
676 if (!MCRegInfo) in dumpObjectFile()
681 auto GetRegName = [&MCRegInfo](uint64_t DwarfRegNum, bool IsEH) -> StringRef { in dumpObjectFile()
682 if (!MCRegInfo) in dumpObjectFile()
685 MCRegInfo->getLLVMRegNum(DwarfRegNum, IsEH)) in dumpObjectFile()
686 if (const char *RegName = MCRegInfo->getName(*LLVMRegNum)) in dumpObjectFile()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsOptionRecord.h61 void SetPhysRegUsed(unsigned Reg, const MCRegisterInfo *MCRegInfo);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVDWARFReader.cpp788 auto *MCRegInfo = MRI.get(); in getRegisterName() local
789 auto GetRegName = [&MCRegInfo](uint64_t DwarfRegNum, bool IsEH) -> StringRef { in getRegisterName()
790 if (!MCRegInfo) in getRegisterName()
793 MCRegInfo->getLLVMRegNum(DwarfRegNum, IsEH)) in getRegisterName()
794 if (const char *RegName = MCRegInfo->getName(*LLVMRegNum)) in getRegisterName()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpression.cpp74 auto *MCRegInfo = abi ? &abi->GetMCRegisterInfo() : nullptr; in DumpLocation() local
75 auto GetRegName = [&MCRegInfo](uint64_t DwarfRegNum, in DumpLocation()
77 if (!MCRegInfo) in DumpLocation()
80 MCRegInfo->getLLVMRegNum(DwarfRegNum, IsEH)) in DumpLocation()
81 if (const char *RegName = MCRegInfo->getName(*LLVMRegNum)) in DumpLocation()