Searched defs:VCost (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp1021 unsigned VCost = TTI->getMemoryOpCost(I->getOpcode(), VType, local
1027 VCost += TTI->getAddressComputationCost(VType);
1029 if (VCost > ICost + JCost)
1038 else if (!VParts && VCost == ICost + JCost)
1041 CostSavings = ICost + JCost - VCost;
1093 unsigned VCost = getInstrCost(I->getOpcode(), VT1, VT2, Op1VK, Op2VK); local
1095 if (VCost > ICost + JCost)
1105 else if ((!VParts1 || !VParts2) && VCost == ICost + JCost)
1108 CostSavings = ICost + JCost - VCost;
1162 unsigned VCost local
[all...]

Completed in 127 milliseconds