| /llvm-project-15.0.7/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblySortRegion.cpp | 53 MachineBasicBlock *Bottom = ML->getHeader(); in getBottom() local 55 if (MBB->getNumber() > Bottom->getNumber()) in getBottom() 56 Bottom = MBB; in getBottom() 65 if (ExBottom->getNumber() > Bottom->getNumber()) in getBottom() 66 Bottom = ExBottom; in getBottom() 69 return Bottom; in getBottom() 73 MachineBasicBlock *Bottom = WE->getHeader(); in getBottom() local 75 if (MBB->getNumber() > Bottom->getNumber()) in getBottom() 76 Bottom = MBB; in getBottom() 77 return Bottom; in getBottom()
|
| H A D | WebAssemblyCFGStackify.cpp | 411 MachineBasicBlock *Bottom = SRI.getBottom(Loop); in placeLoopMarker() local 412 auto Iter = std::next(Bottom->getIterator()); in placeLoopMarker() 415 Iter = std::next(Bottom->getIterator()); in placeLoopMarker() 492 MachineBasicBlock *Bottom = SRI.getBottom(WE); in placeTryMarker() local 494 auto Iter = std::next(Bottom->getIterator()); in placeTryMarker() 497 Iter = std::next(Bottom->getIterator()); in placeTryMarker() 646 BuildMI(*Cont, InsertPos, Bottom->findBranchDebugLoc(), in placeTryMarker()
|
| /llvm-project-15.0.7/clang/test/Modules/Inputs/ |
| H A D | category_bottom.h | 3 @interface Foo(Bottom) 9 @interface LeftFoo(Bottom)
|
| /llvm-project-15.0.7/clang/lib/AST/Interp/ |
| H A D | State.cpp | 129 const Frame *Bottom = getBottomFrame(); in addCallStack() local 130 for (Frame *F = Top; F != Bottom; F = F->getCaller(), ++CallIdx) { in addCallStack()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86PreTileConfig.cpp | 134 bool isLoopBackEdge(MachineBasicBlock *Header, MachineBasicBlock *Bottom) { in isLoopBackEdge() argument 138 if (ML->contains(Bottom) && ML->isLoopLatch(Bottom)) in isLoopBackEdge()
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stoptheworld_netbsd_libcdep.cpp | 246 void *Bottom() const { in Bottom() function in __sanitizer::ScopedStackSpaceWithGuard 287 uptr tracer_pid = internal_clone(TracerThread, tracer_stack.Bottom(), in StopTheWorld()
|
| H A D | sanitizer_stoptheworld_linux_libcdep.cpp | 345 void *Bottom() const { in Bottom() function in __sanitizer::ScopedStackSpaceWithGuard 432 TracerThread, tracer_stack.Bottom(), in StopTheWorld()
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | constant-expression-cxx11.cpp | 837 struct Bottom { constexpr Bottom() {} }; in Bottom() argument 838 struct Base : Bottom { 843 struct Base2 : Bottom { 870 constexpr Bottom &bot1 = (Base&)derived; 871 constexpr Bottom &bot2 = (Base2&)derived; 874 constexpr Bottom *pb1 = (Base*)&derived; 875 constexpr Bottom *pb2 = (Base2*)&derived; 897 static_assert((Bottom*)nullB == 0, ""); 899 static_assert((void*)(Bottom*)nullB1 == (void*)(Derived*)nullB1, "");
|
| /llvm-project-15.0.7/llvm/test/CodeGen/SystemZ/ |
| H A D | regcoal-subranges-update-remat.mir | 21 # Bottom line, this test checks what was intended if at the end, both %0 and %1
|
| /llvm-project-15.0.7/llvm/lib/Target/ARM/ |
| H A D | ARMParallelDSP.cpp | 784 Value *Bottom = IRB.CreateTrunc(WideLoad, Base->getType()); in CreateWideLoad() local 785 Value *NewBaseSExt = IRB.CreateSExt(Bottom, BaseSExt->getType()); in CreateWideLoad() 799 << *Bottom << "\n" in CreateWideLoad()
|
| /llvm-project-15.0.7/llvm/test/Bitcode/ |
| H A D | metadata-function-blocks.ll | 19 ; Each node gets a new number. Bottom-up traversal of nodes.
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/ |
| H A D | HexagonConstPropagation.cpp | 111 enum { Normal, Top, Bottom }; enumerator 164 bool isBottom() const { return Kind == Bottom; } in isBottom() 167 bool Changed = (Kind != Bottom); in setBottom() 168 Kind = Bottom; in setBottom() 198 Bottom.setBottom(); in MachineConstPropagator() 215 Bottom.setBottom(); in CellMap() 230 return Bottom; in get() 249 LatticeCell Top, Bottom; member in __anona14c30040111::MachineConstPropagator::CellMap 280 LatticeCell Bottom; member in __anona14c30040111::MachineConstPropagator 644 Cells.update(DefR.Reg, Bottom); in visitPHI() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | MachineTraceMetrics.h | 276 unsigned getResourceDepth(bool Bottom) const;
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | MachineTraceMetrics.cpp | 1196 unsigned MachineTraceMetrics::Trace::getResourceDepth(bool Bottom) const { in getResourceDepth() 1201 if (Bottom) { in getResourceDepth() 1215 if (Bottom) in getResourceDepth()
|
| H A D | MachineBlockPlacement.cpp | 2327 MachineBasicBlock *Bottom = *std::prev(LoopChain.end()); in rotateLoop() local 2330 if (Bottom == ExitingBB) in rotateLoop() 2343 for (MachineBasicBlock *Succ : Bottom->successors()) { in rotateLoop() 2385 if (!Bottom->isSuccessor(Top)) in rotateLoop()
|
| /llvm-project-15.0.7/llvm/docs/CommandGuide/ |
| H A D | lli.rst | 166 =list-burr: Bottom-up register reduction list scheduling
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | Lexicon.rst | 49 Bottom Up Rewriting System --- A method of instruction selection for code
|
| H A D | Passes.rst | 594 Bottom-up inlining of functions into callees.
|
| /llvm-project-15.0.7/mlir/include/mlir/IR/ |
| H A D | BuiltinAttributeInterfaces.td | 227 /// Bottom out case for no matching type.
|
| /llvm-project-15.0.7/llvm/lib/Target/Mips/ |
| H A D | MipsInstrInfo.td | 596 class ConstantUImmRangeAsmOperandClass<int Bottom, int Top, 599 let Name = "ConstantUImmRange" # Bottom # "_" # Top; 601 let PredicateMethod = "isConstantUImmRange<" # Bottom # ", " # Top # ">"; 603 let DiagnosticType = "UImmRange" # Bottom # "_" # Top;
|
| /llvm-project-15.0.7/llvm/lib/Target/Mips/AsmParser/ |
| H A D | MipsAsmParser.cpp | 1320 template <unsigned Bottom, unsigned Top> bool isConstantUImmRange() const { in isConstantUImmRange() 1321 return isConstantImm() && getConstantImm() >= Bottom && in isConstantUImmRange()
|