HomeSort by: relevance | last modified time | path
    Searched defs:InstructionCost (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
InstructionCost.h 1 //===- InstructionCost.h ----------------------------------------*- C++ -*-===//
9 /// This file defines an InstructionCost class that is used when calculating
26 class InstructionCost {
42 void propagateState(const InstructionCost &RHS) {
48 // A default constructed InstructionCost is a valid zero cost
49 InstructionCost() = default;
51 InstructionCost(CostState) = delete;
52 InstructionCost(CostType Val) : Value(Val), State(Valid) {}
54 static InstructionCost getInvalid(CostType Val = 0) {
55 InstructionCost Tmp(Val)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
InterleavedLoadCombinePass.cpp 1131 InstructionCost InterleavedCost;
1132 InstructionCost InstructionCost = 0;
1160 InstructionCost +=
1176 if (!InstructionCost.isValid())
1216 if (InterleavedCost >= InstructionCost) {

Completed in 22 milliseconds