| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/ |
| H A D | RTDyldObjectLinkingLayer.cpp | 54 SymbolState::Resolved, std::move(OnResolvedWithUnwrap), in lookup() 225 std::map<StringRef, JITEvaluatedSymbol> Resolved, in onObjLoad() argument 246 auto I = Resolved.find(*Name); in onObjLoad() 250 if (I == Resolved.end() || InternalSymbols.count(*Name) || in onObjLoad() 271 auto I = Resolved.find(*Name); in onObjLoad() 275 if (I != Resolved.end() || !R.getSymbols().count(ES.intern(*Name))) in onObjLoad() 295 auto J = Resolved.find(*TargetName); in onObjLoad() 296 if (J == Resolved.end()) in onObjLoad() 300 Resolved[*Name] = J->second; in onObjLoad() 304 for (auto &KV : Resolved) { in onObjLoad()
|
| H A D | ExecutionUtils.cpp | 472 auto Resolved = in tryToGenerate() local 473 ES.lookup(LinkOrder, LookupSet, LookupKind::DLSym, SymbolState::Resolved); in tryToGenerate() 474 if (!Resolved) in tryToGenerate() 475 return Resolved.takeError(); in tryToGenerate() 477 auto G = createStubsGraph(*Resolved); in tryToGenerate() 508 DLLImportDefinitionGenerator::createStubsGraph(const SymbolMap &Resolved) { in createStubsGraph() argument 523 for (auto &KV : Resolved) { in createStubsGraph()
|
| H A D | Core.cpp | 163 assert(RequiredState >= SymbolState::Resolved && in AsynchronousSymbolQuery() 471 QuerySymbols, SymbolState::Resolved, std::move(OnComplete), in materialize() 933 const SymbolMap &Resolved) { in resolve() argument 952 Worklist.reserve(Resolved.size()); in resolve() 955 for (const auto &KV : Resolved) { in resolve() 1004 SymI->second.setState(SymbolState::Resolved); in resolve() 1011 for (auto &Q : MI.takeQueriesMeeting(SymbolState::Resolved)) { in resolve() 1082 SymEntry.getState() == SymbolState::Resolved) && in emit()
|
| H A D | DebugUtils.cpp | 290 case SymbolState::Resolved: in operator <<()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | CommentLexer.cpp | 42 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()
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | BlockFrequencyInfoImpl.cpp | 323 BlockNode Resolved = Working[Succ.Index].getResolvedNode(); in addToDist() local 329 if (!isLoopHeader(Resolved)) in addToDist() 331 if (Resolved != Succ) in addToDist() 332 dbgs() << ", resolved = " << getBlockName(Resolved); in addToDist() 338 if (isLoopHeader(Resolved)) { in addToDist() 340 Dist.addBackedge(Resolved, Weight); in addToDist() 344 if (Working[Resolved.Index].getContainingLoop() != OuterLoop) { in addToDist() 346 Dist.addExit(Resolved, Weight); in addToDist() 350 if (Resolved < Pred) { in addToDist() 364 assert(OuterLoop && OuterLoop->isIrreducible() && !isLoopHeader(Resolved) && in addToDist() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/ |
| H A D | MCAsmBackend.cpp | 111 const MCFixup &Fixup, bool Resolved, uint64_t Value, in fixupNeedsRelaxationAdvanced() argument 114 if (!Resolved) in fixupNeedsRelaxationAdvanced()
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandCompletions.cpp | 345 llvm::SmallString<256> Resolved; in DiskFilesOrDirectories() local 346 if (!Resolver.ResolveExact(Username, Resolved)) { in DiskFilesOrDirectories() 354 Resolved = S.getKey(); in DiskFilesOrDirectories() 355 path::append(Resolved, path::get_separator()); in DiskFilesOrDirectories() 356 request.AddCompletion(Resolved, "", CompletionMode::Partial); in DiskFilesOrDirectories() 375 Storage = Resolved; in DiskFilesOrDirectories()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/CSKY/MCTargetDesc/ |
| H A D | CSKYAsmBackend.h | 46 bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved,
|
| H A D | CSKYAsmBackend.cpp | 175 bool Resolved, uint64_t Value, in fixupNeedsRelaxationAdvanced() argument 183 if (!Resolved && !WasForced) in fixupNeedsRelaxationAdvanced()
|
| /openbsd-src/gnu/usr.bin/perl/t/lib/warnings/ |
| H A D | regcomp | 21 Non-octal character '8' terminates \o early. Resolved as "\o{123}" in regex; marked by <-- HERE in… 22 Non-octal character '8' terminates \o early. Resolved as "\o{654}" in regex; marked by <-- HERE in…
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVAsmBackend.h | 73 bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved,
|
| H A D | RISCVAsmBackend.cpp | 141 bool Resolved, in fixupNeedsRelaxationAdvanced() argument 150 if (!Resolved && !WasForced) in fixupNeedsRelaxationAdvanced()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | RTDyldObjectLinkingLayer.h | 134 std::map<StringRef, JITEvaluatedSymbol> Resolved,
|
| H A D | ExecutionUtils.h | 342 createStubsGraph(const SymbolMap &Resolved);
|
| /openbsd-src/gnu/usr.bin/perl/os2/ |
| H A D | Changes | 274 Resolved: "Bad free()" messages (e.g., from DB_File) with -Zomf build. 300 Resolved: rmdir() and mkdir() do not accept trailing slashes. 302 Resolved: when loading modules, FP mask may be erroneously changed by 315 Resolved: $^X was always uppercased (cosmetic). Solution: 317 Resolved: when creating PM message queues, WinCancelShutdown() was 323 Resolved: Perl_Deregister_MQ() segfaulted (pid/tid not initialized). 324 Resolved: FillWinError() would not fetch the error. 326 Resolved: OS2::REXX would ignore arguments given to a Perl function 328 Resolved: OS2::REXX would treat arguments given to a Perl function 331 Resolved: OS2::REXX did not document _register(). [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/MC/ |
| H A D | MCAsmBackend.h | 155 virtual bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved,
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/MSP430/MCTargetDesc/ |
| H A D | MSP430AsmBackend.cpp | 56 bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved, in fixupNeedsRelaxationAdvanced() argument
|
| /openbsd-src/gnu/llvm/clang/include/clang/Lex/ |
| H A D | HeaderSearch.h | 85 unsigned Resolved : 1; member 123 Resolved(false), IndexHeaderMapHeader(false), IsValid(false) {} in HeaderFileInfo()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonAsmBackend.cpp | 572 bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved, in fixupNeedsRelaxationAdvanced() argument 587 if (!Resolved) { in fixupNeedsRelaxationAdvanced()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | SIFixSGPRCopies.cpp | 712 bool Resolved = false; in runOnMachineFunction() local 725 Resolved = true; in runOnMachineFunction() 733 if (!Resolved) { in runOnMachineFunction()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 2168 bool Resolved; member 2170 MappedValue() : V(nullptr), Resolved(false) {} in MappedValue() 2171 MappedValue(Init *V, bool Resolved) : V(V), Resolved(Resolved) {} in MappedValue()
|
| /openbsd-src/gnu/llvm/clang/lib/Lex/ |
| H A D | HeaderSearch.cpp | 1322 if (ExternalSource && !HFI->Resolved) { in getFileInfo() 1325 HFI->Resolved = true; in getFileInfo() 1354 if (!HFI->Resolved) { in getExistingFileInfo() 1357 HFI->Resolved = true; in getExistingFileInfo()
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyld.cpp | 1236 StringMap<JITEvaluatedSymbol> Resolved; in finalizeAsync() local 1238 Resolved[KV.first] = KV.second; in finalizeAsync() 1240 SharedThis->applyExternalSymbolRelocations(Resolved); in finalizeAsync()
|
| /openbsd-src/gnu/llvm/libcxx/docs/Status/ |
| H A D | Cxx20Issues.csv | 2 …_shared``\ should use ``allocator_traits<A>::construct``\ ","Toronto","Resolved by `P0674R1 <http… 97 …istream&, CharT*)``\ makes it hard to avoid buffer overflows","San Diego","Resolved by P0487R1","" 100 "`2797 <https://wg21.link/LWG2797>`__","Trait precondition violations","San Diego","Resolved by 128… 107 …22>`__","``is_convertible<derived*, base*>``\ may lead to ODR","San Diego","Resolved by 1285R0","" 123 …a] variable templates that should have been deleted by P09961","San Diego","Resolved by P1210R0",""
|