HomeSort by relevance Sort by last modified time
    Searched defs:Header (Results 476 - 500 of 970) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp 14 // Loop pre-header insertion guarantees that there is a single, non-critical
15 // entry edge from outside of the loop to the loop header. This simplifies a
21 // by the loop header). This simplifies transformations such as store-sinking
75 STATISTIC(NumInserted, "Number of pre-header or exit blocks inserted");
120 BasicBlock *Header = L->getHeader();
124 for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header);
138 // Split out the loop pre-header.
140 PreheaderBB = SplitBlockPredecessors(Header, OutsideBlocks, ".preheader", DT,
145 DEBUG(dbgs() << "LoopSimplify: Creating pre-header "
    [all...]
LoopUnroll.cpp 180 /// TripCount is generally defined as the number of times the loop header
226 BasicBlock *Header = L->getHeader();
236 if (Header->hasAddressTaken()) {
239 " Won't unroll loop: address of header block is taken.\n");
327 Function *F = Header->getParent();
331 DEBUG(dbgs() << "COMPLETELY UNROLLING loop %" << Header->getName()
343 DEBUG(dbgs() << "UNROLLING loop %" << Header->getName()
365 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
371 Headers.push_back(Header);
393 Header->getParent()->getBasicBlockList().push_back(New)
    [all...]
LoopUnrollRuntime.cpp 74 // the loop header or the loop exit block.
164 // Header
277 BasicBlock *Header = L->getHeader();
279 Function *F = Header->getParent();
304 if (Header == *BB) {
314 BasicBlock *FirstLoopBB = cast<BasicBlock>(VMap[Header]);
338 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
347 cast<BasicBlock>(VMap[Header])->getInstList().erase(NewPHI);
468 BasicBlock *Header = L->getHeader();
471 const DataLayout &DL = Header->getModule()->getDataLayout()
    [all...]
LoopUtils.cpp 168 // Reduction variables are only found in the loop header block.
236 // * A PHI in the header other than the initial PHI.
249 // A header PHI use other than the original PHI.
298 // Exit if you find multiple outside users or if the header phi node is
476 BasicBlock *Header = TheLoop->getHeader();
477 Function &F = *Header->getParent();
525 // Ensure the phi node is in the loop header and has two incoming values.
847 // here because users shouldn't directly get them from this header.
    [all...]
  /external/pdfium/xfa/fwl/
cfwl_themepart.h 33 Header,
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ScheduleDAGInstrs.cpp 140 MachineBasicBlock *Header = ML->getHeader();
141 for (MachineBasicBlock::livein_iterator I = Header->livein_begin(),
142 E = Header->livein_end(); I != E; ++I)
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
LoopSimplify.cpp 14 // Loop pre-header insertion guarantees that there is a single, non-critical
15 // entry edge from outside of the loop to the loop header. This simplifies a
21 // by the loop header). This simplifies transformations such as store-sinking
63 STATISTIC(NumInserted, "Number of pre-header or exit blocks inserted");
145 // Check to see that no blocks (other than the header) in this loop have
212 // loop preheader/header will dominate the exit blocks. If the exit block has
235 // If the header has more than two predecessors at this point (from the
254 // loop header.
262 // Scan over the PHI nodes in the loop header. Since they now have only two
363 BasicBlock *Header = L->getHeader()
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-objdump/
MachODump.cpp 214 static void getSectionsAndSymbols(const macho::Header &Header,
221 for (unsigned i = 0; i != Header.NumLoadCommands; ++i) {
308 const macho::Header &Header = MachOObj->getHeader();
312 for (unsigned i = 0; i != Header.NumLoadCommands; ++i) {
329 getSectionsAndSymbols(Header, MachOObj.get(), &SymtabLC, Sections, Symbols,
362 const macho::Header &Header = DSYMObj->getHeader();
366 getSectionsAndSymbols(Header, DSYMObj.get(), 0, DSYMSections, Symbols
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_graph_dumper.cc 338 // Generates graph header/footer. These should be called *after* dumping all
341 string Header();
430 // By contract, Header() and Footer() have to be called after we've dumped all
432 string g = Header();
438 string HloDotDumper::Header() {
461 VLOG(3) << "Generating Header";
    [all...]
  /frameworks/minikin/libs/minikin/
Hyphenator.cpp 74 struct Header {
293 const Header* header = getHeader(); local
295 // TODO: check header magic
296 uint32_t alphabetVersion = header->alphabetVersion();
298 const AlphabetTable0* alphabet = header->alphabetTable0();
319 const AlphabetTable1* alphabet = header->alphabetTable1();
356 const Header* header = getHeader(); local
357 const Trie* trie = header->trieTable()
    [all...]
  /frameworks/native/libs/vr/libbroadcastring/include/libbroadcastring/
broadcast_ring.h 54 // header when indexing the ring, so that it is possible to extend the record
198 // Import may fail if the ring parameters in the mmap header are not sensible.
204 if (mmap_size >= sizeof(Header)) {
220 return sizeof(Header) + sizeof(Record) * record_count;
247 // The header size has been taken into account.
249 if (mmap_size <= sizeof(Header)) {
253 static_cast<uint32_t>((mmap_size - sizeof(Header)) / sizeof(Record));
380 struct Header {
453 Header header; member in struct:android::dvr::BroadcastRing::Mmap
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/contactsfragment/
ContactsFragment.java 68 @IntDef({Header.NONE, Header.ADD_CONTACT})
69 public @interface Header {
71 /** Header that allows the user to add a new contact. */
99 private @Header int header; field in class:ContactsFragment
112 * <li>{@link Header#ADD_CONTACT} to insert a header that allows users to add a contact
119 * <li>{@link Header#NONE} so that all rows are contacts (i.e. no header inserted
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
LoopInfoImpl.h 28 // APIs for simple analysis of the loop. See header notes.
102 /// loop has a preheader if there is only one edge to the header of the loop
104 /// header of the loop is the preheader node.
110 // Keep track of nodes outside the loop branching to the header...
125 /// getLoopPredecessor - If the given loop's header has exactly one unique
132 // Keep track of nodes outside the loop branching to the header...
135 // Loop over the predecessors of the header node...
136 BlockT *Header = getHeader();
139 InvBlockTraits::child_begin(Header),
140 PE = InvBlockTraits::child_end(Header); PI != PE; ++PI)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ObjectYAML/
WasmYAML.h 227 FileHeader Header;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Analysis/
LoopInfoImpl.h 28 // APIs for simple analysis of the loop. See header notes.
93 /// loop has a preheader if there is only one edge to the header of the loop
95 /// header of the loop is the preheader node.
101 // Keep track of nodes outside the loop branching to the header...
116 /// getLoopPredecessor - If the given loop's header has exactly one unique
123 // Keep track of nodes outside the loop branching to the header...
126 // Loop over the predecessors of the header node...
127 BlockT *Header = getHeader();
128 for (const auto Pred : children<Inverse<BlockT*>>(Header)) {
137 assert(Out && "Header of loop has no predecessors from outside loop?")
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ObjectYAML/
WasmYAML.h 238 FileHeader Header;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Analysis/
LoopInfoImpl.h 28 // APIs for simple analysis of the loop. See header notes.
93 /// loop has a preheader if there is only one edge to the header of the loop
95 /// header of the loop is the preheader node.
101 // Keep track of nodes outside the loop branching to the header...
116 /// getLoopPredecessor - If the given loop's header has exactly one unique
123 // Keep track of nodes outside the loop branching to the header...
126 // Loop over the predecessors of the header node...
127 BlockT *Header = getHeader();
128 for (const auto Pred : children<Inverse<BlockT*>>(Header)) {
137 assert(Out && "Header of loop has no predecessors from outside loop?")
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ObjectYAML/
WasmYAML.h 238 FileHeader Header;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Analysis/
LoopInfoImpl.h 28 // APIs for simple analysis of the loop. See header notes.
98 /// loop has a preheader if there is only one edge to the header of the loop
100 /// predecessor. If this is the case, the block branching to the header of the
108 // Keep track of nodes outside the loop branching to the header...
128 /// getLoopPredecessor - If the given loop's header has exactly one unique
136 // Keep track of nodes outside the loop branching to the header...
139 // Loop over the predecessors of the header node...
140 BlockT *Header = getHeader();
141 for (const auto Pred : children<Inverse<BlockT *>>(Header)) {
150 assert(Out && "Header of loop has no predecessors from outside loop?")
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Object/
Wasm.h 233 wasm::WasmObjectHeader Header;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ObjectYAML/
ELFYAML.h 201 FileHeader Header;
MachOYAML.h 114 FileHeader Header;
136 FatHeader Header;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Analysis/
LoopInfoImpl.h 28 // APIs for simple analysis of the loop. See header notes.
98 /// loop has a preheader if there is only one edge to the header of the loop
100 /// predecessor. If this is the case, the block branching to the header of the
108 // Keep track of nodes outside the loop branching to the header...
128 /// getLoopPredecessor - If the given loop's header has exactly one unique
136 // Keep track of nodes outside the loop branching to the header...
139 // Loop over the predecessors of the header node...
140 BlockT *Header = getHeader();
141 for (const auto Pred : children<Inverse<BlockT *>>(Header)) {
150 assert(Out && "Header of loop has no predecessors from outside loop?")
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Object/
Wasm.h 233 wasm::WasmObjectHeader Header;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ObjectYAML/
ELFYAML.h 201 FileHeader Header;

Completed in 1028 milliseconds

<<11121314151617181920>>