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

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp559 unsigned TiedTo = Info.getTiedOperand(); local
561 Expr *OutputExpr = Exprs[TiedTo];
565 assert(TiedTo < InputMatchedToOutput.size() && "TiedTo value out of range");
566 if (InputMatchedToOutput[TiedTo] != ~0U) {
569 << TiedTo; local
570 targetDiag(NS->getInputExpr(InputMatchedToOutput[TiedTo])->getBeginLoc(),
572 << TiedTo;
575 InputMatchedToOutput[TiedTo] = i;
630 if (isOperandMentioned(TiedTo, Piece
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineOperand.h87 /// TiedTo - Non-zero when this register operand is tied to another register
90 unsigned TiedTo : 4;
441 return TiedTo;
796 Op.TiedTo = 0;
H A DMachineInstr.h1646 getOperand(findTiedOperandIdx(OpIdx)).TiedTo = 0;
1647 MO.TiedTo = 0;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineInstr.cpp271 NewMO->TiedTo = 0;
1035 // MachineOperand::TiedTo is 4 bits wide.
1040 /// Use and def operands can be tied together, indicated by a non-zero TiedTo
1041 /// field. TiedTo can have these values:
1044 /// 1 to TiedMax-1: Tied to getOperand(TiedTo-1).
1059 UseMO.TiedTo = DefIdx + 1;
1065 UseMO.TiedTo = TiedMax;
1069 DefMO.TiedTo = std::min(UseIdx + 1, TiedMax);
1079 // Normally TiedTo is in range.
1080 if (MO.TiedTo < TiedMa
[all...]
H A DMachineVerifier.cpp1617 int TiedTo = MCID.getOperandConstraint(MONum, MCOI::TIED_TO); local
1618 if (TiedTo != -1) {
1623 else if (unsigned(TiedTo) != MI->findTiedOperandIdx(MONum))
1626 const MachineOperand &MOTied = MI->getOperand(TiedTo);
1628 report("Tied counterpart must be a register", &MOTied, TiedTo);
1631 report("Tied physical registers must match.", &MOTied, TiedTo);
H A DMachineOperand.cpp264 TiedTo = 0;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp6729 auto TiedTo = Desc.getOperandConstraint(Inst.getNumOperands(),
6731 if (TiedTo != -1) {
6732 assert((unsigned)TiedTo < Inst.getNumOperands());
6734 Inst.addOperand(Inst.getOperand(TiedTo));

Completed in 98 milliseconds