Home
last modified time | relevance | path

Searched refs:Headers (Results 1 – 25 of 99) sorted by relevance

1234

/openbsd/gnu/llvm/llvm/lib/Transforms/Utils/
H A DFixIrreducible.cpp139 if (Headers.count(Child->getHeader())) { in INITIALIZE_PASS_DEPENDENCY()
173 for (auto *H : Headers) { in createNaturalLoopInternal()
179 for (auto *H : Headers) { in createNaturalLoopInternal()
236 reconnectChildLoops(LI, ParentLoop, NewLoop, Blocks, Headers); in createNaturalLoopInternal()
259 createNaturalLoopInternal(LI, DT, nullptr, Blocks, Headers); in createNaturalLoop()
265 createNaturalLoopInternal(LI, DT, &L, Blocks, Headers); in createNaturalLoop()
289 SetVector<BasicBlock *> Headers; in makeReducible() local
298 Headers.insert(BB); in makeReducible()
305 if (Headers.size() == 1) { in makeReducible()
306 assert(LI.isLoopHeader(Headers.front())); in makeReducible()
[all …]
H A DLoopUnroll.cpp485 std::vector<BasicBlock *> Headers; in UnrollLoop() local
487 Headers.push_back(Header); in UnrollLoop()
588 Headers.push_back(New); in UnrollLoop()
655 Latches[i]->getTerminator()->replaceSuccessorWith(Headers[i], Headers[j]); in UnrollLoop()
/openbsd/gnu/llvm/llvm/lib/Debuginfod/
H A DHTTPClient.cpp114 curl_slist *Headers = nullptr; in perform() local
115 for (const std::string &Header : Request.Headers) in perform()
116 Headers = curl_slist_append(Headers, Header.c_str()); in perform()
117 curl_easy_setopt(Curl, CURLOPT_HTTPHEADER, Headers); in perform()
122 curl_slist_free_all(Headers); in perform()
H A DDebuginfod.cpp194 SmallVector<std::string, 0> Headers; in getHeaders() local
207 Headers.emplace_back(Line); in getHeaders()
209 return Headers; in getHeaders()
257 Request.Headers = getHeaders(); in getCachedOrDownloadArtifact()
/openbsd/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp85 yaml::MSFHeaders Headers; in dumpFileHeaders() local
86 Obj.Headers.emplace(); in dumpFileHeaders()
87 Obj.Headers->SuperBlock.NumBlocks = File.getBlockCount(); in dumpFileHeaders()
88 Obj.Headers->SuperBlock.BlockMapAddr = File.getBlockMapIndex(); in dumpFileHeaders()
89 Obj.Headers->SuperBlock.BlockSize = File.getBlockSize(); in dumpFileHeaders()
91 Obj.Headers->DirectoryBlocks.assign(Blocks.begin(), Blocks.end()); in dumpFileHeaders()
92 Obj.Headers->NumDirectoryBlocks = File.getNumDirectoryBlocks(); in dumpFileHeaders()
93 Obj.Headers->SuperBlock.NumDirectoryBytes = File.getNumDirectoryBytes(); in dumpFileHeaders()
94 Obj.Headers->NumStreams = in dumpFileHeaders()
97 Obj.Headers->SuperBlock.Unknown1 = File.getUnknown1(); in dumpFileHeaders()
[all …]
H A DPdbYaml.h97 std::optional<MSFHeaders> Headers; member
H A DDumpOutputStyle.cpp403 ArrayRef<object::coff_section> Headers; in loadSectionHeaders() local
411 cantFail(Reader.readArray(Headers, NumHeaders)); in loadSectionHeaders()
412 return std::make_pair(std::move(Stream), Headers); in loadSectionHeaders()
421 ArrayRef<object::coff_section> Headers; in getSectionNames() local
422 std::tie(Stream, Headers) = std::move(*ExpectedHeaders); in getSectionNames()
424 for (const auto &H : Headers) in getSectionNames()
1783 ArrayRef<object::coff_section> Headers; in dumpSectionHeaders() local
1789 std::tie(Stream, Headers) = std::move(*ExpectedHeaders); in dumpSectionHeaders()
1792 for (const auto &Header : Headers) { in dumpSectionHeaders()
/openbsd/gnu/llvm/lldb/cmake/modules/
H A DLLDBFramework.cmake65 Versions/Current/Headers
66 ${LLDB_FRAMEWORK_ABSOLUTE_BUILD_DIR}/LLDB.framework/Headers
67 COMMENT "LLDB.framework: create Headers symlink"
102 …OMMAND ${CMAKE_COMMAND} -E copy_directory ${lldb_header_staging} $<TARGET_FILE_DIR:liblldb>/Headers
103 …COMMAND ${LLDB_SOURCE_DIR}/scripts/framework-header-fix.sh $<TARGET_FILE_DIR:liblldb>/Headers ${LL…
/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp716 LoopData::NodeList &Headers, LoopData::NodeList &Others) { in findIrreducibleHeaders() argument
732 Headers.push_back(Irr.Node); in findIrreducibleHeaders()
738 assert(Headers.size() >= 2 && in findIrreducibleHeaders()
740 if (Headers.size() == InSCC.size()) { in findIrreducibleHeaders()
742 llvm::sort(Headers); in findIrreducibleHeaders()
764 Headers.push_back(Irr.Node); in findIrreducibleHeaders()
769 if (Headers.back() == Irr.Node) in findIrreducibleHeaders()
777 llvm::sort(Headers); in findIrreducibleHeaders()
788 LoopData::NodeList Headers; in createIrreducibleLoop() local
790 findIrreducibleHeaders(BFI, G, SCC, Headers, Others); in createIrreducibleLoop()
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/
H A DREADME30 Headers intended to directly include standard C headers.
34 Headers intended to include standard C headers, and put select
39 Headers intended to shadow standard C headers provided by an
50 Headers provided for backward compatibility, such as <iostream.h>.
54 Headers that define extensions to the standard library. No
/openbsd/gnu/gcc/libstdc++-v3/
H A DREADME30 Headers intended to directly include standard C headers.
34 Headers intended to include standard C headers, and put select
43 Headers provided for backward compatibility, such as <iostream.h>.
47 Headers that define extensions to the standard library. No
/openbsd/gnu/llvm/clang/lib/Lex/
H A DInitHeaderSearch.cpp52 HeaderSearch &Headers; member in __anond44666720111::InitHeaderSearch
59 : Headers(HS), Verbose(verbose), IncludeSysroot(std::string(sysroot)), in InitHeaderSearch()
145 FileManager &FM = Headers.getFileMgr(); in AddUnmappedPath()
152 Headers.getDiags().Report(diag::warn_poison_system_directories) in AddUnmappedPath()
177 if (const HeaderMap *HM = Headers.CreateHeaderMap(*FE)) { in AddUnmappedPath()
627 Headers.SetSearchPaths(extractLookups(SearchList), NumQuoted, NumAngled, in Realize()
630 Headers.SetSystemHeaderPrefixes(SystemHeaderPrefixes); in Realize()
H A DModuleMap.cpp406 return Headers.find(File); in findKnownHeader()
493 if (Known != Headers.end()) { in diagnoseHeaderInclusion()
593 if (Known != Headers.end()) { in findModuleForHeader()
677 Headers[File].push_back(Header); in findOrCreateModuleForHeaderInUmbrellaDir()
687 if (Known != Headers.end()) in findAllModulesForHeader()
700 auto It = Headers.find(File); in findResolvedModulesForHeader()
701 if (It == Headers.end()) in findResolvedModulesForHeader()
715 if (Known != Headers.end()) { in isHeaderUnavailableInModule()
1342 for (HeadersMap::iterator H = Headers.begin(), HEnd = Headers.end(); in dump()
2520 llvm::array_pod_sort(Headers.begin(), Headers.end(), compareModuleHeaders); in parseUmbrellaDirDecl()
[all …]
/openbsd/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DPlaceSafepoints.cpp552 SetVector<BasicBlock *> Headers; in runOnFunction() local
556 Headers.insert(Succ); in runOnFunction()
559 assert(!Headers.empty() && "poll location is not a loop latch?"); in runOnFunction()
565 for (BasicBlock *Header : Headers) { in runOnFunction()
/openbsd/gnu/llvm/llvm/include/llvm/Debuginfod/
H A DHTTPClient.h30 SmallVector<std::string, 0> Headers; member
/openbsd/gnu/llvm/clang/lib/
H A DCMakeLists.txt1 add_subdirectory(Headers)
/openbsd/gnu/llvm/llvm/utils/gn/secondary/clang-tools-extra/clangd/tool/
H A DBUILD.gn15 "//clang/lib/Headers",
/openbsd/gnu/llvm/llvm/utils/gn/secondary/clang/lib/Headers/
H A DBUILD.gn54 visibility = [ ":Headers" ]
71 copy("Headers") {
/openbsd/gnu/llvm/clang/lib/Frontend/
H A DFrontendAction.cpp355 for (Module::Header &H : Module->Headers[HK]) { in collectModuleHeaderIncludes()
382 Headers; in collectModuleHeaderIncludes() local
415 Headers.push_back(std::make_pair(RelName, *Header)); in collectModuleHeaderIncludes()
423 llvm::sort(Headers, llvm::less_first()); in collectModuleHeaderIncludes()
424 for (auto &H : Headers) { in collectModuleHeaderIncludes()
/openbsd/gnu/llvm/llvm/docs/
H A DSupportLibrary.rst42 Don't Include System Headers
57 Don't Expose System Headers
67 Use Standard C Headers
75 Use Standard C++ Headers
/openbsd/gnu/lib/libstdc++/libstdc++/docs/html/17_intro/
H A Dheaders_cc.txt21 // 17.4.1.2 Headers
H A DDESIGN454 Headers: <limits> <new> <typeinfo> <exception>
486 Headers: <stdexcept>
499 Headers: <utility> <functional> <memory>
523 Headers: <string>
580 Headers: <locale>
685 Headers: <iterator>
714 Headers: <algorithm>
737 Headers: <complex> <valarray> <numeric>
756 Headers: <iosfwd> <streambuf> <ios> <ostream> <istream> <iostream>
833 Headers: <strstream>
[all …]
/openbsd/gnu/gcc/libstdc++-v3/docs/html/17_intro/
H A Dheaders_cc.txt21 // 17.4.1.2 Headers
H A DDESIGN454 Headers: <limits> <new> <typeinfo> <exception>
486 Headers: <stdexcept>
499 Headers: <utility> <functional> <memory>
523 Headers: <string>
580 Headers: <locale>
685 Headers: <iterator>
714 Headers: <algorithm>
737 Headers: <complex> <valarray> <numeric>
756 Headers: <iosfwd> <streambuf> <ios> <ostream> <istream> <iostream>
833 Headers: <strstream>
[all …]
/openbsd/gnu/llvm/llvm/utils/gn/secondary/clang/tools/libclang/
H A DBUILD.gn33 "//clang/lib/Headers",

1234