| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| Mangler.h | 36 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,
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| Mangler.cpp | 38 assert(!Name.empty() && "getNameWithPrefix requires non-empty name"); 69 void Mangler::getNameWithPrefix(raw_ostream &OS, const Twine &GVName, 74 void Mangler::getNameWithPrefix(SmallVectorImpl<char> &OutName, 114 void Mangler::getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV, 180 void Mangler::getNameWithPrefix(SmallVectorImpl<char> &OutName, 184 getNameWithPrefix(OS, GV, CannotUsePrivateLabel); 222 Mangler.getNameWithPrefix(FlagOS, GV, false); 229 Mangler.getNameWithPrefix(OS, GV, false); 251 M.getNameWithPrefix(OS, GV, false);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| AArch64TargetObjectFile.h | 49 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
|
| AArch64TargetObjectFile.cpp | 75 void AArch64_MachoTargetObjectFile::getNameWithPrefix( 80 getMangler().getNameWithPrefix(OutName, GV, /* CannotUsePrivateLabel */ true);
|
| AArch64MCInstLower.cpp | 56 Printer.TM.getNameWithPrefix(Name, GV,
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/ |
| TargetMachine.cpp | 206 void TargetMachine::getNameWithPrefix(SmallVectorImpl<char> &Name, 212 Mang.getNameWithPrefix(Name, GV, false); 216 TLOF->getNameWithPrefix(Name, GV, *this); 226 getNameWithPrefix(NameStr, GV, TLOF->getMangler());
|
| TargetLoweringObjectFile.cpp | 135 TM.getNameWithPrefix(NameStr, GV, *Mang); 433 void TargetLoweringObjectFile::getNameWithPrefix( 436 Mang->getNameWithPrefix(OutName, GV, /*CannotUsePrivateLabel=*/false);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/ |
| M68kMCInstLower.cpp | 58 AsmPrinter.getNameWithPrefix(Name, GV); 60 Mangler::getNameWithPrefix(Name, MO.getSymbolName(), DL);
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| WasmException.cpp | 27 Mangler::getNameWithPrefix(NameStr, "__cpp_exception", Asm->getDataLayout());
|
| OcamlGCPrinter.cpp | 65 Mangler::getNameWithPrefix(TmpStr, SymName, M.getDataLayout());
|
| /src/external/apache2/llvm/dist/llvm/lib/LTO/ |
| UpdateCompilerUsed.cpp | 115 TM.getNameWithPrefix(Buffer, &GV, Mangler);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| AMDGPUOpenCLEnqueuedBlockLowering.cpp | 109 Mangler::getNameWithPrefix(Name, "__amdgpu_enqueued_kernel",
|
| AMDGPUMCInstLower.cpp | 149 AP.getNameWithPrefix(SymbolName, GV);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCMCInstLower.cpp | 42 Mangler::getNameWithPrefix(Name, MO.getSymbolName(), DL); 45 TM.getNameWithPrefix(Name, GV, Mang);
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| TargetLoweringObjectFileImpl.cpp | 636 TM.getNameWithPrefix(Name, GO, Mang, /*MayAlwaysUsePrivate*/true); 1474 void TargetLoweringObjectFileMachO::getNameWithPrefix( 1484 getMangler().getNameWithPrefix(OutName, GV, CannotUsePrivateLabel); 1656 getMangler().getNameWithPrefix(TmpData, GO, /*CannotUsePrivateLabel=*/true); 1680 void TargetLoweringObjectFileCOFF::getNameWithPrefix( 1689 getMangler().getNameWithPrefix(OutName, GV, CannotUsePrivateLabel); 2072 TM.getNameWithPrefix(Name, GO, Mang, true); 2253 getNameWithPrefix(Name, GO, TM); 2272 getNameWithPrefix(Name, GO, TM); 2284 getNameWithPrefix(Name, GO, TM) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| Mangle.cpp | 420 llvm::Mangler::getNameWithPrefix(OS, FrontendBufOS.str(), DL); 458 llvm::Mangler::getNameWithPrefix(Mangled, Prefix + ClassName, DL); 560 llvm::Mangler::getNameWithPrefix(BOS, FOS.str(), DL); 574 llvm::Mangler::getNameWithPrefix(BOS, FOS.str(), DL);
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/ |
| Mangling.cpp | 28 Mangler::getNameWithPrefix(MangledNameStream, Name, DL);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| TargetLoweringObjectFileImpl.h | 153 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV, 171 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
|
| AsmPrinter.h | 274 void getNameWithPrefix(SmallVectorImpl<char> &Name,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Target/ |
| TargetLoweringObjectFile.h | 126 virtual void getNameWithPrefix(SmallVectorImpl<char> &OutName,
|
| TargetMachine.h | 371 void getNameWithPrefix(SmallVectorImpl<char> &Name, const GlobalValue *GV,
|
| /src/external/apache2/llvm/dist/llvm/lib/Object/ |
| ModuleSymbolTable.cpp | 188 Mang.getNameWithPrefix(OS, GV, false);
|
| RecordStreamer.cpp | 149 Mang.getNameWithPrefix(MangledName, &GV, /*CannotUsePrivateLabel=*/false);
|
| IRSymtab.cpp | 195 Mang.getNameWithPrefix(OS, GV, false);
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/MCJIT/ |
| MCJIT.cpp | 327 Mangler::getNameWithPrefix(MangledNameStream, Name, getDataLayout()); 418 TM->getNameWithPrefix(Name, F, Mang);
|