Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/contrib/dev/acpica/components/disassembler/
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-12-stable/contrib/llvm-project/llvm/utils/TableGen/
DRISCVCompressInstEmitter.cpp628 StringRef PrevOp; in emitCompressInstEmitter() local
657 if (CurOp != PrevOp) { in emitCompressInstEmitter()
658 if (!PrevOp.empty()) in emitCompressInstEmitter()
659 CaseStream.indent(6) << "break;\n } // case " + PrevOp + "\n"; in emitCompressInstEmitter()
816 PrevOp = CurOp; in emitCompressInstEmitter()
DCodeGenDAGPatterns.cpp2945 auto PrevOp = ComplexPatternOperands.find(Child->getName()); in ParseTreePattern() local
2946 if (PrevOp != ComplexPatternOperands.end()) { in ParseTreePattern()
2947 if (PrevOp->getValue() != OperandId) in ParseTreePattern()
/freebsd-12-stable/sys/contrib/dev/acpica/components/parser/
Dpsloop.c433 else if (WalkState->PrevOp) in AcpiPsParseLoop()
437 Op = WalkState->PrevOp; in AcpiPsParseLoop()
Dpsobject.c639 WalkState->PrevOp = NULL; in AcpiPsCompleteOp()
761 WalkState->PrevOp = NULL; in AcpiPsCompleteOp()
Dpsparse.c524 WalkState->PrevOp = Op; in AcpiPsNextParseState()
/freebsd-12-stable/sys/contrib/dev/acpica/include/
Dacstruct.h233 ACPI_PARSE_OBJECT *PrevOp; /* Last op that was processed */ member
/freebsd-12-stable/sys/contrib/dev/acpica/components/dispatcher/
Ddsmethod.c656 ThisWalkState->PrevOp, ThisWalkState)); in AcpiDsCallControlMethod()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp9947 SDValue PrevOp; in matchBinOpReduction() local
9952 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction()
9968 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction()
9973 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction()
9975 PrevOp = Op; in matchBinOpReduction()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/
DARMAsmParser.cpp4158 std::unique_ptr<ARMOperand> PrevOp( in tryParseShiftRegister() local
4160 if (!PrevOp->isReg()) in tryParseShiftRegister()
4161 return Error(PrevOp->getStartLoc(), "shift must be of a register"); in tryParseShiftRegister()
4162 int SrcReg = PrevOp->getReg(); in tryParseShiftRegister()