Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/llvm/lib/Target/
H A DTargetMachine.cpp158 bool IsLocal = shouldAssumeDSOLocal(*GV->getParent(), GV); in getTLSModel() local
162 if (IsLocal) in getTLSModel()
167 if (IsLocal) in getTLSModel()
/openbsd-src/gnu/llvm/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()
555 bool IsLocal = isa_and_nonnull<VarRegion>(MR) && in classifyObject() local
559 return { IsLocal, SK_NonStd }; in classifyObject()
562 return { IsLocal, SK_SmartPtr }; in classifyObject()
565 return { IsLocal, SK_Safe }; in classifyObject()
567 return { IsLocal, SK_Unsafe }; in classifyObject()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndexInclusionStack.cpp22 void getInclusions(bool IsLocal, unsigned n, CXTranslationUnit TU, in getInclusions() argument
33 IsLocal ? SM.getLocalSLocEntry(i) : SM.getLoadedSLocEntry(i, &Invalid); in getInclusions()
/openbsd-src/gnu/llvm/llvm/lib/Target/CSKY/
H A DCSKYISelLowering.h132 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, bool IsLocal = true) const {
140 Flag = IsLocal ? CSKYII::MO_GOTOFF
153 if (IsLocal)
H A DCSKYISelLowering.cpp648 bool IsLocal = in LowerCall() local
653 Ops.push_back(getAddr<GlobalAddressSDNode, true>(S, DAG, IsLocal)); in LowerCall()
661 bool IsLocal = getTargetMachine().shouldAssumeDSOLocal( in LowerCall() local
666 Ops.push_back(getAddr<ExternalSymbolSDNode, true>(S, DAG, IsLocal)); in LowerCall()
1152 bool IsLocal = getTargetMachine().shouldAssumeDSOLocal(*GV->getParent(), GV); in LowerGlobalAddress() local
1153 SDValue Addr = getAddr<GlobalAddressSDNode, false>(N, DAG, IsLocal); in LowerGlobalAddress()
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DFileSystem.cpp174 bool FileSystem::IsLocal(const Twine &path) const { in IsLocal() function in FileSystem
180 bool FileSystem::IsLocal(const FileSpec &file_spec) const { in IsLocal() function in FileSystem
181 return file_spec && IsLocal(file_spec.GetPath()); in IsLocal()
299 const bool is_volatile = !IsLocal(path); in CreateWritableDataBuffer()
311 const bool is_volatile = !IsLocal(path); in CreateDataBuffer()
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DFileSystem.h119 bool IsLocal(const FileSpec &file_spec) const;
120 bool IsLocal(const llvm::Twine &path) const;
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DRegAllocEvictionAdvisor.cpp192 bool IsLocal = VirtReg.empty() || LIS->intervalIsInOneMBB(VirtReg); in canEvictInterferenceBasedOnCost() local
265 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) && in canEvictInterferenceBasedOnCost()
H A DMLRegallocEvictAdvisor.cpp589 const bool IsLocal = LIS->intervalIsInOneMBB(VirtReg); in loadInterferenceFeatures() local
634 LocalIntfs += (IsLocal && LIS->intervalIsInOneMBB(*Intf) && in loadInterferenceFeatures()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DInlineSizeEstimatorAnalysis.cpp57 IsLocal, enumerator
191 FF[NamedFeatureIndex::IsLocal] = F.hasLocalLinkage(); in getFunctionFeatures()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DModuleSummaryIndexYAML.h140 bool NotEligibleToImport, Live, IsLocal, CanAutoHide;
184 io.mapOptional("Local", summary.IsLocal);
229 FSum.NotEligibleToImport, FSum.Live, FSum.IsLocal,
H A DModuleSummaryIndex.h412 bool NotEligibleToImport, bool Live, bool IsLocal,
416 DSOLocal(IsLocal), CanAutoHide(CanAutoHide) {}
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp234 bool IsLocal = GVar->hasLocalLinkage(); in isGlobalInSmallSection() local
235 if (!StaticsInSData && IsLocal) { in isGlobalInSmallSection()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.h130 bool IsLocal = false) const;
H A DRuntimeDyldELF.cpp1093 bool IsLocal) const { in getMatchingLoRelocation()
1096 if (IsLocal) in getMatchingLoRelocation()
1102 if (IsLocal) in getMatchingLoRelocation()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp865 if (IsLocal || CurrentIndex == &CurrentIndex->Section.NameIndices.back()) { in next()
877 : CurrentIndex(AccelTable.NameIndices.begin()), IsLocal(false), in ValueIterator()
884 : CurrentIndex(&NI), IsLocal(true), Key(std::string(Key)) { in ValueIterator()
/openbsd-src/gnu/llvm/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.h201 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, bool IsLocal = true) const;
/openbsd-src/gnu/llvm/llvm/lib/Target/VE/
H A DVEISelLowering.h188 StringRef Symbol, const DebugLoc &DL, bool IsLocal,
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.cpp912 bool IsLocal = (Relocate->getParent() == StatepointInstr->getParent()); in LowerAsSTATEPOINT() local
915 if (IsLocal && LowerAsVReg.count(SDV)) { in LowerAsSTATEPOINT()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h493 bool IsLocal; variable
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp1651 bool IsLocal = P.first && (!isa<GlobalValue>(P.first) || in instrumentPersonalityFunctions() local
1654 IsLocal ? GlobalValue::InternalLinkage in instrumentPersonalityFunctions()
1657 if (!IsLocal) { in instrumentPersonalityFunctions()
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp123 bool ParseDirectiveComm(bool IsLocal, SMLoc L);
733 bool HexagonAsmParser::ParseDirectiveComm(bool IsLocal, SMLoc Loc) { in ParseDirectiveComm() argument
802 if (IsLocal) { in ParseDirectiveComm()
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h646 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, bool IsLocal = true) const;
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DAsmParser.cpp656 bool parseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
5003 bool AsmParser::parseDirectiveComm(bool IsLocal) { in parseDirectiveComm() argument
5032 if (IsLocal && LCOMM == LCOMM::NoAlignment) in parseDirectiveComm()
5036 if ((!IsLocal && Lexer.getMAI().getCOMMDirectiveAlignmentIsInBytes()) || in parseDirectiveComm()
5037 (IsLocal && LCOMM == LCOMM::ByteAlignment)) { in parseDirectiveComm()
5057 if (IsLocal) { in parseDirectiveComm()
/openbsd-src/gnu/llvm/llvm/lib/Support/Windows/
H A DPath.inc442 bool IsLocal;
443 if (std::error_code EC = is_local_internal(FinalPath, IsLocal))
446 if (!IsLocal)

12