Searched refs:isEH (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCRegisterInfo.cpp | 144 int MCRegisterInfo::getDwarfRegNum(MCRegister RegNum, bool isEH) const { in getDwarfRegNum() 145 const DwarfLLVMRegPair *M = isEH ? EHL2DwarfRegs : L2DwarfRegs; in getDwarfRegNum() 146 unsigned Size = isEH ? EHL2DwarfRegsSize : L2DwarfRegsSize; in getDwarfRegNum() 158 bool isEH) const { in getLLVMRegNum() 159 const DwarfLLVMRegPair *M = isEH ? EHDwarf2LRegs : Dwarf2LRegs; in getLLVMRegNum() 160 unsigned Size = isEH ? EHDwarf2LRegsSize : Dwarf2LRegsSize; in getLLVMRegNum()
|
H A D | MCDwarf.cpp | 1275 unsigned symbolEncoding, bool isEH) { in emitFDESymbol() argument 1282 if (asmInfo->doDwarfFDESymbolsUseAbsDiff() && isEH) in emitFDESymbol()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCRegisterInfo.h | 313 bool isEH) { in mapLLVMRegsToDwarfRegs() argument 314 if (isEH) { in mapLLVMRegsToDwarfRegs() 327 bool isEH) { in mapDwarfRegsToLLVMRegs() argument 328 if (isEH) { in mapDwarfRegsToLLVMRegs() 421 int getDwarfRegNum(MCRegister RegNum, bool isEH) const; 425 std::optional<unsigned> getLLVMRegNum(unsigned RegNum, bool isEH) const;
|
H A D | MCDwarf.h | 752 static void Emit(MCObjectStreamer &streamer, MCAsmBackend *MAB, bool isEH);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86MCTargetDesc.h | 60 unsigned getDwarfRegFlavour(const Triple &TT, bool isEH);
|
H A D | X86MCTargetDesc.cpp | 61 unsigned X86_MC::getDwarfRegFlavour(const Triple &TT, bool isEH) { in getDwarfRegFlavour() argument 66 return isEH ? DWARFFlavour::X86_32_DarwinEH : DWARFFlavour::X86_32_Generic; in getDwarfRegFlavour()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGCleanup.h | 343 EHCleanupScope(bool isNormal, bool isEH, unsigned cleanupSize, 352 CleanupBits.IsEHCleanup = isEH;
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | Relocations.cpp | 463 void scanSection(InputSectionBase &s, bool isEH = false); 1622 void RelocationScanner::scanSection(InputSectionBase &s, bool isEH) { in scanSection() argument 1625 const RelsOrRelas<ELFT> rels = s.template relsOrRelas<ELFT>(!isEH); in scanSection()
|