Home
last modified time | relevance | path

Searched refs:DestOp (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/contrib/dev/acpica/compiler/
H A Daslprintf.c170 ACPI_PARSE_OBJECT *DestOp);
189 ACPI_PARSE_OBJECT *DestOp; in OpcDoPrintf() local
194 DestOp = TrAllocateOp (PARSEOP_DEBUG); in OpcDoPrintf()
195 DestOp->Asl.AmlOpcode = AML_DEBUG_OP; in OpcDoPrintf()
196 DestOp->Asl.Parent = Op; in OpcDoPrintf()
197 DestOp->Asl.LogicalLineNumber = Op->Asl.LogicalLineNumber; in OpcDoPrintf()
199 OpcParsePrintf (Op, DestOp); in OpcDoPrintf()
219 ACPI_PARSE_OBJECT *DestOp; in OpcDoFprintf() local
224 DestOp = Op->Asl.Child; in OpcDoFprintf()
225 Op->Asl.Child = DestOp->Asl.Next; in OpcDoFprintf()
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenInstruction.cpp355 std::pair<unsigned, unsigned> DestOp = (FirstIsDest ? LHSOp : RHSOp); in ParseConstraint() local
361 if (DestOp.first >= Ops.NumDefs) in ParseConstraint()
378 unsigned DestFlatOpNo = Ops.getFlattenedOperandNumber(DestOp); in ParseConstraint()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1476 SDValue DestOp; in getBitcastedAnyExtOrTrunc() local
1480 DestOp = getBitcast(EVT::getIntegerVT(*Context, Size), Op); in getBitcastedAnyExtOrTrunc()
1481 if (DestOp.getValueType() == VT) in getBitcastedAnyExtOrTrunc()
1482 return DestOp; in getBitcastedAnyExtOrTrunc()
1484 return getAnyExtOrTrunc(DestOp, DL, VT); in getBitcastedAnyExtOrTrunc()
1491 SDValue DestOp; in getBitcastedSExtOrTrunc() local
1495 DestOp = getBitcast(MVT::getIntegerVT(Size), Op); in getBitcastedSExtOrTrunc()
1496 if (DestOp.getValueType() == VT) in getBitcastedSExtOrTrunc()
1497 return DestOp; in getBitcastedSExtOrTrunc()
1499 return getSExtOrTrunc(DestOp, DL, VT); in getBitcastedSExtOrTrunc()
[all …]