Home
last modified time | relevance | path

Searched refs:TiedOp (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DAsmMatcherEmitter.cpp1764 int TiedOp = -1; in buildInstructionResultOperands() local
1766 TiedOp = OpInfo.getTiedRegister(); in buildInstructionResultOperands()
1767 if (TiedOp != -1) { in buildInstructionResultOperands()
1770 ResOperands[TiedOp].Kind == ResOperand::RenderAsmOperand) in buildInstructionResultOperands()
1772 TiedOp, ResOperands[TiedOp].AsmOperandNum, TiedSrcOperand)); in buildInstructionResultOperands()
1774 ResOperands.push_back(ResOperand::getTiedOp(TiedOp, 0, 0)); in buildInstructionResultOperands()
1824 int TiedOp = -1; in buildAliasResultOperands() local
1826 TiedOp = OpInfo->getTiedRegister(); in buildAliasResultOperands()
1827 if (TiedOp != -1) { in buildAliasResultOperands()
1834 if (ResOperands[TiedOp].Kind == ResOperand::RenderAsmOperand) { in buildAliasResultOperands()
[all …]
/external/swiftshader/third_party/LLVM/utils/TableGen/
DAsmMatcherEmitter.cpp1399 int TiedOp = OpInfo.getTiedRegister(); in BuildInstructionResultOperands() local
1400 if (TiedOp != -1) { in BuildInstructionResultOperands()
1401 ResOperands.push_back(ResOperand::getTiedOp(TiedOp)); in BuildInstructionResultOperands()
1441 int TiedOp = OpInfo->getTiedRegister(); in BuildAliasResultOperands() local
1442 if (TiedOp != -1) { in BuildAliasResultOperands()
1443 ResOperands.push_back(ResOperand::getTiedOp(TiedOp)); in BuildAliasResultOperands()
1572 unsigned TiedOp = OpInfo.TiedOperandNum; in EmitConvertToMCInst() local
1573 assert(i > TiedOp && "Tied operand precedes its target!"); in EmitConvertToMCInst()
1574 CaseOS << " Inst.addOperand(Inst.getOperand(" << TiedOp << "));\n"; in EmitConvertToMCInst()
1575 Signature += "__Tie" + utostr(TiedOp); in EmitConvertToMCInst()
/external/llvm/utils/TableGen/
DAsmMatcherEmitter.cpp1724 int TiedOp = -1; in buildInstructionResultOperands() local
1726 TiedOp = OpInfo.getTiedRegister(); in buildInstructionResultOperands()
1727 if (TiedOp != -1) { in buildInstructionResultOperands()
1728 ResOperands.push_back(ResOperand::getTiedOp(TiedOp)); in buildInstructionResultOperands()
1773 int TiedOp = -1; in buildAliasResultOperands() local
1775 TiedOp = OpInfo->getTiedRegister(); in buildAliasResultOperands()
1776 if (TiedOp != -1) { in buildAliasResultOperands()
1777 ResOperands.push_back(ResOperand::getTiedOp(TiedOp)); in buildAliasResultOperands()
2033 unsigned TiedOp = OpInfo.TiedOperandNum; in emitConvertFuncs() local
2034 assert(i > TiedOp && "Tied operand precedes its target!"); in emitConvertFuncs()
[all …]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DVirtRegRewriter.cpp2558 unsigned TiedOp; in RewriteMBB() local
2559 if (MI.isRegTiedToUseOperand(i, &TiedOp)) { in RewriteMBB()
2560 PhysReg = MI.getOperand(TiedOp).getReg(); in RewriteMBB()