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

  /external/llvm/include/llvm/Analysis/
BranchProbabilityInfo.h 31 // weight to an edge that may have siblings with non-zero weights. This can
38 DenseMap<Edge, uint32_t> Weights;
40 // Get sum of the block successors' weights.
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 46 // Weights are for internal use only. They are used by heuristics to help to
49 // Using "Loop Branch Heuristics" we predict weights of edges for the
122 // Metadata Weights
154 // Ensure there are weights for all of the successors. Note that the first
159 // Build up the final weights that will be used in a temporary buffer, but
163 SmallVector<uint32_t, 2> Weights;
164 Weights.reserve(TI->getNumSuccessors());
169 Weights.push_back(
172 assert(Weights.size() == TI->getNumSuccessors() && "Checked above");
174 BP->setEdgeWeight(BB, TI->getSuccessor(i), Weights[i])
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 75 /// Weights - Keep track of the weights to the successors. This vector
78 std::vector<uint32_t> Weights;
259 /// parameter is stored in Weights list and it may be used by

Completed in 480 milliseconds