Searched refs:TiedMax (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineInstr.cpp1036 const unsigned TiedMax = 15; variable
1044 /// 1 to TiedMax-1: Tied to getOperand(TiedTo-1).
1045 /// TiedMax: Tied to an operand >= TiedMax-1.
1047 /// The tied def must be one of the first TiedMax operands on a normal
1058 if (DefIdx < TiedMax)
1062 // normal instruction, the tied def must be within the first TiedMax
1065 UseMO.TiedTo = TiedMax;
1069 DefMO.TiedTo = std::min(UseIdx + 1, TiedMax);
1080 if (MO.TiedTo < TiedMax)
[all...]

Completed in 53 milliseconds