Searched defs:BlockNode (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h168 struct BlockNode { struct in class:llvm::BlockFrequencyInfoImplBase
172 bool operator==(const BlockNode &X) const { return Index == X.Index; }
173 bool operator!=(const BlockNode &X) const { return Index != X.Index; }
174 bool operator<=(const BlockNode &X) const { return Index <= X.Index; }
175 bool operator>=(const BlockNode &X) const { return Index >= X.Index; }
176 bool operator<(const BlockNode &X) const { return Index < X.Index; }
177 bool operator>(const BlockNode &X) const { return Index > X.Index; }
179 BlockNode() : Index(UINT32_MAX) {} function in struct:llvm::BlockFrequencyInfoImplBase::BlockNode
180 BlockNode(IndexType Index) : Index(Index) {} function in struct:llvm::BlockFrequencyInfoImplBase::BlockNode
197 typedef SmallVector<std::pair<BlockNode, BlockMas
553 typedef BFIBase::BlockNode BlockNode; typedef in struct:llvm::bfi_detail::IrreducibleGraph
[all...]

Completed in 31 milliseconds