HomeSort by relevance Sort by last modified time
    Searched defs:LoopInfo (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/CodeGen/
CGLoopInfo.cpp 77 LoopInfo::LoopInfo(BasicBlock *Header, const LoopAttributes &Attrs)
83 Active.push_back(LoopInfo(Header, StagedAttrs));
97 const LoopInfo &L = getInfo();
CGLoopInfo.h 54 class LoopInfo {
56 /// \brief Construct a new LoopInfo for the loop with entry Header.
57 LoopInfo(llvm::BasicBlock *Header, const LoopAttributes &Attrs);
122 /// \brief Returns true if there is LoopInfo on the stack.
124 /// \brief Return the LoopInfo for the current loop. HasInfo should be called
125 /// first to ensure LoopInfo is present.
126 const LoopInfo &getInfo() const { return Active.back(); }
130 llvm::SmallVector<LoopInfo, 4> Active;
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 1 //===- llvm/Analysis/LoopInfo.h - Natural Loop Calculator -------*- C++ -*-===//
10 // This file defines the LoopInfo class that is used to identify natural loops
53 class LoopInfo;
253 /// to the specified LoopInfo object as being in the current basic block. It
320 /// the mapping in the LoopInfo class.
487 /// LoopInfo - This class builds and contains all of the top level loop
497 friend class LoopInfo;
500 LoopInfoBase(const LoopInfo &) LLVM_DELETED_FUNCTION;
629 class LoopInfo : public FunctionPass {
633 void operator=(const LoopInfo &) LLVM_DELETED_FUNCTION
    [all...]

Completed in 51 milliseconds