/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | MoveChecker.cpp | 82 bool IsLocal; member 130 (Aggressiveness >= AK_KnownsAndLocals && OK.IsLocal) || in shouldBeTracked() 141 (Aggressiveness >= AK_KnownsAndLocals && OK.IsLocal) || in shouldWarnAbout() 557 bool IsLocal = in classifyObject() local 562 return { IsLocal, SK_NonStd }; in classifyObject() 565 return { IsLocal, SK_SmartPtr }; in classifyObject() 568 return { IsLocal, SK_Safe }; in classifyObject() 570 return { IsLocal, SK_Unsafe }; in classifyObject()
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | FileSystem.cpp | 162 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/CSKY/ |
H A D | CSKYISelLowering.h | 132 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, bool IsLocal = true) const { 140 Flag = IsLocal ? CSKYII::MO_GOTOFF 153 if (IsLocal)
|
H A D | CSKYISelLowering.cpp | 652 bool IsLocal = getTargetMachine().shouldAssumeDSOLocal(GV); in LowerCall() local 656 Ops.push_back(getAddr<GlobalAddressSDNode, true>(S, DAG, IsLocal)); in LowerCall() 664 bool IsLocal = getTargetMachine().shouldAssumeDSOLocal(nullptr); in LowerCall() local 668 Ops.push_back(getAddr<ExternalSymbolSDNode, true>(S, DAG, IsLocal)); in LowerCall() 1154 bool IsLocal = getTargetMachine().shouldAssumeDSOLocal(GV); in LowerGlobalAddress() local 1155 SDValue Addr = getAddr<GlobalAddressSDNode, false>(N, DAG, IsLocal); in LowerGlobalAddress()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ |
H A D | TargetMachine.cpp | 242 bool IsLocal = shouldAssumeDSOLocal(GV); in getTLSModel() local 246 if (IsLocal) in getTLSModel() 251 if (IsLocal) in getTLSModel()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
H A D | FileSystem.h | 129 bool IsLocal(const FileSpec &file_spec) const; 130 bool IsLocal(const llvm::Twine &path) const;
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | InlineSizeEstimatorAnalysis.cpp | 56 IsLocal, enumerator 190 FF[NamedFeatureIndex::IsLocal] = F.hasLocalLinkage(); in getFunctionFeatures()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | RegAllocEvictionAdvisor.cpp | 193 bool IsLocal = VirtReg.empty() || LIS->intervalIsInOneMBB(VirtReg); in canEvictInterferenceBasedOnCost() local 266 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) && in canEvictInterferenceBasedOnCost()
|
H A D | MLRegallocEvictAdvisor.cpp |
|
H A D | MLRegAllocEvictAdvisor.cpp | 610 const bool IsLocal = LIS->intervalIsInOneMBB(VirtReg); in loadInterferenceFeatures() local 655 LocalIntfs += (IsLocal && LIS->intervalIsInOneMBB(*Intf) && in loadInterferenceFeatures()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | ModuleSummaryIndexYAML.h | 140 bool NotEligibleToImport, Live, IsLocal, CanAutoHide; 185 io.mapOptional("Local", summary.IsLocal); 231 FSum.NotEligibleToImport, FSum.Live, FSum.IsLocal,
|
H A D | ModuleSummaryIndex.h | 509 bool NotEligibleToImport, bool Live, bool IsLocal, 513 DSOLocal(IsLocal), CanAutoHide(CanAutoHide),
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonTargetObjectFile.cpp | 234 bool IsLocal = GVar->hasLocalLinkage(); in isGlobalInSmallSection() local 235 if (!StaticsInSData && IsLocal) { in isGlobalInSmallSection()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldELF.h | 130 bool IsLocal = false) const;
|
H A D | RuntimeDyldELF.cpp | 1097 bool IsLocal) const { in getMatchingLoRelocation() 1100 if (IsLocal) in getMatchingLoRelocation() 1106 if (IsLocal) in getMatchingLoRelocation()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
H A D | VEISelLowering.h | 278 StringRef Symbol, const DebugLoc &DL, bool IsLocal,
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFAcceleratorTable.cpp | 1032 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/Support/Windows/ |
H A D | Path.inc | 443 bool IsLocal; 444 if (std::error_code EC = is_local_internal(FinalPath, IsLocal)) 447 if (!IsLocal) 989 bool IsLocal = false; 994 is_local_internal(FinalPath, IsLocal); 996 DoFlush = !IsLocal;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
H A D | LoongArchISelLowering.h | 278 bool IsLocal = true) const;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/GISel/ |
H A D | RISCVInstructionSelector.cpp | 73 MachineRegisterInfo &MRI, bool IsLocal = true, 986 bool IsLocal, in selectAddr() argument 1003 if (IsLocal && !Subtarget->allowTaggedGlobals()) { in selectAddr()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | StatepointLowering.cpp | 915 bool IsLocal = (Relocate->getParent() == StatepointInstr->getParent()); in LowerAsSTATEPOINT() local 918 if (IsLocal && LowerAsVReg.count(SDV)) { in LowerAsSTATEPOINT()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | HWAddressSanitizer.cpp | 1823 bool IsLocal = P.first && (!isa<GlobalValue>(P.first) || in instrumentPersonalityFunctions() local 1826 IsLocal ? GlobalValue::InternalLinkage in instrumentPersonalityFunctions() 1829 if (!IsLocal) { in instrumentPersonalityFunctions()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFAcceleratorTable.h | 710 bool IsLocal; variable
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/ |
H A D | HexagonAsmParser.cpp | 123 bool ParseDirectiveComm(bool IsLocal, SMLoc L); 789 bool HexagonAsmParser::ParseDirectiveComm(bool IsLocal, SMLoc Loc) { in ParseDirectiveComm() argument 858 if (IsLocal) { in ParseDirectiveComm()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
H A D | AsmParser.cpp | 659 bool parseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm" 5032 bool AsmParser::parseDirectiveComm(bool IsLocal) { in parseDirectiveComm() argument 5061 if (IsLocal && LCOMM == LCOMM::NoAlignment) in parseDirectiveComm() 5065 if ((!IsLocal && Lexer.getMAI().getCOMMDirectiveAlignmentIsInBytes()) || in parseDirectiveComm() 5066 (IsLocal && LCOMM == LCOMM::ByteAlignment)) { in parseDirectiveComm() 5086 if (IsLocal) { in parseDirectiveComm()
|