Searched refs:ReduxOpCode (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/Analysis/ |
D | CostModel.cpp | 464 unsigned ReduxOpCode; in getInstructionCost() local 467 if (matchVectorSplittingReduction(EEI, ReduxOpCode, ReduxType)) in getInstructionCost() 468 return TTI->getReductionCost(ReduxOpCode, ReduxType, false); in getInstructionCost() 469 else if (matchPairwiseReduction(EEI, ReduxOpCode, ReduxType)) in getInstructionCost() 470 return TTI->getReductionCost(ReduxOpCode, ReduxType, true); in getInstructionCost()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 1055 unsigned ReduxOpCode; in getInstructionThroughput() local 1058 switch (matchVectorSplittingReduction(EEI, ReduxOpCode, ReduxType)) { in getInstructionThroughput() 1060 return getArithmeticReductionCost(ReduxOpCode, ReduxType, in getInstructionThroughput() 1074 switch (matchPairwiseReduction(EEI, ReduxOpCode, ReduxType)) { in getInstructionThroughput() 1076 return getArithmeticReductionCost(ReduxOpCode, ReduxType, in getInstructionThroughput()
|