Home
last modified time | relevance | path

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

123456

/llvm-project-15.0.7/clang-tools-extra/pseudo/lib/
H A DDirectiveTree.cpp80 DirectiveTree::Conditional Conditional; in parse() local
81 Conditional.Branches.emplace_back(); in parse()
83 parseConditional(&Conditional); in parse()
84 Tree->Chunks.push_back(std::move(Conditional)); in parse()
165 const DirectiveTree::Conditional &Conditional, in dump() argument
168 const auto &Branch = Conditional.Branches[I]; in dump()
172 dump(OS, Conditional.End, Indent); in dump()
204 OSTREAM_DUMP(DirectiveTree::Conditional)
271 return walk((DirectiveTree::Conditional &)C); in walk()
285 Score walk(DirectiveTree::Conditional &C) { in walk()
[all …]
/llvm-project-15.0.7/clang-tools-extra/pseudo/include/clang-pseudo/
H A DDirectiveTree.h73 struct Conditional { struct
107 const DirectiveTree::Conditional &); argument
149 Chunk(Conditional C) : ConditionalVariant(std::move(C)) {} in Chunk()
158 CONVERSION(const, Conditional);
159 CONVERSION(, Conditional);
166 llvm::Optional<Conditional> ConditionalVariant;
/llvm-project-15.0.7/compiler-rt/lib/gwp_asan/tests/
H A Denable_disable.cpp43 pthread_cond_t Conditional = PTHREAD_COND_INITIALIZER; variable
52 pthread_cond_signal(&Conditional); in enableMalloc()
70 pthread_cond_wait(&Conditional, &Mutex); in TEST_F()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/altera/
H A DUnrollLoopsCheck.cpp125 const Expr *Conditional = ForLoop->getCond(); in hasKnownBounds() local
127 if (!Initializer || !Conditional || !Increment) in hasKnownBounds()
143 if (const auto *BinaryOp = dyn_cast<BinaryOperator>(Conditional)) { in hasKnownBounds()
175 const Expr *Conditional = ForLoop->getCond(); in hasLargeNumIterations() local
190 const auto *BinaryOp = cast<BinaryOperator>(Conditional); in hasLargeNumIterations()
/llvm-project-15.0.7/clang-tools-extra/pseudo/unittests/
H A DDirectiveTreeTest.cpp81 const DirectiveTree::Conditional &Ifdef(PP.Chunks[2]); in TEST()
91 const DirectiveTree::Conditional &If(HasFoo.Chunks[0]); in TEST()
146 const DirectiveTree::Conditional &X(PP.Chunks[2]); in TEST()
297 const DirectiveTree::Conditional &Cond(C); in TEST()
347 ((const DirectiveTree::Conditional &)Tree.Chunks[4]).Branches[0].second; in TEST()
/llvm-project-15.0.7/llvm/test/MC/Disassembler/Hexagon/
H A Dalu32_pred.txt4 # Conditional add
26 # Conditional shift halfword
48 # Conditional combine
60 # Conditional logical operations
92 # Conditional subtract
104 # Conditional sign extend
126 # Conditional transfer
138 # Conditional zero extend
/llvm-project-15.0.7/llvm/test/ThinLTO/X86/
H A Dnewpm-basic.ll14 ; CHECK-NOT: Interprocedural Sparse Conditional Constant Propagation
16 ; CHECK-NOT: Interprocedural Sparse Conditional Constant Propagation
/llvm-project-15.0.7/libc/src/__support/CPP/
H A DTypeTraits.h145 template <bool _, class TrueT, class FalseT> struct Conditional {
148 template <class TrueT, class FalseT> struct Conditional<false, TrueT, FalseT> {
152 using ConditionalType = typename Conditional<Cond, TrueT, FalseT>::type;
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/readability/
H A Dfunction-cognitive-complexity.rst45 * Conditional operators:
74 * Conditional operators:
105 * Conditional operators:
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DOperatorPrecedence.h30 Conditional = 3, // ? enumerator
/llvm-project-15.0.7/clang-tools-extra/test/modularize/
H A DProblemsInconsistent.modularize66 # CHECK-NEXT: error: Conditional expression instance 'SYMBOL1' has different values in this header,…
76 # CHECK-NEXT: error: Conditional expression instance 'SYMBOL2' has different values in this header,…
86 # CHECK-NEXT: error: Conditional expression instance 'defined(SYMBOL1)' has different values in thi…
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64RegisterBanks.td18 /// Conditional register: NZCV.
/llvm-project-15.0.7/clang/include/clang/AST/
H A DPropertiesBase.td185 code Conditional = "";
482 let Conditional = [{ hasBase && isTypeInfo }];
488 let Conditional = [{ hasBase && isTypeInfo }];
492 let Conditional = [{ hasBase && !isTypeInfo }];
496 let Conditional = [{ hasBase && !isTypeInfo }];
500 let Conditional = [{ hasBase && !isTypeInfo && isExpr }];
504 let Conditional = [{ hasBase && !isTypeInfo && !isExpr }];
511 let Conditional = [{ hasLValuePath }];
688 let Conditional = [{ !identifier }];
/llvm-project-15.0.7/llvm/utils/valgrind/
H A Di386-pc-linux-gnu.supp25 ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
H A Dx86_64-pc-linux-gnu.supp24 ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
/llvm-project-15.0.7/clang/lib/Basic/
H A DOperatorPrecedence.cpp53 case tok::question: return prec::Conditional; in getBinOpPrecedence()
/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/tests/
H A Dwrappers_c_test.cpp424 static pthread_cond_t Conditional = PTHREAD_COND_INITIALIZER; variable
437 pthread_cond_signal(&Conditional); in enableMalloc()
455 pthread_cond_wait(&Conditional, &Mutex); in TEST()
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Denum.cpp73 namespace Conditional { namespace
/llvm-project-15.0.7/llvm/test/MC/Mips/
H A Dmicromips-movcond-instructions.s8 # Move Conditional
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_type_traits_test.cpp32 TEST(SanitizerCommon, Conditional) { in TEST() argument
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Difcvt_canFallThroughTo.mir62 # Conditional BX_RET and then loop back to bb.1
/llvm-project-15.0.7/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
/llvm-project-15.0.7/llvm/test/MC/Lanai/
H A Dconditional_inst.s62 ! Conditional ALU
/llvm-project-15.0.7/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:
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/
H A Dmacro-to-enum.rst31 (Conditional include guards are exempt from this constraint.)

123456