HomeSort by relevance Sort by last modified time
    Searched refs:BlockMass (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 36 // BlockMass definition.
56 class BlockMass {
60 BlockMass() : Mass(0) {}
61 explicit BlockMass(uint64_t Mass) : Mass(Mass) {}
63 static BlockMass getEmpty() { return BlockMass(); }
64 static BlockMass getFull() { return BlockMass(UINT64_MAX); }
76 BlockMass &operator+=(const BlockMass &X)
    [all...]
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 26 // BlockMass implementation.
29 ScaledNumber<uint64_t> BlockMass::toScaled() const {
35 void BlockMass::dump() const { print(dbgs()); }
43 raw_ostream &BlockMass::print(raw_ostream &OS) const {
68 /// precision of the product of \a BlockMass and \a BranchProbability.
84 BlockMass RemMass;
86 DitheringDistributer(Distribution &Dist, const BlockMass &Mass);
88 BlockMass takeMass(uint32_t Weight);
93 const BlockMass &Mass) {
99 BlockMass DitheringDistributer::takeMass(uint32_t Weight)
    [all...]

Completed in 54 milliseconds