Home
last modified time | relevance | path

Searched refs:Resolved (Results 1 – 25 of 45) sorted by relevance

12

/freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.cpp52 LookupKind::Static, LinkOrder, InternedSymbols, SymbolState::Resolved, in lookup()
226 std::map<StringRef, JITEvaluatedSymbol> Resolved, in onObjLoad() argument
247 auto I = Resolved.find(*Name); in onObjLoad()
251 if (I == Resolved.end() || InternalSymbols.count(*Name) || in onObjLoad()
272 auto I = Resolved.find(*Name); in onObjLoad()
276 if (I != Resolved.end() || !R.getSymbols().count(ES.intern(*Name))) in onObjLoad()
296 auto J = Resolved.find(*TargetName); in onObjLoad()
297 if (J == Resolved.end()) in onObjLoad()
301 Resolved[*Name] = J->second; in onObjLoad()
305 for (auto &KV : Resolved) { in onObjLoad()
[all...]
H A DExecutionUtils.cpp536 auto Resolved = in getTargetPointerSize()
537 ES.lookup(LinkOrder, LookupSet, LookupKind::DLSym, SymbolState::Resolved); in getTargetPointerSize()
538 if (!Resolved) in getTargetPointerSize()
539 return Resolved.takeError(); in getTargetPointerSize()
541 auto G = createStubsGraph(*Resolved); in getTargetPointerSize()
572 DLLImportDefinitionGenerator::createStubsGraph(const SymbolMap &Resolved) { in createStubsGraph()
587 for (auto &KV : Resolved) { in createStubsGraph()
524 auto Resolved = tryToGenerate() local
560 createStubsGraph(const SymbolMap & Resolved) createStubsGraph() argument
H A DCore.cpp184 assert(RequiredState >= SymbolState::Resolved && in notifySymbolMetRequiredState()
490 QuerySymbols, SymbolState::Resolved, std::move(OnComplete), in extractFlags()
895 const SymbolMap &Resolved) { in addDependencies()
914 Worklist.reserve(Resolved.size()); in addDependencies()
917 for (const auto &KV : Resolved) { in addDependencies()
939 "Resolved flags should match the declared flags"); in addDependencies()
961 // Resolved symbols can not be weak: discard the weak flag. in resolve()
965 SymI->second.setState(SymbolState::Resolved); in resolve()
972 for (auto &Q : MI.takeQueriesMeeting(SymbolState::Resolved)) { in resolve()
2002 if (Entry.getState() < SymbolState::Resolved) { in removeJITDylibs()
955 resolve(MaterializationResponsibility & MR,const SymbolMap & Resolved) resolve() argument
[all...]
H A DDebugUtils.cpp293 case SymbolState::Resolved: in operator <<()
294 return OS << "Resolved"; in operator <<()
/freebsd-src/contrib/llvm-project/clang/lib/AST/
H A DCommentLexer.cpp42 char *Resolved = Allocator.Allocate<char>(UNI_MAX_UTF8_BYTES_PER_CODE_POINT); in convertCodePointToUTF8() local
43 char *ResolvedPtr = Resolved; in convertCodePointToUTF8()
45 return StringRef(Resolved, ResolvedPtr - Resolved); in convertCodePointToUTF8()
611 StringRef Resolved; in lexHTMLCharacterReference() local
613 Resolved = resolveHTMLNamedCharacterReference(Name); in lexHTMLCharacterReference()
615 Resolved = resolveHTMLDecimalCharacterReference(Name); in lexHTMLCharacterReference()
617 Resolved = resolveHTMLHexCharacterReference(Name); in lexHTMLCharacterReference()
619 if (Resolved.empty()) { in lexHTMLCharacterReference()
624 T.setText(Resolved); in lexHTMLCharacterReference()
/freebsd-src/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp324 BlockNode Resolved = Working[Succ.Index].getResolvedNode(); in addToDist() local
330 if (!isLoopHeader(Resolved)) in addToDist()
332 if (Resolved != Succ) in addToDist()
333 dbgs() << ", resolved = " << getBlockName(Resolved); in addToDist()
339 if (isLoopHeader(Resolved)) { in addToDist()
341 Dist.addBackedge(Resolved, Weight); in addToDist()
345 if (Working[Resolved.Index].getContainingLoop() != OuterLoop) { in addToDist()
347 Dist.addExit(Resolved, Weight); in addToDist()
351 if (Resolved < Pred) { in addToDist()
365 assert(OuterLoop && OuterLoop->isIrreducible() && !isLoopHeader(Resolved) in addToDist()
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmBackend.cpp122 bool Resolved, uint64_t Value, in fixupNeedsRelaxationAdvanced()
125 if (!Resolved) in fixupNeedsRelaxationAdvanced()
119 fixupNeedsRelaxationAdvanced(const MCFixup & Fixup,bool Resolved,uint64_t Value,const MCRelaxableFragment * DF,const MCAsmLayout & Layout,const bool WasForced) const fixupNeedsRelaxationAdvanced() argument
/freebsd-src/contrib/llvm-project/lldb/source/Commands/
H A DCommandCompletions.cpp363 llvm::SmallString<256> Resolved; in DiskFilesOrDirectories()
364 if (!Resolver.ResolveExact(Username, Resolved)) { in DiskFilesOrDirectories()
372 Resolved = S.getKey(); in DiskFilesOrDirectories()
373 path::append(Resolved, path::get_separator()); in DiskFilesOrDirectories()
374 request.AddCompletion(Resolved, "", CompletionMode::Partial); in DiskFilesOrDirectories()
393 Storage = Resolved; in DiskFilesOrDirectories()
348 llvm::SmallString<256> Resolved; DiskFilesOrDirectories() local
/freebsd-src/sys/contrib/dev/acpica/components/dispatcher/
H A Ddspkginit.c562 if (Element->Reference.Resolved) in AcpiDsResolvePackageElement()
642 Element->Reference.Resolved = TRUE; in AcpiDsResolvePackageElement()
H A Ddsobject.c259 ObjDesc->Reference.Resolved = TRUE; in AcpiDsBuildInternalObject()
270 ObjDesc->Reference.Resolved = FALSE; in AcpiDsBuildInternalObject()
/freebsd-src/contrib/llvm-project/llvm/lib/Target/CSKY/MCTargetDesc/
H A DCSKYAsmBackend.h46 const MCFixup &Fixup, bool Resolved,
H A DCSKYAsmBackend.cpp175 bool Resolved, uint64_t Value, in fixupNeedsRelaxationAdvanced() argument
179 // Resolved could be always false when shouldForceRelocation return true. in fixupNeedsRelaxationAdvanced()
182 if (!Resolved && !WasForced) in fixupNeedsRelaxationAdvanced()
/freebsd-src/contrib/ntp/
H A DNEWS569 Date Resolved: Stable (4.2.8p11) 27 Feb 2018
607 Date Resolved: Stable (4.2.8p11) 27 Feb 2018
637 Date Resolved: Stable (4.2.8p11) 27 Feb 2018
641 4.3.0 up to, but not including 4.3.92. Resolved in 4.2.8p11.
676 Date Resolved: 27 Feb 2018
700 Date Resolved: 27 Feb 2018
724 Date Resolved: Stable (4.2.8p11) 27 Feb 2018
727 4.3.0 up to, but not including 4.3.92. Resolved in 4.2.8p11.
892 Date Resolved: 21 Mar 2017
912 Date Resolved: 21 Mar 2017
[all …]
H A DREADME.patches29 If these patches are for a bugzilla issue, mark the issue as Resolved/READY
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.h133 std::map<StringRef, JITEvaluatedSymbol> Resolved,
H A DExecutionUtils.h358 createStubsGraph(const SymbolMap &Resolved);
/freebsd-src/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.h72 const MCFixup &Fixup, bool Resolved, in fixupNeedsRelaxation()
H A DRISCVAsmBackend.cpp142 const MCAssembler &Asm, const MCFixup &Fixup, bool Resolved, uint64_t Value, in fixupNeedsRelaxationAdvanced()
151 // Resolved could be always false when shouldForceRelocation return true. in fixupNeedsRelaxationAdvanced()
154 if (!Resolved && !WasForced) in fixupNeedsRelaxationAdvanced()
143 fixupNeedsRelaxationAdvanced(const MCFixup & Fixup,bool Resolved,uint64_t Value,const MCRelaxableFragment * DF,const MCAsmLayout & Layout,const bool WasForced) const fixupNeedsRelaxationAdvanced() argument
/freebsd-src/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/
H A DMSP430AsmBackend.cpp51 const MCFixup &Fixup, bool Resolved, in fixupNeedsRelaxation()
56 fixupNeedsRelaxationAdvanced(const MCFixup & Fixup,bool Resolved,uint64_t Value,const MCRelaxableFragment * DF,const MCAsmLayout & Layout,const bool WasForced) const fixupNeedsRelaxationAdvanced() argument
/freebsd-src/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAsmBackend.h161 const MCFixup &Fixup, bool Resolved,
166 /// Simple predicate for targets where !Resolved implies requiring relaxation in mayNeedRelaxation()
/freebsd-src/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearch.h109 unsigned Resolved : 1;
143 Resolved(false), IndexHeaderMapHeader(false), IsValid(false) {}
/freebsd-src/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp571 const MCFixup &Fixup, bool Resolved, in fixupNeedsRelaxationAdvanced() argument
585 if (!Resolved) { in fixupNeedsRelaxationAdvanced()
/freebsd-src/sys/contrib/dev/acpica/include/
H A Dacobject.h553 UINT8 Resolved; /* Reference has been resolved to a value */ member
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIFixSGPRCopies.cpp721 bool Resolved = false; in runOnMachineFunction()
734 Resolved = true; in runOnMachineFunction()
742 if (!Resolved) { in runOnMachineFunction()
723 bool Resolved = false; runOnMachineFunction() local
/freebsd-src/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h2244 bool Resolved; member
2246 MappedValue() : V(nullptr), Resolved(false) {} in MappedValue()
2247 MappedValue(Init *V, bool Resolved) : V(V), Resolved(Resolved) {} in MappedValue()

12