Searched refs:getNameWithPrefix (Results 1 - 25 of 38) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DMangler.h36 void getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV,
38 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
43 static void getNameWithPrefix(raw_ostream &OS, const Twine &GVName,
45 static void getNameWithPrefix(SmallVectorImpl<char> &OutName,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DMangler.cpp37 assert(!Name.empty() && "getNameWithPrefix requires non-empty name");
68 void Mangler::getNameWithPrefix(raw_ostream &OS, const Twine &GVName, function in class:Mangler
73 void Mangler::getNameWithPrefix(SmallVectorImpl<char> &OutName, function in class:Mangler
114 void Mangler::getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV, function in class:Mangler
180 void Mangler::getNameWithPrefix(SmallVectorImpl<char> &OutName, function in class:Mangler
184 getNameWithPrefix(OS, GV, CannotUsePrivateLabel);
200 Mangler.getNameWithPrefix(FlagOS, GV, false);
207 Mangler.getNameWithPrefix(OS, GV, false);
224 M.getNameWithPrefix(OS, GV, false);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetObjectFile.h49 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
H A DAArch64TargetObjectFile.cpp75 void AArch64_MachoTargetObjectFile::getNameWithPrefix( function in class:AArch64_MachoTargetObjectFile
80 getMangler().getNameWithPrefix(OutName, GV, /* CannotUsePrivateLabel */ true);
H A DAArch64MCInstLower.cpp56 Printer.TM.getNameWithPrefix(Name, GV,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachine.cpp254 void TargetMachine::getNameWithPrefix(SmallVectorImpl<char> &Name, function in class:TargetMachine
260 Mang.getNameWithPrefix(Name, GV, false);
264 TLOF->getNameWithPrefix(Name, GV, *this);
274 getNameWithPrefix(NameStr, GV, TLOF->getMangler());
H A DTargetLoweringObjectFile.cpp123 TM.getNameWithPrefix(NameStr, GV, *Mang);
363 void TargetLoweringObjectFile::getNameWithPrefix( function in class:TargetLoweringObjectFile
366 Mang->getNameWithPrefix(OutName, GV, /*CannotUsePrivateLabel=*/false);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DWasmException.cpp27 Mangler::getNameWithPrefix(NameStr, "__cpp_exception", Asm->getDataLayout());
H A DOcamlGCPrinter.cpp65 Mangler::getNameWithPrefix(TmpStr, SymName, M.getDataLayout());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/LTO/
H A DUpdateCompilerUsed.cpp115 TM.getNameWithPrefix(Buffer, &GV, Mangler);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUOpenCLEnqueuedBlockLowering.cpp114 Mangler::getNameWithPrefix(Name, "__amdgpu_enqueued_kernel",
H A DAMDGPUMCInstLower.cpp151 AP.getNameWithPrefix(SymbolName, GV);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCMCInstLower.cpp42 Mangler::getNameWithPrefix(Name, MO.getSymbolName(), DL);
45 TM.getNameWithPrefix(Name, GV, Mang);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DMangle.cpp364 llvm::Mangler::getNameWithPrefix(OS, FrontendBufOS.str(), DL);
402 llvm::Mangler::getNameWithPrefix(Mangled, Prefix + ClassName, DL);
504 llvm::Mangler::getNameWithPrefix(BOS, FOS.str(), DL);
518 llvm::Mangler::getNameWithPrefix(BOS, FOS.str(), DL);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMangling.cpp28 Mangler::getNameWithPrefix(MangledNameStream, Name, DL);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLoweringObjectFileImpl.h140 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
157 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
H A DAsmPrinter.h255 void getNameWithPrefix(SmallVectorImpl<char> &Name,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp624 TM.getNameWithPrefix(Name, GO, Mang, /*MayAlwaysUsePrivate*/true);
1350 void TargetLoweringObjectFileMachO::getNameWithPrefix( function in class:TargetLoweringObjectFileMachO
1360 getMangler().getNameWithPrefix(OutName, GV, CannotUsePrivateLabel);
1528 getMangler().getNameWithPrefix(TmpData, GO, /*CannotUsePrivateLabel=*/true);
1552 void TargetLoweringObjectFileCOFF::getNameWithPrefix( function in class:TargetLoweringObjectFileCOFF
1561 getMangler().getNameWithPrefix(OutName, GV, CannotUsePrivateLabel);
1890 TM.getNameWithPrefix(Name, GO, Mang, true);
2018 getNameWithPrefix(Name, GO, TM);
2037 getNameWithPrefix(Name, GO, TM);
2155 getNameWithPrefix(NameSt
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DLazyEmittingLayer.h150 Mang.getNameWithPrefix(MangledNameStream, &GV, false);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DModuleSymbolTable.cpp187 Mang.getNameWithPrefix(OS, GV, false);
H A DRecordStreamer.cpp148 Mang.getNameWithPrefix(MangledName, &GV, /*CannotUsePrivateLabel=*/false);
H A DIRSymtab.cpp182 Mang.getNameWithPrefix(OS, GV, false);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetLoweringObjectFile.h115 virtual void getNameWithPrefix(SmallVectorImpl<char> &OutName,
H A DTargetMachine.h325 void getNameWithPrefix(SmallVectorImpl<char> &Name, const GlobalValue *GV,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp327 Mangler::getNameWithPrefix(MangledNameStream, Name, getDataLayout());
418 TM->getNameWithPrefix(Name, F, Mang);

Completed in 276 milliseconds

12