HomeSort by: relevance | last modified time | path
    Searched defs:Bottom (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblySortRegion.cpp 53 MachineBasicBlock *Bottom = ML->getHeader();
55 if (MBB->getNumber() > Bottom->getNumber())
56 Bottom = MBB;
59 // purpose of CFG sorting and stackification, we need a bottom BB among all
61 // WebAssemblyException contained in this loop, and computes the most bottom
65 if (ExBottom->getNumber() > Bottom->getNumber())
66 Bottom = ExBottom;
69 return Bottom;
73 MachineBasicBlock *Bottom = WE->getHeader();
75 if (MBB->getNumber() > Bottom->getNumber()
    [all...]
WebAssemblyCFGStackify.cpp 109 // loop / exception bottom block is the last block in a function
302 // If there is a previously placed LOOP marker and the bottom block of the
410 // bottom of the function, insert a dummy block at the end.
411 MachineBasicBlock *Bottom = SRI.getBottom(Loop);
412 auto Iter = std::next(Bottom->getIterator());
415 Iter = std::next(Bottom->getIterator());
488 // If this try is at the bottom of the function, insert a dummy block at the
492 MachineBasicBlock *Bottom = SRI.getBottom(WE);
494 auto Iter = std::next(Bottom->getIterator());
497 Iter = std::next(Bottom->getIterator())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
State.cpp 129 const Frame *Bottom = getBottomFrame();
130 for (Frame *F = Top; F != Bottom; F = F->getCaller(), ++CallIdx) {
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_stoptheworld_netbsd_libcdep.cpp 246 void *Bottom() const {
287 uptr tracer_pid = internal_clone(TracerThread, tracer_stack.Bottom(),
sanitizer_stoptheworld_linux_libcdep.cpp 346 void *Bottom() const {
433 TracerThread, tracer_stack.Bottom(),
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_stoptheworld_netbsd_libcdep.cpp 246 void *Bottom() const {
287 uptr tracer_pid = internal_clone(TracerThread, tracer_stack.Bottom(),
sanitizer_stoptheworld_linux_libcdep.cpp 345 void *Bottom() const {
432 TracerThread, tracer_stack.Bottom(),
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stoptheworld_linux_libcdep.cc 345 void *Bottom() const {
432 TracerThread, tracer_stack.Bottom(),
  /src/external/bsd/libarchive/dist/libarchive/
archive_ppmd7_private.h 79 UInt32 Bottom;
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMParallelDSP.cpp 787 Value *Bottom = IRB.CreateTrunc(WideLoad, Base->getType());
788 Value *NewBaseSExt = IRB.CreateSExt(Bottom, BaseSExt->getType());
802 << *Bottom << "\n"
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineBlockPlacement.cpp 1861 // If bottom of block BB has only one successor OldTop, in most cases it is
2291 /// Attempt to rotate an exiting block to the bottom of the loop.
2296 /// of its bottom already, don't rotate it.
2305 MachineBasicBlock *Bottom = *std::prev(LoopChain.end());
2308 if (Bottom == ExitingBB)
2318 // bottom is a viable exiting block. If so, bail out as rotating will
2321 for (MachineBasicBlock *Succ : Bottom->successors()) {
2339 // Rotating a loop exit to the bottom when there is a fallthrough to top
2341 // If there is no bottom->top edge, but the chosen exit block does have
2355 // There is no fallthrough from bottom (Bn) to top (B1)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonConstPropagation.cpp 105 // multiple values would normally indicate "bottom", we can still derive
111 enum { Normal, Top, Bottom };
164 bool isBottom() const { return Kind == Bottom; }
167 bool Changed = (Kind != Bottom);
168 Kind = Bottom;
198 Bottom.setBottom();
215 Bottom.setBottom();
221 // All non-virtual registers are considered "bottom".
230 return Bottom;
247 // this cell in "get". Also, have a "Bottom" cell to return fro
    [all...]

Completed in 44 milliseconds