Home
last modified time | relevance | path

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

/netbsd-src/sys/external/bsd/acpica/dist/disassembler/
H A Ddmopcode.c91 ACPI_PARSE_OBJECT *PrevOp = NULL; in AcpiDmDisplayTargetPathname() local
98 PrevOp = Op->Asl.Value.Arg; in AcpiDmDisplayTargetPathname()
113 PrevOp = NextOp; in AcpiDmDisplayTargetPathname()
114 NextOp = PrevOp->Asl.Next; in AcpiDmDisplayTargetPathname()
118 if (!PrevOp) in AcpiDmDisplayTargetPathname()
125 if (PrevOp->Asl.AmlOpcode != AML_INT_NAMEPATH_OP) in AcpiDmDisplayTargetPathname()
132 if (!PrevOp->Asl.Value.String) in AcpiDmDisplayTargetPathname()
139 if (!PrevOp->Asl.Node) in AcpiDmDisplayTargetPathname()
147 if (*PrevOp->Asl.Value.String == '\\') in AcpiDmDisplayTargetPathname()
154 Pathname = AcpiNsGetExternalPathname (PrevOp->Asl.Node); in AcpiDmDisplayTargetPathname()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A 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()
H A DCodeGenDAGPatterns.cpp2944 auto PrevOp = ComplexPatternOperands.find(Child->getName()); in ParseTreePattern() local
2945 if (PrevOp != ComplexPatternOperands.end()) { in ParseTreePattern()
2946 if (PrevOp->getValue() != OperandId) in ParseTreePattern()
/netbsd-src/sys/external/bsd/acpica/dist/parser/
H A Dpsloop.c324 else if (WalkState->PrevOp) in AcpiPsParseLoop()
328 Op = WalkState->PrevOp; in AcpiPsParseLoop()
H A Dpsobject.c531 WalkState->PrevOp = NULL; in AcpiPsCompleteOp()
653 WalkState->PrevOp = NULL; in AcpiPsCompleteOp()
H A Dpsparse.c416 WalkState->PrevOp = Op; in AcpiPsNextParseState()
/netbsd-src/sys/external/bsd/acpica/dist/include/
H A Dacstruct.h125 ACPI_PARSE_OBJECT *PrevOp; /* Last op that was processed */ member
/netbsd-src/sys/external/bsd/acpica/dist/dispatcher/
H A Ddsmethod.c548 ThisWalkState->PrevOp, ThisWalkState)); in AcpiDsCallControlMethod()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp9861 SDValue PrevOp; in matchBinOpReduction() local
9866 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction()
9882 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction()
9887 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction()
9889 PrevOp = Op; in matchBinOpReduction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/
H A 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()