| /llvm-project-15.0.7/llvm/test/CodeGen/SystemZ/ |
| H A D | call-04.ll | 1 ; Test conditional sibling calls. 11 ; Check a conditional sibling call. 65 ; Check a conditional sibling call - unsigned compare. 83 ; Check a conditional sibling call - 64-bit compare. 137 ; Check a conditional sibling call - high compare. 173 ; Check a conditional sibling call - equal compare. 209 ; Check a conditional sibling call - immediate slt. 227 ; Check a conditional sibling call - immediate sle. 245 ; Check a conditional sibling call - immediate sgt. 281 ; Check a conditional sibling call - immediate eq. [all …]
|
| H A D | call-05.ll | 1 ; Test conditional sibling calls. 11 ; Check a conditional sibling call. 67 ; Check a conditional sibling call - unsigned compare. 85 ; Check a conditional sibling call - 64-bit compare. 139 ; Check a conditional sibling call - high compare. 175 ; Check a conditional sibling call - equal compare. 211 ; Check a conditional sibling call - immediate slt. 229 ; Check a conditional sibling call - immediate sle. 247 ; Check a conditional sibling call - immediate sgt. 283 ; Check a conditional sibling call - immediate eq. [all …]
|
| H A D | trap-01.ll | 1 ; Test traps and conditional traps 17 ; Check conditional compare immediate and trap 35 ; Check conditional compare grande immediate and trap 53 ; Check conditional compare logical immediate and trap 71 ; Check conditional compare grande logical immediate and trap 89 ; Check conditional compare and trap 107 ; Check conditional compare grande and trap 125 ; Check conditional compare logical and trap 143 ; Check conditional compare logical grande and trap 161 ; Check conditional traps that don't have a valid Compare and Trap
|
| H A D | trap-02.ll | 1 ; Test zE12 conditional traps 7 ; Check conditional compare logical and trap 26 ; Check conditional compare logical grande and trap
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/meta/meta.trans/meta.trans.sign/ |
| H A D | make_signed.pass.cpp | 58 test_make_signed< wchar_t, std::conditional<sizeof(wchar_t) == 4, int, short>::type >(); in main() 59 …test_make_signed< const wchar_t, std::conditional<sizeof(wchar_t) == 4, const int, const short>::t… in main() 60 …test_make_signed< const Enum, std::conditional<sizeof(Enum) == sizeof(int), const int, const signe… in main() 61 test_make_signed< BigEnum, std::conditional<sizeof(long) == 4, long long, long>::type >(); in main()
|
| H A D | make_unsigned.pass.cpp | 58 …test_make_unsigned<wchar_t, std::conditional<sizeof(wchar_t) == 4, unsigned int, unsigned short>::… in main() 59 …test_make_unsigned<const wchar_t, std::conditional<sizeof(wchar_t) == 4, const unsigned int, const… in main() 60 …test_make_unsigned<const Enum, std::conditional<sizeof(Enum) == sizeof(int), const unsigned int, c… in main() 62 std::conditional<sizeof(long) == 4, unsigned long long, unsigned long>::type> (); in main()
|
| /llvm-project-15.0.7/libcxx/include/__type_traits/ |
| H A D | conditional.h | 39 struct _LIBCPP_TEMPLATE_VIS conditional {typedef _If type;}; 41 struct _LIBCPP_TEMPLATE_VIS conditional<false, _If, _Then> {typedef _Then type;}; 45 using conditional_t = typename conditional<_Bp, _IfRes, _ElseRes>::type; 49 template <bool _Bp, class _If, class _Then> using __conditional_t = typename conditional<_Bp, _If, …
|
| H A D | decay.h | 37 typedef _LIBCPP_NODEBUG typename conditional 41 typename conditional
|
| /llvm-project-15.0.7/lldb/test/Shell/ScriptInterpreter/Lua/Inputs/ |
| H A D | watchpoint2.in | 6 print("conditional watchpoint") 10 # CHECK-COUNT-1: conditional watchpoint 11 # CHECK-NOT: conditional watchpoint
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/readability/ |
| H A D | simplify-boolean-expr.rst | 57 2. The conditional return ``if (!b) return false; return true;`` has an 60 3. The conditional return ``if (i < 0) return false; return true;`` becomes 63 The conditional return ``if (i != 0) return false; return true;`` becomes 66 4. The conditional return ``if (p) return true; return false;`` has an 74 5. The conditional return ``if (i & 1) return true; else return false;`` has 79 ``struct X``, the conditional return ``if (x) return true; return false;`` 87 If `true`, conditional boolean return statements at the end of an 92 If `true`, conditional boolean assignments at the end of an ``if/else
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/ |
| H A D | conditional.pass.cpp | 19 ASSERT_SAME_TYPE(char, std::conditional<true, char, int>::type); in main() 20 ASSERT_SAME_TYPE(int, std::conditional<false, char, int>::type); in main()
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | cxx0x-defaulted-functions.cpp | 213 struct conditional; 216 struct conditional<true, X, Y> { typedef X type; }; argument 219 struct conditional<false, X, Y> { typedef Y type; }; argument 225 using T = typename conditional<B, const X &, int>::type; 229 using U = typename conditional<B, X&&, const X&>::type;
|
| H A D | decltype.cpp | 105 class conditional { 109 void foo(conditional<decltype((1),int>) { // expected-note 2 {{to match this '('}} expected-error …
|
| /llvm-project-15.0.7/llvm/test/MC/MachO/AArch64/ |
| H A D | reloc-errors.s | 3 ; CHECK: error: conditional branch requires assembler-local label. 'external' is external. 6 ; CHECK: error: Invalid relocation on conditional branch
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/ |
| H A D | branch-clone.rst | 8 branches in conditional operators. 31 If this is the intended behavior, then there is no reason to use a conditional 80 Finally, the check also examines conditional operators and reports code like: 86 Unlike if statements, the check does not detect chains of conditional
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/ |
| H A D | reset.pass.cpp | 23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_pointer() 60 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_nullptr() 84 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_no_arg()
|
| /llvm-project-15.0.7/libcxx/test/std/numerics/c.math/ |
| H A D | abs.pass.cpp | 20 typedef typename std::conditional<sizeof(T) < sizeof(int), int, T>::type type; 50 typedef std::conditional< in main()
|
| /llvm-project-15.0.7/llvm/test/MC/ARM/ |
| H A D | implicit-it.s | 21 @ A single conditional instruction without IT block 31 @ A single conditional instruction with IT block 42 @ A single conditional instruction with IT block, but incorrect condition 50 @ Multiple conditional instructions in an IT block, inverted and non-inverted conditions
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | STLForwardCompat.h | 38 : std::conditional<bool(B1::value), conjunction<Bn...>, B1>::type {}; 46 : std::conditional<bool(B1::value), B1, disjunction<Bn...>>::type {};
|
| /llvm-project-15.0.7/llvm/test/MC/ELF/ |
| H A D | lto-set-conditional.s | 18 # Verify that pending conditional symbols are emitted next 32 # Remaining conditional symbols are emitted immediately
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/ |
| H A D | sanitizer_type_traits_test.cpp | 33 ASSERT_TRUE((is_same<int, conditional<true, int, double>::type>::value)); in TEST() 34 ASSERT_TRUE((is_same<double, conditional<false, int, double>::type>::value)); in TEST()
|
| /llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/ |
| H A D | nolocinfo.ll | 9 ; Remarks for conditional branches need debug location information for the 12 ; CHECK: remark: nolocinfo.c:3:5: most popular destination for conditional branches at <UNKNOWN LOC…
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_type_traits.h | 53 struct conditional { 58 struct conditional<false, T, F> {
|
| /llvm-project-15.0.7/llvm/lib/Target/M68k/MCTargetDesc/ |
| H A D | M68kMCCodeEmitter.cpp | 79 using type = typename std::conditional< 81 typename std::conditional< 83 typename std::conditional<Size == 32, uint32_t,
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/ |
| H A D | pointer_deleter.pass.cpp | 57 typedef typename std::conditional<!IsArray, int, int[]>::type VT; in test_sfinae() 107 typedef typename std::conditional<!IsArray, int, int[]>::type VT; in test_noexcept() 208 typedef typename std::conditional<!IsArray, A, A[]>::type VT; in test_basic() 252 typedef typename std::conditional<IsArray, int[], int>::type VT2; in test_basic() 294 typedef typename std::conditional<!IsArray, A, A[]>::type VT; in test_nullptr()
|