mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-19 08:35:45 +00:00
[vectorizer] Add an override for the target instruction cost and use it
to stabilize a test that really is trying to test generic behavior and not a specific target's behavior. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200215 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -160,6 +160,12 @@ static cl::opt<unsigned> ForceTargetMaxVectorUnrollFactor(
|
||||
cl::desc("A flag that overrides the target's max unroll factor for "
|
||||
"vectorized loops."));
|
||||
|
||||
static cl::opt<unsigned> ForceTargetInstructionCost(
|
||||
"force-target-instruction-cost", cl::init(0), cl::Hidden,
|
||||
cl::desc("A flag that overrides the target's expected cost for "
|
||||
"an instruction to a single constant value. Mostly "
|
||||
"useful for getting consistent testing."));
|
||||
|
||||
static cl::opt<unsigned> SmallLoopCost(
|
||||
"small-loop-cost", cl::init(20), cl::Hidden,
|
||||
cl::desc("The cost of a loop that is considered 'small' by the unroller."));
|
||||
@@ -5185,6 +5191,11 @@ unsigned LoopVectorizationCostModel::expectedCost(unsigned VF) {
|
||||
continue;
|
||||
|
||||
unsigned C = getInstructionCost(it, VF);
|
||||
|
||||
// Check if we should override the cost.
|
||||
if (ForceTargetInstructionCost.getNumOccurrences() > 0)
|
||||
C = ForceTargetInstructionCost;
|
||||
|
||||
BlockCost += C;
|
||||
DEBUG(dbgs() << "LV: Found an estimated cost of " << C << " for VF " <<
|
||||
VF << " For instruction: " << *it << '\n');
|
||||
|
||||
Reference in New Issue
Block a user