Home
last modified time | relevance | path

Searched refs:RootOp (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/contrib/dev/acpica/components/parser/
H A Dpsscope.c222 ACPI_PARSE_OBJECT *RootOp) in AcpiPsInitScope() argument
227 ACPI_FUNCTION_TRACE_PTR (PsInitScope, RootOp); in AcpiPsInitScope()
237 Scope->ParseScope.Op = RootOp; in AcpiPsInitScope()
243 ParserState->StartOp = RootOp; in AcpiPsInitScope()
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVVPInstrInfo.td127 class vvp_commutative<SDNode RootOp> :
130 [(RootOp node:$lhs, node:$rhs, node:$mask, node:$vlen),
131 (RootOp node:$rhs, node:$lhs, node:$mask, node:$vlen)]>;
133 class vvp_fma_commutative<SDNode RootOp> :
136 [(RootOp node:$X, node:$Y, node:$Z, node:$mask, node:$vlen),
137 (RootOp node:$X, node:$Z, node:$Y, node:$mask, node:$vlen)]>;
/freebsd/sys/contrib/dev/acpica/components/debugger/
H A Ddbdisply.c532 ACPI_PARSE_OBJECT *RootOp; in AcpiDbDisplayMethodInfo() local
560 RootOp = StartOp; in AcpiDbDisplayMethodInfo()
561 while (RootOp->Common.Parent) in AcpiDbDisplayMethodInfo()
563 RootOp = RootOp->Common.Parent; in AcpiDbDisplayMethodInfo()
566 Op = RootOp; in AcpiDbDisplayMethodInfo()
/freebsd/sys/contrib/dev/acpica/compiler/
H A Daslfold.c535 ACPI_PARSE_OBJECT *RootOp; in TrSimpleConstantReduction() local
546 RootOp = TrAllocateOp (PARSEOP_INTEGER); in TrSimpleConstantReduction()
547 if (!RootOp) in TrSimpleConstantReduction()
552 RootOp->Common.AmlOpcode = AML_INT_EVAL_SUBTREE_OP; in TrSimpleConstantReduction()
555 Op->Common.Parent = RootOp; in TrSimpleConstantReduction()
H A Daslload.c224 ACPI_PARSE_OBJECT *RootOp) in LdLoadNamespace() argument
239 TrWalkParseTree (RootOp, ASL_WALK_VISIT_TWICE, LdNamespace1Begin, in LdLoadNamespace()
244 TrWalkParseTree (RootOp, ASL_WALK_VISIT_TWICE, LdNamespace2Begin, in LdLoadNamespace()
H A Daslcompiler.h1138 ACPI_PARSE_OBJECT *RootOp);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp15848 if (auto *RootOp = dyn_cast<Instruction>(Op)) in vectorizeCmpInsts() local
15849 Changed |= vectorizeRootInstruction(nullptr, RootOp, BB, R, TTI); in vectorizeCmpInsts()