Home
last modified time | relevance | path

Searched refs:BaseName (Results 1 – 25 of 30) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/
DOProfileWrapper.cpp137 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()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
DAMDGPU.cpp88 StringRef BaseName; in scanLibDevicePath() local
90 BaseName = FileName.drop_back(Suffix2.size()); in scanLibDevicePath()
92 BaseName = FileName.drop_back(Suffix.size()); in scanLibDevicePath()
94 if (BaseName == "ocml") { in scanLibDevicePath()
96 } else if (BaseName == "ockl") { in scanLibDevicePath()
98 } else if (BaseName == "opencl") { in scanLibDevicePath()
100 } else if (BaseName == "hip") { in scanLibDevicePath()
102 } else if (BaseName == "asanrtl") { in scanLibDevicePath()
104 } else if (BaseName == "oclc_finite_only_off") { in scanLibDevicePath()
106 } else if (BaseName == "oclc_finite_only_on") { in scanLibDevicePath()
[all …]
DCommonArgs.cpp1530 StringRef BaseName = llvm::sys::path::filename(Input.getBaseInput()); in getStatsFileName() local
1531 llvm::sys::path::append(StatsFile, BaseName); in getStatsFileName()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/BPF/
DBPFPreserveDIType.cpp70 std::string BaseName = "llvm.btf_type_id."; in BPFPreserveDITypeImpl() local
103 std::string GVName = BaseName + std::to_string(Count) + "$" + in BPFPreserveDITypeImpl()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DSSAUpdater.cpp323 SSAUpdater &S, StringRef BaseName) : SSA(S) { in LoadAndStorePromoter() argument
332 if (BaseName.empty()) in LoadAndStorePromoter()
333 BaseName = SomeVal->getName(); in LoadAndStorePromoter()
334 SSA.Initialize(SomeVal->getType(), BaseName); in LoadAndStorePromoter()
/freebsd-12-stable/contrib/unbound/testdata/ip_ratelimit.tdir/
Dip_ratelimit.dsc1 BaseName: ip_ratelimit
/freebsd-12-stable/contrib/unbound/testdata/root_zonemd.tdir/
Droot_zonemd.dsc1 BaseName: root_zonemd
/freebsd-12-stable/contrib/unbound/testdata/cachedb_no_store.tdir/
Dcachedb_no_store.dsc1 BaseName: cachedb_no_store
/freebsd-12-stable/contrib/llvm-project/clang/utils/TableGen/
DClangASTNodesEmitter.cpp89 std::string BaseName = macroName(std::string(Base.getName())); in EmitNode() local
105 << BaseName << "(Type, Base)\n"; in EmitNode()
DMveEmitter.cpp1331 StringRef BaseName = in ACLEIntrinsic() local
1336 (Twine(BaseName) + Param->acleSuffix(std::string(overrideLetter))).str(); in ACLEIntrinsic()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrFormats.td21 string BaseName = NAME;
60 let BaseName = NAME in
DWebAssemblyInstrInfo.td231 let RowFields = ["BaseName"];
244 let RowFields = ["BaseName"];
DWebAssemblyISelLowering.cpp1522 const char *BaseName = MF.createExternalSymbolName("__tls_base"); in LowerGlobalTLSAddress() local
1526 DAG.getTargetExternalSymbol(BaseName, PtrVT)), in LowerGlobalTLSAddress()
1552 const char *BaseName; in LowerGlobalAddress() local
1554 BaseName = MF.createExternalSymbolName("__table_base"); in LowerGlobalAddress()
1558 BaseName = MF.createExternalSymbolName("__memory_base"); in LowerGlobalAddress()
1563 DAG.getTargetExternalSymbol(BaseName, PtrVT)); in LowerGlobalAddress()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
DPPC.td422 // Instructions with the same BaseName and Interpretation64Bit values
424 let RowFields = ["BaseName", "Interpretation64Bit"];
435 // Instructions with the same BaseName and Interpretation64Bit values
437 let RowFields = ["BaseName", "Interpretation64Bit"];
448 // Instructions with the same BaseName value form a row.
449 let RowFields = ["BaseName"];
DPPCInstrInfo.td1204 let BaseName = asmbase in {
1218 let BaseName = asmbase in {
1233 let BaseName = asmbase in {
1248 let BaseName = asmbase in {
1262 let BaseName = asmbase in {
1278 let BaseName = asmbase in {
1287 let BaseName = !strconcat(asmbase, "O") in {
1304 let BaseName = asmbase in {
1314 let BaseName = !strconcat(asmbase, "O") in {
1329 let BaseName = asmbase in {
[all …]
DPPCInstrVSX.td164 let BaseName = asmbase in {
417 let BaseName = "XSMADDADP" in {
433 let BaseName = "XSMSUBADP" in {
449 let BaseName = "XSNMADDADP" in {
465 let BaseName = "XSNMSUBADP" in {
481 let BaseName = "XVMADDADP" in {
497 let BaseName = "XVMADDASP" in {
513 let BaseName = "XVMSUBADP" in {
529 let BaseName = "XVMSUBASP" in {
545 let BaseName = "XVNMADDADP" in {
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DModule.cpp480 std::string Module::getUniqueIntrinsicName(StringRef BaseName, Intrinsic::ID Id, in getUniqueIntrinsicName() argument
482 auto Encode = [&BaseName](unsigned Suffix) { in getUniqueIntrinsicName()
483 return (Twine(BaseName) + "." + Twine(Suffix)).str(); in getUniqueIntrinsicName()
497 auto NiidItInserted = CurrentIntrinsicIds.insert({BaseName, 0}); in getUniqueIntrinsicName()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/
DDriver.cpp4828 StringRef BaseName, in MakeCLOutputFilename() argument
4834 Filename = BaseName; in MakeCLOutputFilename()
4837 llvm::sys::path::append(Filename, BaseName); in MakeCLOutputFilename()
4889 StringRef BaseName = llvm::sys::path::filename(BaseInput); in GetNamedOutputPath() local
4894 MakeCLOutputFilename(C.getArgs(), NameArg, BaseName, types::TY_PP_C), in GetNamedOutputPath()
4913 StringRef BaseName = llvm::sys::path::filename(BaseInput); in GetNamedOutputPath() local
4916 MakeCLOutputFilename(C.getArgs(), FaValue, BaseName, JA.getType()), in GetNamedOutputPath()
4949 StringRef BaseName; in GetNamedOutputPath() local
4960 BaseName = ExternalPath; in GetNamedOutputPath()
4962 BaseName = BasePath; in GetNamedOutputPath()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
DASTMatchers.h3195 std::string, BaseName, 1) {
3196 if (BaseName.empty())
3199 const auto M = isDerivedFrom(hasName(BaseName));
3268 std::string, BaseName, 1) {
3269 if (BaseName.empty())
3272 const auto M = isSameOrDerivedFrom(hasName(BaseName));
3320 std::string, BaseName, 1) {
3321 if (BaseName.empty())
3323 const auto M = isDirectlyDerivedFrom(hasName(BaseName));
3722 AST_MATCHER_P(ObjCMessageExpr, hasSelector, std::string, BaseName) { in AST_MATCHER_P() argument
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-profdata/
Dllvm-profdata.cpp1025 StringRef BaseName; member
1653 FuncOverlap.BaseName = Match->second->getNameWithContext(); in computeSampleProfileOverlap()
1654 assert(BaseStats.count(FuncOverlap.BaseName) && in computeSampleProfileOverlap()
1657 FuncOverlap.BaseSample = BaseStats[FuncOverlap.BaseName].SampleSum; in computeSampleProfileOverlap()
1686 FuncOverlap.BaseName.find(FuncFilter.NameFilter) != in computeSampleProfileOverlap()
1687 FuncOverlap.BaseName.npos)) { in computeSampleProfileOverlap()
1749 ProfOverlap.BaseName = StringRef(BaseFilename); in initializeSampleProfileOverlap()
1815 OS << "Profile overlap infomation for base_profile: " << ProfOverlap.BaseName in dumpProgramSummary()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Driver/
DDriver.h545 std::string GetClPchPath(Compilation &C, StringRef BaseName) const;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaDeclAttr.cpp6056 StringRef ContextName, BaseName, Parameters; in validateSwiftFunctionName() local
6058 std::tie(BaseName, Parameters) = Name.split('('); in validateSwiftFunctionName()
6062 std::tie(ContextName, BaseName) = BaseName.split('.'); in validateSwiftFunctionName()
6063 if (BaseName.empty()) { in validateSwiftFunctionName()
6064 BaseName = ContextName; in validateSwiftFunctionName()
6074 if (!isValidIdentifier(BaseName) || BaseName == "_") { in validateSwiftFunctionName()
6080 bool IsSubscript = BaseName == "subscript"; in validateSwiftFunctionName()
6162 SwiftParamCount == 1 && BaseName == "init" && CurrentParam != "_"; in validateSwiftFunctionName()
6287 StringRef ContextName, BaseName; in DiagnoseSwiftName() local
6289 std::tie(ContextName, BaseName) = Name.split('.'); in DiagnoseSwiftName()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
DAArch64InstrFormats.td9646 multiclass SIMDLdStAliases<string BaseName, string asm, string layout, string Count,
9653 (!cast<Instruction>(BaseName # Count # "v" # layout # "_POST")
9663 (!cast<Instruction>(BaseName # Count # "v" # layout # "_POST")
9673 (!cast<Instruction>(BaseName # Count # "v" # layout)
9682 (!cast<Instruction>(BaseName # Count # "v" # layout # "_POST")
9688 multiclass BaseSIMDLdN<string BaseName, string Count, string asm, string veclist,
9751 defm : SIMDLdStAliases<BaseName, asm, "16b", Count, Offset128, 128>;
9752 defm : SIMDLdStAliases<BaseName, asm, "8h", Count, Offset128, 128>;
9753 defm : SIMDLdStAliases<BaseName, asm, "4s", Count, Offset128, 128>;
9754 defm : SIMDLdStAliases<BaseName, asm, "2d", Count, Offset128, 128>;
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
DModule.h347 std::string getUniqueIntrinsicName(StringRef BaseName, Intrinsic::ID Id,
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DItaniumMangle.cpp3441 const char *BaseName = nullptr; in mangleNeonVectorType() local
3445 BaseName = "__simd64_"; in mangleNeonVectorType()
3448 BaseName = "__simd128_"; in mangleNeonVectorType()
3450 Out << strlen(BaseName) + strlen(EltName); in mangleNeonVectorType()
3451 Out << BaseName << EltName; in mangleNeonVectorType()

12