Home
last modified time | relevance | path

Searched refs:BitsPerIndex (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h416 : NodesPerBlock(NPB), BitsPerIndex(Log2_32(NPB)), in NodesPerBlock()
417 IndexMask((1 << BitsPerIndex) - 1) { in NodesPerBlock()
423 uint32_t BlockN = N1 >> BitsPerIndex; in ptr()
438 return ((Block << BitsPerIndex) | Index) + 1; in makeId()
442 const uint32_t BitsPerIndex; member
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFGraph.cpp346 assert((Blocks.size() < ((size_t)1 << (8 * sizeof(NodeId) - BitsPerIndex))) && in startNewBlock()