Home
last modified time | relevance | path

Searched refs:PrevOp (Results 1 – 12 of 12) sorted by relevance

/freebsd/sys/contrib/dev/acpica/components/disassembler/
H A Ddmopcode.c199 ACPI_PARSE_OBJECT *PrevOp = NULL; in AcpiDmDisplayTargetPathname() local
206 PrevOp = Op->Asl.Value.Arg; in AcpiDmDisplayTargetPathname()
221 PrevOp = NextOp; in AcpiDmDisplayTargetPathname()
222 NextOp = PrevOp->Asl.Next; in AcpiDmDisplayTargetPathname()
226 if (!PrevOp) in AcpiDmDisplayTargetPathname()
233 if (PrevOp->Asl.AmlOpcode != AML_INT_NAMEPATH_OP) in AcpiDmDisplayTargetPathname()
240 if (!PrevOp->Asl.Value.String) in AcpiDmDisplayTargetPathname()
247 if (!PrevOp->Asl.Node) in AcpiDmDisplayTargetPathname()
255 if (*PrevOp->Asl.Value.String == '\\') in AcpiDmDisplayTargetPathname()
262 Pathname = AcpiNsGetExternalPathname (PrevOp->Asl.Node); in AcpiDmDisplayTargetPathname()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DCompressInstEmitter.cpp668 StringRef PrevOp; in emitCompressInstEmitter() local
705 if (CurOp != PrevOp) { in emitCompressInstEmitter()
706 if (!PrevOp.empty()) in emitCompressInstEmitter()
707 CaseStream.indent(6) << "break;\n } // case " + PrevOp + "\n"; in emitCompressInstEmitter()
890 PrevOp = CurOp; in emitCompressInstEmitter()
H A DDXILEmitter.cpp604 int PrevOp = -1; in emitDxilOperation() local
606 if (Desc.OpCode == PrevOp) in emitDxilOperation()
608 PrevOp = Desc.OpCode; in emitDxilOperation()
/freebsd/sys/contrib/dev/acpica/components/parser/
H A Dpsloop.c432 else if (WalkState->PrevOp) in AcpiPsParseLoop()
436 Op = WalkState->PrevOp; in AcpiPsParseLoop()
H A Dpsobject.c639 WalkState->PrevOp = NULL; in AcpiPsCompleteOp()
761 WalkState->PrevOp = NULL; in AcpiPsCompleteOp()
H A Dpsparse.c524 WalkState->PrevOp = Op; in AcpiPsNextParseState()
/freebsd/sys/contrib/dev/acpica/include/
H A Dacstruct.h233 ACPI_PARSE_OBJECT *PrevOp; /* Last op that was processed */ member
/freebsd/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsmethod.c654 ThisWalkState->PrevOp, ThisWalkState)); in AcpiDsCallControlMethod()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.cpp3096 auto [PrevOp, Inserted] = in ParseTreePattern()
3098 if (!Inserted && PrevOp->getValue() != OperandId) { in ParseTreePattern()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp5614 const auto &PrevOp = ((AMDGPUOperand &)*Operands[InvalidOprIdx - 1]); in isInvalidVOPDY() local
5615 return PrevOp.isToken() && PrevOp.getToken() == "::"; in isInvalidVOPDY()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp12888 SDValue PrevOp; in matchBinOpReduction() local
12893 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction()
12909 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction()
12914 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction()
12916 PrevOp = Op; in matchBinOpReduction()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp4317 std::unique_ptr<ARMOperand> PrevOp( in tryParseShiftRegister() local
4319 if (!PrevOp->isReg()) in tryParseShiftRegister()
4320 return Error(PrevOp->getStartLoc(), "shift must be of a register"); in tryParseShiftRegister()
4321 MCRegister SrcReg = PrevOp->getReg(); in tryParseShiftRegister()