Searched refs:TiedToIndex (Results 1 – 2 of 2) sorted by relevance
50 bool Operand::isTied() const { return TiedToIndex.hasValue(); } in isTied()64 unsigned Operand::getTiedToIndex() const { return *TiedToIndex; } in getTiedToIndex()121 int TiedToIndex = Description->getOperandConstraint(OpIndex, MCOI::TIED_TO); in create() local122 assert((TiedToIndex == -1 || in create()123 (0 <= TiedToIndex && in create()124 TiedToIndex < std::numeric_limits<uint8_t>::max())) && in create()126 if (TiedToIndex >= 0) in create()127 Operand.TiedToIndex = TiedToIndex; in create()
89 Optional<uint8_t> TiedToIndex; // Set for Reg&Explicit Op. member