Home
last modified time | relevance | path

Searched refs:getNameWithPrefix (Results 1 – 25 of 39) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DMangler.cpp71 void Mangler::getNameWithPrefix(raw_ostream &OS, const Twine &GVName, in getNameWithPrefix() function in Mangler
76 void Mangler::getNameWithPrefix(SmallVectorImpl<char> &OutName, in getNameWithPrefix() function in Mangler
121 void Mangler::getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV, in getNameWithPrefix() function in Mangler
188 void Mangler::getNameWithPrefix(SmallVectorImpl<char> &OutName, in getNameWithPrefix() function in Mangler
192 getNameWithPrefix(OS, GV, CannotUsePrivateLabel); in getNameWithPrefix()
229 Mangler.getNameWithPrefix(FlagOS, GV, false); in emitLinkerFlagsForGlobalCOFF()
236 Mangler.getNameWithPrefix(OS, GV, false); in emitLinkerFlagsForGlobalCOFF()
268 Mangler.getNameWithPrefix(FlagOS, GV, false); in emitLinkerFlagsForGlobalCOFF()
289 M.getNameWithPrefix(OS, GV, false); in emitLinkerFlagsForUsedCOFF()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DMangler.h49 LLVM_ABI void getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV,
51 LLVM_ABI void getNameWithPrefix(SmallVectorImpl<char> &OutName,
57 LLVM_ABI static void getNameWithPrefix(raw_ostream &OS, const Twine &GVName,
59 LLVM_ABI static void getNameWithPrefix(SmallVectorImpl<char> &OutName,
/freebsd/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachine.cpp296 void TargetMachine::getNameWithPrefix(SmallVectorImpl<char> &Name, in getNameWithPrefix() function in TargetMachine
302 Mang.getNameWithPrefix(Name, GV, false); in getNameWithPrefix()
306 TLOF->getNameWithPrefix(Name, GV, *this); in getNameWithPrefix()
316 getNameWithPrefix(NameStr, GV, TLOF->getMangler()); in getSymbol()
H A DTargetLoweringObjectFile.cpp133 TM.getNameWithPrefix(NameStr, GV, *Mang); in getSymbolWithGlobalValueBase()
478 void TargetLoweringObjectFile::getNameWithPrefix( in getNameWithPrefix() function in TargetLoweringObjectFile
481 Mang->getNameWithPrefix(OutName, GV, /*CannotUsePrivateLabel=*/false); in getNameWithPrefix()
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kMCInstLower.cpp59 AsmPrinter.getNameWithPrefix(Name, GV); in GetSymbolFromOperand()
61 Mangler::getNameWithPrefix(Name, MO.getSymbolName(), DL); in GetSymbolFromOperand()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp682 TM.getNameWithPrefix(Name, GO, Mang, /*MayAlwaysUsePrivate*/true); in getELFSectionNameForGlobal()
1629 void TargetLoweringObjectFileMachO::getNameWithPrefix( in getNameWithPrefix() function in TargetLoweringObjectFileMachO
1639 getMangler().getNameWithPrefix(OutName, GV, CannotUsePrivateLabel); in getNameWithPrefix()
1823 getMangler().getNameWithPrefix(TmpData, GO, /*CannotUsePrivateLabel=*/true); in SelectSectionForGlobal()
1847 void TargetLoweringObjectFileCOFF::getNameWithPrefix( in getNameWithPrefix() function in TargetLoweringObjectFileCOFF
1856 getMangler().getNameWithPrefix(OutName, GV, CannotUsePrivateLabel); in getNameWithPrefix()
2277 TM.getNameWithPrefix(Name, GO, Mang, true); in selectWasmSectionForGlobal()
2455 getNameWithPrefix(Name, GO, TM); in getSectionForExternalReference()
2487 getNameWithPrefix(Name, GO, TM); in SelectSectionForGlobal()
2501 getNameWithPrefix(Name, GO, TM); in SelectSectionForGlobal()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetObjectFile.cpp115 void AArch64_MachoTargetObjectFile::getNameWithPrefix( in getNameWithPrefix() function in AArch64_MachoTargetObjectFile
120 getMangler().getNameWithPrefix(OutName, GV, /* CannotUsePrivateLabel */ true); in getNameWithPrefix()
H A DAArch64TargetObjectFile.h66 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
H A DAArch64MCInstLower.cpp112 Printer.TM.getNameWithPrefix(Name, GV, in GetGlobalValueSymbol()
123 Printer.TM.getNameWithPrefix(Name, GV, in GetGlobalValueSymbol()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DMangle.cpp446 llvm::Mangler::getNameWithPrefix(OS, FrontendBufOS.str(), DL); in writeName()
484 llvm::Mangler::getNameWithPrefix(Mangled, Prefix + ClassName, DL); in getAllManglings()
596 llvm::Mangler::getNameWithPrefix(BOS, FrontendBuf, DL); in getMangledStructor()
611 llvm::Mangler::getNameWithPrefix(BOS, FrontendBuf, DL); in getMangledThunk()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DWasmException.cpp36 Mangler::getNameWithPrefix(NameStr, SymName, Asm->getDataLayout()); in endModule()
H A DOcamlGCPrinter.cpp65 Mangler::getNameWithPrefix(TmpStr, SymName, M.getDataLayout()); in EmitCamlGlobal()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMangling.cpp25 Mangler::getNameWithPrefix(MangledNameStream, Name, DL); in operator ()()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DUpdateCompilerUsed.cpp115 TM.getNameWithPrefix(Buffer, &GV, Mangler); in findLibCallsAndAsm()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLoweringObjectFileImpl.h177 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
197 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
H A DAsmPrinter.h336 void getNameWithPrefix(SmallVectorImpl<char> &Name,
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DRecordStreamer.cpp144 Mang.getNameWithPrefix(MangledName, &GV, /*CannotUsePrivateLabel=*/false); in flushSymverDirectives()
H A DModuleSymbolTable.cpp210 Mang.getNameWithPrefix(OS, GV, false); in printSymbolName()
H A DIRSymtab.cpp202 Mang.getNameWithPrefix(OS, GV, false); in getComdatIndex()
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetLoweringObjectFile.h144 virtual void getNameWithPrefix(SmallVectorImpl<char> &OutName,
H A DTargetMachine.h451 void getNameWithPrefix(SmallVectorImpl<char> &Name, const GlobalValue *GV,
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp324 Mangler::getNameWithPrefix(MangledNameStream, Name, getDataLayout()); in getSymbolAddress()
415 TM->getNameWithPrefix(Name, F, Mang); in getPointerToFunction()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCMCInstLower.cpp47 Mangler::getNameWithPrefix(Name, MO.getSymbolName(), DL); in GetSymbolFromOperand()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsMCInstLower.cpp136 AsmPrinter.getNameWithPrefix(Name, MO.getGlobal()); in LowerSymbolOperand()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMCInstLower.cpp87 AP.getNameWithPrefix(SymbolName, GV); in lowerOperand()

12