Home
last modified time | relevance | path

Searched refs:TiedToIndex (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/llvm/tools/llvm-exegesis/lib/
DMCInstrDescView.cpp50 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() local
122 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()
DMCInstrDescView.h89 Optional<uint8_t> TiedToIndex; // Set for Reg&Explicit Op. member