Home
last modified time | relevance | path

Searched refs:Conditional (Results 1 – 25 of 96) sorted by relevance

1234

/freebsd/sys/contrib/dev/acpica/compiler/
H A Dasltransform.c628 ACPI_PARSE_OBJECT *Conditional = NULL; in TrDoSwitch() local
699 Conditional = CaseOp; in TrDoSwitch()
757 NewOp2->Asl.Parent = Conditional; in TrDoSwitch()
761 Conditional->Asl.Child = NewOp2; in TrDoSwitch()
782 NewOp2->Asl.Parent = Conditional; in TrDoSwitch()
792 Conditional->Asl.Child = Predicate; in TrDoSwitch()
805 Conditional->Asl.Next = NULL; in TrDoSwitch()
1004 Conditional = StartNode->Asl.Child; in TrDoSwitch()
1005 while (Conditional->Asl.Next) in TrDoSwitch()
1007 Conditional = Conditional->Asl.Next; in TrDoSwitch()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DOperatorPrecedence.h30 Conditional = 3, // ? enumerator
H A DOperatorKinds.def103 OVERLOADED_OPERATOR_MULTI(Conditional , "?" , false, true , false)
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DPropertiesBase.td186 code Conditional = "";
489 let Conditional = [{ hasBase && isTypeInfo }];
495 let Conditional = [{ hasBase && isDynamicAlloc }];
499 let Conditional = [{ hasBase && (isTypeInfo || isDynamicAlloc) }];
507 let Conditional = [{ hasBase && !isTypeInfo }];
511 let Conditional = [{ hasBase && !isTypeInfo }];
515 let Conditional = [{ hasBase && !isTypeInfo && isExpr }];
519 let Conditional = [{ hasBase && !isTypeInfo && !isDynamicAlloc && !isExpr }];
526 let Conditional = [{ hasLValuePath }];
701 let Conditional = [{ !identifier }];
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64RegisterBanks.td18 /// Conditional register: NZCV.
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrCMovSetCC.td1 //===-- X86InstrCMovSetCC.td - Conditional Move and SetCC --*- tablegen -*-===//
64 // Conditional moves with folded loads with operands swapped and conditions
H A DX86InstrControl.td72 // Conditional Branches.
296 // Conditional tail calls are similar to the above, but they are branches
420 // Conditional tail calls are similar to the above, but they are branches
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DOperatorPrecedence.cpp53 case tok::question: return prec::Conditional; in getBinOpPrecedence()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoZicond.td10 // Conditional operations extension (Zicond).
H A DRISCVFeatures.td76 "'Zicond' (Integer Conditional Operations)">;
79 "'Zicond' (Integer Conditional Operations)">;
790 "'XVentanaCondOps' (Ventana Conditional Ops)">;
793 "'XVentanaCondOps' (Ventana Conditional Ops)">;
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsCondMov.td1 //===-- MipsCondMov.td - Describe Mips Conditional Moves --*- tablegen -*--===//
9 // This is the Conditional Moves implementation.
13 // Conditional moves:
/freebsd/sys/contrib/device-tree/src/powerpc/fsl/
H A De500mc_power_isa.dtsi54 power-isa-scpm; // Store Conditional Page Mobility
H A De5500_power_isa.dtsi54 power-isa-scpm; // Store Conditional Page Mobility
H A De6500_power_isa.dtsi54 power-isa-scpm; // Store Conditional Page Mobility
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCalledOnceCheck.cpp511 static std::optional<Clarification> clarify(const CFGBlock *Conditional, in clarify() argument
513 if (const Stmt *Terminator = Conditional->getTerminatorStmt()) { in clarify()
514 return NotCalledClarifier{Conditional, SuccWithoutCall}.Visit(Terminator); in clarify()
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiInstrFormats.td285 // Conditional Branch (BR)
343 // Conditional Branch Relative (BRR)
376 // Conditional Set (SCC)
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kInstrCompiler.td51 // Conditional Move Pseudo Instructions
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.cpp1318 NextNonComment->Next->FakeLParens.back() == prec::Conditional) || in getNewLineColumn()
1320 Current.FakeLParens.back() == prec::Conditional)) && in getNewLineColumn()
1708 (PrecedenceLevel == prec::Conditional && in moveStatePastFakeLParens()
1728 if (PrecedenceLevel != prec::Conditional && in moveStatePastFakeLParens()
1739 if (PrecedenceLevel == prec::Conditional && Previous && in moveStatePastFakeLParens()
1745 } else if (PrecedenceLevel == prec::Conditional || in moveStatePastFakeLParens()
H A DWhitespaceManager.cpp258 Change.Tok->FakeLParens[e - 1 - i] == prec::Conditional && in calculateLineBreakInformation()
1024 C.Tok->Next->FakeLParens.back() != prec::Conditional))); in alignChainedConditionals()
1033 C.Tok->FakeLParens.back() != prec::Conditional)); in alignChainedConditionals()
/freebsd/contrib/libcbor/.circleci/
H A Dconfig.yml79 …if grep -q 'Memory Leak\|IPW\|Uninitialized Memory Conditional\|Uninitialized Memory Read' memchec…
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp210 ExprResult Res(ParseRHSOfBinaryExpression(LHS, prec::Conditional)); in ParseConstantExpressionInExprEvalContext()
237 ExprResult Res(ParseRHSOfBinaryExpression(LHS, prec::Conditional)); in ParseCaseExpression()
397 return Level > prec::Unknown && Level != prec::Conditional && in isFoldOperator()
475 if (NextTokPrec == prec::Conditional) { in ParseRHSOfBinaryExpression()
555 } else if (getLangOpts().CPlusPlus && NextTokPrec <= prec::Conditional) in ParseRHSOfBinaryExpression()
576 bool isRightAssoc = ThisPrec == prec::Conditional || in ParseRHSOfBinaryExpression()
H A DParseOpenMP.cpp3454 ExprResult Val(ParseRHSOfBinaryExpression(LHS, prec::Conditional)); in ParseOpenMPParensExpr()
3602 ParseRHSOfBinaryExpression(LHS, prec::Conditional)); in ParseOMPInteropInfo()
4084 Val = ParseRHSOfBinaryExpression(LHS, prec::Conditional); in ParseOpenMPSingleExprWithArgClause()
4324 ParseRHSOfBinaryExpression(LHS, prec::Conditional)); in ParseOpenMPIteratorsExpr()
4336 ParseRHSOfBinaryExpression(LHS, prec::Conditional)); in ParseOpenMPIteratorsExpr()
4350 ParseRHSOfBinaryExpression(LHS, prec::Conditional)); in ParseOpenMPIteratorsExpr()
/freebsd/sys/contrib/device-tree/Bindings/perf/
H A Driscv,pmu.yaml135 /* SBI_PMU_HW_BRANCH_INSTRUCTIONS -> Conditional branch retired */
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DItaniumDemangle.cpp210 case Node::Prec::Conditional: in print()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCInstrInfo.td54 // Conditional mov
57 // Conditional Branch
433 // Conditional branch.

1234