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

  /external/clang/lib/CodeGen/
CGLoopInfo.cpp 101 LoopInfo::LoopInfo(BasicBlock *Header, const LoopAttributes &Attrs)
107 Active.push_back(LoopInfo(Header, StagedAttrs));
233 const LoopInfo &L = getInfo();
CGLoopInfo.h 63 class LoopInfo {
65 /// \brief Construct a new LoopInfo for the loop with entry Header.
66 LoopInfo(llvm::BasicBlock *Header, const LoopAttributes &Attrs);
144 /// \brief Returns true if there is LoopInfo on the stack.
146 /// \brief Return the LoopInfo for the current loop. HasInfo should be called
147 /// first to ensure LoopInfo is present.
148 const LoopInfo &getInfo() const { return Active.back(); }
152 llvm::SmallVector<LoopInfo, 4> Active;
  /external/v8/src/compiler/
loop-analysis.cc 29 struct LoopInfo {
95 for (LoopInfo& li : loops_) {
111 ZoneVector<LoopInfo> loops_;
268 for (LoopInfo& li : loops_) {
325 LoopInfo* innermost = nullptr;
335 LoopInfo* loop = &loops_[loop_num - 1];
365 LoopInfo* li = &loops_[0];
390 LoopInfo& li = loops_[loop_num - 1];
414 LoopInfo& li = loops_[loop_num - 1];
scheduler.cc 658 LoopInfo const& loop = loops_[GetLoopNumber(block)];
679 struct LoopInfo {
683 LoopInfo* prev;
787 LoopInfo* loop =
822 LoopInfo* info = &loops_[GetLoopNumber(block)];
846 LoopInfo* next = &loops_[GetLoopNumber(succ)];
856 LoopInfo* info = &loops_[GetLoopNumber(block)];
879 LoopInfo* current_loop = nullptr;
    [all...]
  /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
52 class LoopInfo;
266 /// to the specified LoopInfo object as being in the current basic block. It
333 /// the mapping in the LoopInfo class.
501 /// LoopInfo - This class builds and contains all of the top level loop
511 friend class LoopInfo;
654 class LoopInfo : public LoopInfoBase<BasicBlock, Loop> {
659 void operator=(const LoopInfo &) = delete;
660 LoopInfo(const LoopInfo &) = delete
    [all...]

Completed in 457 milliseconds