Home
last modified time | relevance | path

Searched refs:IsLocal (Results 1 – 25 of 33) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMCResourceInfo.cpp28 MCContext &OutContext, bool IsLocal) { in getSymbol() argument
29 auto GOCS = [FuncName, &OutContext, IsLocal](StringRef Suffix) { in getSymbol()
31 IsLocal ? OutContext.getAsmInfo()->getPrivateGlobalPrefix() : ""; in getSymbol()
60 MCContext &Ctx, bool IsLocal) { in getSymRefExpr() argument
61 return MCSymbolRefExpr::create(getSymbol(FuncName, RIK, Ctx, IsLocal), Ctx); in getSymRefExpr()
185 bool IsLocal = MF.getFunction().hasLocalLinkage(); in assignResourceInfoExpr() local
190 MCSymbol *Sym = getSymbol(FnSym->getName(), RIK, OutContext, IsLocal); in assignResourceInfoExpr()
247 bool IsLocal = MF.getFunction().hasLocalLinkage(); in gatherResourceInfo() local
278 getSymbol(FnSym->getName(), RIK, OutContext, IsLocal); in gatherResourceInfo()
297 getSymbol(FnSym->getName(), RIK_PrivateSegSize, OutContext, IsLocal); in gatherResourceInfo()
[all …]
H A DAMDGPUAsmPrinter.cpp367 bool IsLocal = F.hasLocalLinkage(); in validateMCResourceInfo() local
381 FnSym->getName(), RIK::RIK_PrivateSegSize, OutContext, IsLocal); in validateMCResourceInfo()
394 RI.getSymbol(FnSym->getName(), RIK::RIK_NumSGPR, OutContext, IsLocal); in validateMCResourceInfo()
411 RI.getSymbol(FnSym->getName(), RIK::RIK_UsesVCC, OutContext, IsLocal); in validateMCResourceInfo()
413 FnSym->getName(), RIK::RIK_UsesFlatScratch, OutContext, IsLocal); in validateMCResourceInfo()
440 RI.getSymbol(FnSym->getName(), RIK::RIK_NumVGPR, OutContext, IsLocal); in validateMCResourceInfo()
442 RI.getSymbol(FnSym->getName(), RIK::RIK_NumAGPR, OutContext, IsLocal); in validateMCResourceInfo()
664 bool IsLocal = MF.getFunction().hasLocalLinkage(); in runOnMachineFunction() local
709 IsLocal), in runOnMachineFunction()
711 IsLocal), in runOnMachineFunction()
[all …]
H A DAMDGPUMCResourceInfo.h80 MCContext &OutContext, bool IsLocal);
82 MCContext &Ctx, bool IsLocal);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMoveChecker.cpp82 bool IsLocal; member
130 (Aggressiveness >= AK_KnownsAndLocals && OK.IsLocal) || in shouldBeTracked()
141 (Aggressiveness >= AK_KnownsAndLocals && OK.IsLocal) || in shouldWarnAbout()
560 bool IsLocal = in classifyObject() local
565 return { IsLocal, SK_NonStd }; in classifyObject()
568 return { IsLocal, SK_SmartPtr }; in classifyObject()
571 return { IsLocal, SK_Safe }; in classifyObject()
573 return { IsLocal, SK_Unsafe }; in classifyObject()
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYISelLowering.h113 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, bool IsLocal = true) const {
121 Flag = IsLocal ? CSKYII::MO_GOTOFF
134 if (IsLocal)
H A DCSKYISelLowering.cpp653 bool IsLocal = getTargetMachine().shouldAssumeDSOLocal(GV); in LowerCall() local
657 Ops.push_back(getAddr<GlobalAddressSDNode, true>(S, DAG, IsLocal)); in LowerCall()
665 bool IsLocal = getTargetMachine().shouldAssumeDSOLocal(nullptr); in LowerCall() local
669 Ops.push_back(getAddr<ExternalSymbolSDNode, true>(S, DAG, IsLocal)); in LowerCall()
1128 bool IsLocal = getTargetMachine().shouldAssumeDSOLocal(GV); in LowerGlobalAddress() local
1129 SDValue Addr = getAddr<GlobalAddressSDNode, false>(N, DAG, IsLocal); in LowerGlobalAddress()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DFileSystem.cpp162 bool FileSystem::IsLocal(const Twine &path) const { in IsLocal() function in FileSystem
168 bool FileSystem::IsLocal(const FileSpec &file_spec) const { in IsLocal() function in FileSystem
169 return file_spec && IsLocal(file_spec.GetPath()); in IsLocal()
286 const bool is_volatile = !IsLocal(path); in CreateWritableDataBuffer()
298 const bool is_volatile = !IsLocal(path); in CreateDataBuffer()
/freebsd/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachine.cpp268 bool IsLocal = shouldAssumeDSOLocal(GV); in getTLSModel() local
272 if (IsLocal) in getTLSModel()
277 if (IsLocal) in getTLSModel()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DFileSystem.h129 bool IsLocal(const FileSpec &file_spec) const;
130 bool IsLocal(const llvm::Twine &path) const;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineSizeEstimatorAnalysis.cpp56 IsLocal, enumerator
191 FF[NamedFeatureIndex::IsLocal] = F.hasLocalLinkage(); in getFunctionFeatures()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocEvictionAdvisor.cpp248 bool IsLocal = VirtReg.empty() || LIS->intervalIsInOneMBB(VirtReg); in canEvictInterferenceBasedOnCost() local
321 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) && in canEvictInterferenceBasedOnCost()
H A DMLRegallocEvictAdvisor.cpp
H A DMLRegAllocEvictAdvisor.cpp677 const bool IsLocal = LIS->intervalIsInOneMBB(VirtReg); in loadInterferenceFeatures() local
732 LocalIntfs += (IsLocal && LIS->intervalIsInOneMBB(*Intf) && in loadInterferenceFeatures()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndexYAML.h143 bool NotEligibleToImport, Live, IsLocal, CanAutoHide;
191 io.mapOptional("Local", summary.IsLocal);
229 GVSum.NotEligibleToImport, GVSum.Live, GVSum.IsLocal,
H A DModuleSummaryIndex.h513 bool NotEligibleToImport, bool Live, bool IsLocal,
517 DSOLocal(IsLocal), CanAutoHide(CanAutoHide),
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp234 bool IsLocal = GVar->hasLocalLinkage(); in isGlobalInSmallSection() local
235 if (!StaticsInSData && IsLocal) { in isGlobalInSmallSection()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.h146 bool IsLocal = false) const;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp1032 if (IsLocal || CurrentIndex == &CurrentIndex->Section.NameIndices.back()) { in next()
1044 : CurrentIndex(AccelTable.NameIndices.begin()), IsLocal(false), in ValueIterator()
1051 : CurrentIndex(&NI), IsLocal(true), Key(std::string(Key)) { in ValueIterator()
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEISelLowering.h279 StringRef Symbol, const DebugLoc &DL, bool IsLocal,
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc444 bool IsLocal;
445 if (std::error_code EC = is_local_internal(FinalPath, IsLocal))
448 if (!IsLocal)
990 bool IsLocal = false;
995 is_local_internal(FinalPath, IsLocal);
997 DoFlush = !IsLocal;
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/GISel/
H A DRISCVInstructionSelector.cpp88 bool selectAddr(MachineInstr &MI, MachineIRBuilder &MIB, bool IsLocal = true,
1099 MachineIRBuilder &MIB, bool IsLocal, in selectAddr() argument
1116 if (IsLocal && !Subtarget->allowTaggedGlobals()) { in selectAddr()
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.h345 bool IsLocal = true) const;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.cpp916 bool IsLocal = (Relocate->getParent() == StatepointInstr->getParent()); in LowerAsSTATEPOINT() local
920 if (IsLocal) { in LowerAsSTATEPOINT()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp1844 bool IsLocal = P.first && (!isa<GlobalValue>(P.first) || in instrumentPersonalityFunctions() local
1847 IsLocal ? GlobalValue::InternalLinkage in instrumentPersonalityFunctions()
1856 if (!IsLocal) { in instrumentPersonalityFunctions()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp125 bool ParseDirectiveComm(bool IsLocal, SMLoc L);
791 bool HexagonAsmParser::ParseDirectiveComm(bool IsLocal, SMLoc Loc) { in ParseDirectiveComm() argument
860 if (IsLocal) { in ParseDirectiveComm()

12