| /src/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/ |
| H A D | OProfileWrapper.cpp | 137 char* BaseName = 0; in checkForOProfileProcEntry() local 145 BaseName = ExeName; in checkForOProfileProcEntry() 159 BaseName = ExeName + Idx + 1; in checkForOProfileProcEntry() 166 if (BaseName != 0 && (!strcmp("oprofiled", BaseName) || in checkForOProfileProcEntry() 167 !strcmp("operf", BaseName))) { in checkForOProfileProcEntry()
|
| /src/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaSwift.cpp | 348 StringRef ContextName, BaseName, Parameters; in validateSwiftFunctionName() local 350 std::tie(BaseName, Parameters) = Name.split('('); in validateSwiftFunctionName() 354 std::tie(ContextName, BaseName) = BaseName.split('.'); in validateSwiftFunctionName() 355 if (BaseName.empty()) { in validateSwiftFunctionName() 356 BaseName = ContextName; in validateSwiftFunctionName() 366 if (!isValidAsciiIdentifier(BaseName) || BaseName == "_") { in validateSwiftFunctionName() 372 bool IsSubscript = BaseName == "subscript"; in validateSwiftFunctionName() 454 SwiftParamCount == 1 && BaseName == "init" && CurrentParam != "_"; in validateSwiftFunctionName() 580 StringRef ContextName, BaseName; in DiagnoseName() local 582 std::tie(ContextName, BaseName) = Name.split('.'); in DiagnoseName() [all …]
|
| /src/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | AMDGPU.cpp | 91 StringRef BaseName; in scanLibDevicePath() local 93 BaseName = FileName.drop_back(Suffix2.size()); in scanLibDevicePath() 95 BaseName = FileName.drop_back(Suffix.size()); in scanLibDevicePath() 98 if (BaseName == "ocml") { in scanLibDevicePath() 100 } else if (BaseName == "ockl") { in scanLibDevicePath() 102 } else if (BaseName == "opencl") { in scanLibDevicePath() 104 } else if (BaseName == "hip") { in scanLibDevicePath() 106 } else if (BaseName == "asanrtl") { in scanLibDevicePath() 108 } else if (BaseName == "oclc_finite_only_off") { in scanLibDevicePath() 110 } else if (BaseName == "oclc_finite_only_on") { in scanLibDevicePath() [all …]
|
| /src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
| H A D | LVSupport.cpp | 154 StringRef BaseName) { in getScopedName() argument 157 std::string Name(BaseName); in getScopedName() 159 if (BaseName.size()) in getScopedName()
|
| H A D | LVScope.cpp | 520 std::string BaseName; in encodeTemplateArguments() local 521 getQualifiedName(BaseName); in encodeTemplateArguments() 523 Name.append(BaseName); in encodeTemplateArguments()
|
| /src/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFPreserveDIType.cpp | 72 std::string BaseName = "llvm.btf_type_id."; in BPFPreserveDITypeImpl() local 112 BaseName + std::to_string(Count) + "$" + std::to_string(Reloc); in BPFPreserveDITypeImpl()
|
| /src/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SSAUpdater.cpp | 373 SSAUpdater &S, StringRef BaseName) : SSA(S) { in LoadAndStorePromoter() argument 382 if (BaseName.empty()) in LoadAndStorePromoter() 383 BaseName = SomeVal->getName(); in LoadAndStorePromoter() 384 SSA.Initialize(SomeVal->getType(), BaseName); in LoadAndStorePromoter()
|
| /src/contrib/llvm-project/clang/lib/ExtractAPI/ |
| H A D | ExtractAPIConsumer.cpp | 379 createAdditionalSymbolGraphFile(CompilerInstance &CI, Twine BaseName) { in createAdditionalSymbolGraphFile() argument 384 BaseName + ".symbols.json"); in createAdditionalSymbolGraphFile() 399 auto ConstructOutputFile = [&CI](Twine BaseName) { in ImplEndSourceFileAction() argument 400 return createAdditionalSymbolGraphFile(CI, BaseName); in ImplEndSourceFileAction()
|
| /src/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyInstrFormats.td | 21 string BaseName = NAME; 60 let BaseName = NAME in
|
| H A D | WebAssemblyISelLowering.cpp | 1709 const char *BaseName = MF.createExternalSymbolName("__tls_base"); in LowerGlobalTLSAddress() local 1713 DAG.getTargetExternalSymbol(BaseName, PtrVT)), in LowerGlobalTLSAddress() 1752 const char *BaseName; in LowerGlobalAddress() local 1754 BaseName = MF.createExternalSymbolName("__table_base"); in LowerGlobalAddress() 1757 BaseName = MF.createExternalSymbolName("__memory_base"); in LowerGlobalAddress() 1762 DAG.getTargetExternalSymbol(BaseName, PtrVT)); in LowerGlobalAddress() 1869 const char *BaseName = MF.createExternalSymbolName("__memory_base"); in LowerIntrinsic() local 1872 DAG.getTargetExternalSymbol(BaseName, PtrVT)); in LowerIntrinsic()
|
| H A D | WebAssemblyInstrInfo.td | 240 let RowFields = ["BaseName"]; 253 let RowFields = ["BaseName"];
|
| /src/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangASTNodesEmitter.cpp | 98 std::string BaseName = macroName(std::string(Base.getName())); in EmitNode() local 129 << BaseName << "(Type, Base)\n"; in EmitNode()
|
| /src/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Module.cpp | 494 std::string Module::getUniqueIntrinsicName(StringRef BaseName, Intrinsic::ID Id, in getUniqueIntrinsicName() argument 496 auto Encode = [&BaseName](unsigned Suffix) { in getUniqueIntrinsicName() 497 return (Twine(BaseName) + "." + Twine(Suffix)).str(); in getUniqueIntrinsicName() 511 auto NiidItInserted = CurrentIntrinsicIds.insert({BaseName, 0}); in getUniqueIntrinsicName()
|
| /src/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFTypePrinter.cpp | 187 StringRef BaseName = Name.substr(0, Separator); in appendUnqualifiedNameBefore() local 190 *OriginalFullName = (BaseName + TemplateArgs).str(); in appendUnqualifiedNameBefore() 191 Name = BaseName; in appendUnqualifiedNameBefore()
|
| /src/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPC.td | 519 // Instructions with the same BaseName and Interpretation64Bit values 521 let RowFields = ["BaseName", "Interpretation64Bit"]; 532 // Instructions with the same BaseName and Interpretation64Bit values 534 let RowFields = ["BaseName", "Interpretation64Bit"]; 545 // Instructions with the same BaseName value form a row. 546 let RowFields = ["BaseName"];
|
| H A D | PPCInstrFuture.td | 37 let BaseName = asmbase in {
|
| H A D | PPCInstrInfo.td | 737 let BaseName = asmbase in { 751 let BaseName = asmbase in { 765 let BaseName = asmbase in { 780 let BaseName = asmbase in { 795 let BaseName = asmbase in { 809 let BaseName = asmbase in { 825 let BaseName = asmbase in { 834 let BaseName = !strconcat(asmbase, "O") in { 851 let BaseName = asmbase in { 861 let BaseName = !strconcat(asmbase, "O") in { [all …]
|
| /src/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 3287 std::string, BaseName, 1) { 3288 if (BaseName.empty()) 3291 const auto M = isDerivedFrom(hasName(BaseName)); 3360 std::string, BaseName, 1) { 3361 if (BaseName.empty()) 3364 const auto M = isSameOrDerivedFrom(hasName(BaseName)); 3412 std::string, BaseName, 1) { 3413 if (BaseName.empty()) 3415 const auto M = isDirectlyDerivedFrom(hasName(BaseName)); 3814 AST_MATCHER_P(ObjCMessageExpr, hasSelector, std::string, BaseName) { in AST_MATCHER_P() argument [all …]
|
| /src/contrib/llvm-project/clang/lib/Driver/ |
| H A D | Driver.cpp | 5777 StringRef BaseName, in MakeCLOutputFilename() argument 5783 Filename = BaseName; in MakeCLOutputFilename() 5786 llvm::sys::path::append(Filename, BaseName); in MakeCLOutputFilename() 5900 StringRef BaseName = llvm::sys::path::filename(BaseInput); in GetNamedOutputPath() local 5905 MakeCLOutputFilename(C.getArgs(), NameArg, BaseName, types::TY_PP_C), in GetNamedOutputPath() 5940 StringRef BaseName = llvm::sys::path::filename(BaseInput); in GetNamedOutputPath() local 5943 MakeCLOutputFilename(C.getArgs(), FaValue, BaseName, JA.getType()), in GetNamedOutputPath() 5994 StringRef BaseName; in GetNamedOutputPath() local 6005 BaseName = ExternalPath; in GetNamedOutputPath() 6007 BaseName = BasePath; in GetNamedOutputPath() [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVSupport.h | 235 StringRef BaseName = {});
|
| /src/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlan.cpp | 1531 std::string BaseName = (Twine("ir<") + Name + Twine(">")).str(); in assignName() local 1534 const auto &[A, _] = VPValue2Name.insert({V, BaseName}); in assignName() 1542 const auto &[C, UseInserted] = BaseName2Version.insert({BaseName, 0}); in assignName() 1545 A->second = (BaseName + Twine(".") + Twine(C->second)).str(); in assignName()
|
| /src/contrib/llvm-project/llvm/tools/llvm-profdata/ |
| H A D | llvm-profdata.cpp | 1747 SampleContext BaseName; member 2376 FuncOverlap.BaseName = Match->second->getContext(); in computeSampleProfileOverlap() 2377 assert(BaseStats.count(FuncOverlap.BaseName) && in computeSampleProfileOverlap() 2380 FuncOverlap.BaseSample = BaseStats[FuncOverlap.BaseName].SampleSum; in computeSampleProfileOverlap() 2409 FuncOverlap.BaseName.toString().find(FuncFilter.NameFilter) != in computeSampleProfileOverlap() 2471 ProfOverlap.BaseName = StringRef(BaseFilename); in initializeSampleProfileOverlap() 2538 << ProfOverlap.BaseName.toString() in dumpProgramSummary()
|
| /src/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Driver.h | 698 std::string GetClPchPath(Compilation &C, StringRef BaseName) const;
|
| /src/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64InstrFormats.td | 10392 multiclass SIMDLdStAliases<string BaseName, string asm, string layout, string Count, 10399 (!cast<Instruction>(BaseName # Count # "v" # layout # "_POST") 10409 (!cast<Instruction>(BaseName # Count # "v" # layout # "_POST") 10419 (!cast<Instruction>(BaseName # Count # "v" # layout) 10428 (!cast<Instruction>(BaseName # Count # "v" # layout # "_POST") 10434 multiclass BaseSIMDLdN<string BaseName, string Count, string asm, string veclist, 10497 defm : SIMDLdStAliases<BaseName, asm, "16b", Count, Offset128, 128>; 10498 defm : SIMDLdStAliases<BaseName, asm, "8h", Count, Offset128, 128>; 10499 defm : SIMDLdStAliases<BaseName, asm, "4s", Count, Offset128, 128>; 10500 defm : SIMDLdStAliases<BaseName, asm, "2d", Count, Offset128, 128>; [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Module.h | 387 std::string getUniqueIntrinsicName(StringRef BaseName, Intrinsic::ID Id,
|