| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| FixIrreducible.cpp | 13 // 1. Collect the set of headers H of the SCC. 14 // 2. Collect the set of predecessors P of these headers. These may be inside as 22 // INPUT CFG: The blocks A and B form an irreducible loop with two headers. 56 // headers). The function also moves every PHINode in an outgoing block to the 119 SetVector<BasicBlock *> &Headers) { 138 if (Headers.count(Child->getHeader())) { 155 // Given a set of blocks and headers in an irreducible SCC, convert it into a 161 SetVector<BasicBlock *> &Headers) { 163 // All headers are part of the SCC 164 for (auto H : Headers) { [all...] |
| LoopUnroll.cpp | 546 std::vector<BasicBlock *> Headers; 550 Headers.push_back(Header); 646 // Keep track of new headers and latches as we create them, so that 649 Headers.push_back(New); 746 // Connect latches of the unrolled iterations to the headers of the next 752 BasicBlock *Dest = Headers[j]; 780 setDest(Latches[i], Dest, Headers[i], NeedConditional, ContinueOnTrue,
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| YAMLOutputStyle.cpp | 85 yaml::MSFHeaders Headers; 86 Obj.Headers.emplace(); 87 Obj.Headers->SuperBlock.NumBlocks = File.getBlockCount(); 88 Obj.Headers->SuperBlock.BlockMapAddr = File.getBlockMapIndex(); 89 Obj.Headers->SuperBlock.BlockSize = File.getBlockSize(); 91 Obj.Headers->DirectoryBlocks.assign(Blocks.begin(), Blocks.end()); 92 Obj.Headers->NumDirectoryBlocks = File.getNumDirectoryBlocks(); 93 Obj.Headers->SuperBlock.NumDirectoryBytes = File.getNumDirectoryBytes(); 94 Obj.Headers->NumStreams = 96 Obj.Headers->SuperBlock.FreeBlockMapBlock = File.getFreeBlockMapBlock() [all...] |
| PdbYaml.h | 101 Optional<MSFHeaders> Headers;
|
| DumpOutputStyle.cpp | 504 "Section headers require a DBI Stream, which could not be loaded", 520 ArrayRef<object::coff_section> Headers; 528 cantFail(Reader.readArray(Headers, NumHeaders)); 529 return std::make_pair(std::move(Stream), Headers); 538 ArrayRef<object::coff_section> Headers; 539 std::tie(Stream, Headers) = std::move(*ExpectedHeaders); 541 for (const auto &H : Headers) 1857 dumpSectionHeaders("Section Headers", DbgHeaderType::SectionHdr); 1858 dumpSectionHeaders("Original Section Headers", DbgHeaderType::SectionHdrOrig); 1876 ExitOnError Err("Error dumping section headers: ") [all...] |
| PdbYaml.cpp | 105 IO.mapOptional("MSF", Obj.Headers);
|
| llvm-pdbutil.cpp | 612 cl::opt<bool> DumpSectionHeaders("section-headers", 613 cl::desc("Dump image section headers"), 638 cl::opt<bool> NoFileHeaders("no-file-headers", 639 cl::desc("Do not dump MSF file headers"), 661 cl::desc("Dump the DBI Stream Headers (Stream 2)"), 767 if (YamlObj.Headers.hasValue()) 768 BlockSize = YamlObj.Headers->SuperBlock.BlockSize;
|
| /src/share/mk/ |
| bsd.kinc.mk | 8 # INCS Headers to install. 10 # DEPINCS Headers to install which are built dynamically.
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| BlockFrequencyInfoImpl.cpp | 350 // secondary loop headers. 695 /// Find extra irreducible headers. 703 LoopData::NodeList &Headers, LoopData::NodeList &Others) { 719 Headers.push_back(Irr.Node); 725 assert(Headers.size() >= 2 && 727 if (Headers.size() == InSCC.size()) { 729 llvm::sort(Headers); 733 // Look for extra headers from irreducible sub-SCCs. 735 // Entry blocks are already headers. 751 Headers.push_back(Irr.Node) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| ModuleMap.cpp | 10 // of a module as it relates to headers. 195 // Check whether this file is in the public headers. 196 llvm::sys::path::append(RelativePathName, "Headers", Header.FileName); 201 // Check whether this file is in the private headers. 227 // Lookup for normal headers. 282 // unavailable; this keeps our behavior consistent as headers are lazily 300 // may have a counterpart (or replacement) in the set of headers 374 /// headers. 399 HeadersMap::iterator Known = Headers.find(File); 401 Known == Headers.end() && ModuleMap::isBuiltinHeader(File)) [all...] |
| Preprocessor.cpp | 81 SourceManager &SM, HeaderSearch &Headers, 86 FileMgr(Headers.getFileMgr()), SourceMgr(SM), 87 ScratchBuf(new ScratchBuffer(SourceMgr)), HeaderInfo(Headers),
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| InitHeaderSearch.cpp | 44 HeaderSearch &Headers; 51 : Headers(HS), Verbose(verbose), IncludeSysroot(std::string(sysroot)), 134 FileManager &FM = Headers.getFileMgr(); 138 // If use system headers while cross-compiling, emit the warning. 141 Headers.getDiags().Report(diag::warn_poison_system_directories) 166 if (const HeaderMap *HM = Headers.CreateHeaderMap(*FE)) { 247 // Ignore the sys root, we *always* look for clang headers relative to 285 AddPath("/boot/system/non-packaged/develop/headers", System, false); 286 AddPath("/boot/system/develop/headers/os", System, false); 287 AddPath("/boot/system/develop/headers/os/app", System, false) [all...] |
| FrontendAction.cpp | 314 /// needed to load all of the named headers. 318 // Don't collect any headers for unavailable modules. 325 // If any headers are missing, we can't build this module. In most cases, 337 // Add includes for each of these headers. 339 for (Module::Header &H : Module->Headers[HK]) { 358 // Add all of the headers we find in this subdirectory. 364 SmallVector<std::pair<std::string, const FileEntry *>, 8> Headers; 368 // headers. 397 Headers.push_back(std::make_pair(RelName, *Header)); 405 llvm::sort(Headers.begin(), Headers.end(), [] [all...] |
| FrontendActions.cpp | 287 // Synthesize a Module object for the given headers. 289 SmallVector<Module::Header, 16> Headers; 300 Headers.push_back( 303 HS.getModuleMap().createHeaderModule(CI.getLangOpts().CurrentModule, Headers);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| PlaceSafepoints.cpp | 549 // and b) edges to distinct loop headers. We need to insert pools on 551 SetVector<BasicBlock *> Headers; 555 Headers.insert(Succ); 558 assert(!Headers.empty() && "poll location is not a loop latch?"); 564 for (BasicBlock *Header : Headers) {
|
| /src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
| ModuleMap.h | 10 // module as it relates to headers. 84 /// The directory used for Clang-supplied, builtin include headers, 203 HeadersMap Headers; 212 /// Mapping from directories with umbrella headers to the module 215 /// This mapping is used to map headers that haven't explicitly been named 240 /// Whether files in this module can only include non-modular headers 241 /// and headers from used modules. 366 /// Given that \p File is not in the Headers map, look it up within 383 /// \param SourceMgr The source manager used to find module files and headers. 385 /// since they will refer to the same headers [all...] |
| Preprocessor.h | 888 HeaderSearch &Headers, ModuleLoader &TheModuleLoader,
|
| /src/libexec/httpd/ |
| printenv.lua | 21 function printenv(env, headers, query) 26 -- output headers using httpd.write() 50 httpd.print('<h2>Request Headers</h2>') 51 for k, v in pairs(headers) do
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| ELF.h | 157 auto Headers = Obj.program_headers(); 158 if (Headers) 159 return ("[index " + Twine(&Phdr - &Headers->front()) + "]").str(); 161 llvm::consumeError(Headers.takeError()); 293 return createError("program headers are longer than binary of size " + 691 /// headers first. If section headers are not available, the number of 712 // Section headers are available but .dynsym header is not found. 717 // Section headers do not exist. Falling back to infer 782 // Invalid address alignment of section headers [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
| llvm-readobj.cpp | 58 cl::desc("Equivalent to setting: --file-headers, --program-headers, " 59 "--section-headers, --symbols, --relocations, " 69 // --headers, -e 71 Headers("headers", 72 cl::desc("Equivalent to setting: --file-headers, --program-headers, " 73 "--section-headers")); 74 cl::alias HeadersShort("e", cl::desc("Alias for --headers"), [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| Module.h | 127 /// which the module is notionally built, and relative to which its headers 168 /// The top-level headers associated with this module. 210 /// The headers that are part of this module. 211 SmallVector<Header, 2> Headers[5]; 225 /// Headers that are mentioned in the module map file but that we have not 229 /// Headers that are mentioned in the module map file but could not be 256 /// If the module is missing headers or does not meet all requirements then 270 /// headers in it are system headers). 274 /// headers in it within an 'extern "C"' block, and allows the module to b [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Basic/ |
| Module.cpp | 163 // FIXME: All missing headers are listed on the top-level module. Should we 501 for (auto &H : Headers[K.Kind]) {
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/ |
| Object.cpp | 1418 Expected<typename ELFFile<ELFT>::Elf_Phdr_Range> Headers = 1420 if (!Headers) 1421 return Headers.takeError(); 1423 for (const typename ELFFile<ELFT>::Elf_Phdr &Phdr : *Headers) { 1889 // The ELFFile whose ELF headers and program headers are copied into the 1891 // loadable partition it will point to the partition's headers. 2201 // Put SHT_GROUP sections first, since group section headers must come 2342 // If the segment includes EHDR and program headers, don't make it smaller 2343 // than the headers [all...] |
| /src/external/apache2/llvm/include/ |
| Makefile | 6 .PATH: ${CLANG_SRCDIR}/lib/Headers
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| ASTWriter.cpp | 1759 // Find all unresolved headers for the current module. We generally will 1768 // We don't care about headers in unimportable submodules. 1774 // headers list when emitting resolved headers in the first loop below. 2664 // Emit the headers. 2679 for (auto &H : Mod->Headers[HL.HeaderKind]) 2683 // Emit the top headers. 3211 // headers, probably not worth it. It's not a correctness issue. 3425 // headers, but are otherwise not needed. We add these to the hash 4379 // headers [all...] |