Home
last modified time | relevance | path

Searched refs:InnerCond (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/llvm/test/Transforms/LoopVectorize/X86/
Douter_loop_test1_no_explicit_vect_width.ll41 ; CHECK: %[[InnerCond:.*]] = extractelement <4 x i1> %[[VecCond]], i32 0
42 ; CHECK: br i1 %[[InnerCond]], label %[[ForInc]], label %[[InnerLoop]]
70 ; AVX: %[[InnerCond:.*]] = extractelement <8 x i1> %[[VecCond]], i32 0
71 ; AVX: br i1 %[[InnerCond]], label %[[ForInc]], label %[[InnerLoop]]
/external/llvm-project/llvm/test/Transforms/LoopVectorize/AArch64/
Douter_loop_test1_no_explicit_vect_width.ll40 ; CHECK: %[[InnerCond:.*]] = extractelement <4 x i1> %[[VecCond]], i32 0
41 ; CHECK: br i1 %[[InnerCond]], label %[[ForInc]], label %[[InnerLoop]]
105 ; CHECK: %[[InnerCond:.*]] = extractelement <2 x i1> %[[VecCond]], i32 0
106 ; CHECK: br i1 %[[InnerCond]], label %[[ForInc]], label %[[InnerLoop]]
/external/llvm-project/llvm/test/Transforms/LoopVectorize/
Douter_loop_test1.ll37 ; CHECK: %[[InnerCond:.*]] = extractelement <4 x i1> %[[VecCond]], i32 0
38 ; CHECK: br i1 %[[InnerCond]], label %[[ForInc]], label %[[InnerLoop]]
Douter_loop_test2.ll46 ; CHECK: %[[InnerCond:.+]] = extractelement <4 x i1> %[[InnerVecCond]], i32 0
47 ; CHECK: br i1 %[[InnerCond]], label %[[InnerCrit:.*]], label %[[InnerForBody]]
/external/tensorflow/tensorflow/python/kernel_tests/
Dwhile_v2_test.py748 def InnerCond(inner_x, unused_outer_x, unused_tl): function
755 return control_flow_ops.while_loop(InnerCond, InnerBody,
/external/llvm-project/clang/lib/Sema/
DSemaDeclCXX.cpp16068 Expr *InnerCond = nullptr; in BuildStaticAssertDeclaration() local
16070 std::tie(InnerCond, InnerCondDescription) = in BuildStaticAssertDeclaration()
16072 if (InnerCond && isa<ConceptSpecializationExpr>(InnerCond)) { in BuildStaticAssertDeclaration()
16078 if (!CheckConstraintSatisfaction(InnerCond, Satisfaction)) in BuildStaticAssertDeclaration()
16080 } else if (InnerCond && !isa<CXXBoolLiteralExpr>(InnerCond) in BuildStaticAssertDeclaration()
16081 && !isa<IntegerLiteral>(InnerCond)) { in BuildStaticAssertDeclaration()
16084 << Msg.str() << InnerCond->getSourceRange(); in BuildStaticAssertDeclaration()