/openbsd-src/gnu/usr.bin/perl/cpan/Module-Load-Conditional/t/ |
H A D | 01_Module_Load_Conditional.t | 1 ### Module::Load::Conditional test suite ### 5 # chdir '../lib/Module/Load/Conditional' 6 # if -d '../lib/Module/Load/Conditional'; 26 use_ok( 'Module::Load::Conditional' ); 29 { $Module::Load::Conditional::VERBOSE = 30 $Module::Load::Conditional::VERBOSE = 0; 32 *can_load = *Module::Load::Conditional::can_load 33 = *Module::Load::Conditional::can_load; 34 *check_install = *Module::Load::Conditional::check_install 35 = *Module::Load::Conditional::check_install; [all …]
|
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/MCParser/ |
H A D | AsmCond.h | 1 //===- AsmCond.h - Assembly file conditional assembly ----------*- C++ -*-===// 14 /// AsmCond - Class to support conditional assembly 16 /// The conditional assembly feature (.if, .else, .elseif and .endif) is 19 /// the block of code in the middle of a conditional. 24 NoCond, // no conditional is being processed 25 IfCond, // inside if conditional 26 ElseIfCond, // inside elseif conditional 27 ElseCond // inside else conditional
|
/openbsd-src/gnu/usr.bin/perl/cpan/Module-Load-Conditional/lib/Module/Load/ |
H A D | Conditional.pm | 1 package Module::Load::Conditional; 38 Module::Load::Conditional - Looking up module information / loading at runtime 42 use Module::Load::Conditional qw[can_load check_install requires]; 69 $Module::Load::Conditional::CHECK_INC_HASH = 1; 72 undef $Module::Load::Conditional::CACHE; 74 ### don't have Module::Load::Conditional issue warnings -- 76 $Module::Load::Conditional::VERBOSE = 0; 79 my $err = $Module::Load::Conditional::ERROR; 84 Module::Load::Conditional provides simple ways to query and possibly load any of 111 to $Module::Load::Conditional::VERBOSE [all …]
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
H A D | compare2.c | 44 tf ? x : (tf?64:32); /* { dg-bogus "conditional expression" "case 17" } */ in f() 45 tf ? y : (tf?64:32); /* { dg-bogus "conditional expression" "case 18" } */ in f() 48 tf ? x : (tf?64:-1); /* { dg-bogus "conditional expression" "case 19" } */ in f() 49 tf ? y : (tf?64:-1); /* { dg-warning "conditional expression" "case 20" } */ in f() 52 tf ? x : (tf?64:(tf?128:256)); /* { dg-bogus "conditional expression" "case 21" } */ in f() 53 tf ? y : (tf?64:(tf?128:256)); /* { dg-bogus "conditional expression" "case 22" } */ in f() 56 tf ? x : (tf?64:(tf?128:-1)); /* { dg-bogus "conditional expression" "case 23" } */ in f() 57 tf ? y : (tf?64:(tf?128:-1)); /* { dg-warning "conditional expression" "case 24" } */ in f()
|
/openbsd-src/regress/usr.bin/mandoc/roff/cond/ |
H A D | if.in | 4 if \- the roff conditional instruction 75 After conditional. 80 After conditional. 85 After conditional. 90 After conditional.
|
H A D | if.out_ascii | 4 if - the roff conditional instruction 24 Outer true condition. After conditional. 25 Outer true condition. After conditional. 26 Outer true condition. Inner true condition. After conditional. 27 Outer true condition. After conditional.
|
H A D | close.out_ascii | 4 cond-close - closing conditional macros 21 conditional content following words with whitespace 23 conditional contentfollowing words without whitespace
|
/openbsd-src/gnu/usr.bin/binutils/cpu/ |
H A D | frv.cpu | 1460 ; Conditional insn 1464 (name CONDITIONAL) 1465 (comment "conditional insn") 1587 (df f-cond "conditional arithmetic" () 8 1 UINT #f #f) 2725 (dnop cond "conditional arithmetic" (HASH-PREFIX) h-uint f-cond) 3185 ; Format: conditional INT, Logic, Shift r-r 3187 (define-pmacro (conditional-int-logic name operation op ope comment) 3190 ((UNIT IALL) (FR500-MAJOR I-1) (FR550-MAJOR I-1) (FR400-MAJOR I-1) CONDITIONAL) 3200 (conditional-int-logic cadd add OP_58 OPE4_0 "conditional add") 3201 (conditional-int-logic csub sub OP_58 OPE4_1 "conditional sub") [all …]
|
H A D | ChangeLog | 34 (conditional-store-double): Ditto. 35 (conditional-store-double-u): Ditto. 49 (conditional-float-binary-op): Take profiling data as an argument. 72 (conditional-media-dual-complex, media-quad-complex): Likewise. 78 (conditional-register-transfer): Ditto. 84 (conditional-float-binary-op): Ditto. 133 conditional-media-quad-arith-sat, mdunpackh, 135 conditional-media-quad-multiply, media-quad-complex-i, 137 conditional-media-quad-multiply-acc, munpackh,
|
/openbsd-src/gnu/usr.bin/binutils-2.17/cpu/ |
H A D | frv.cpu | 1859 ; Conditional insn 1863 (name CONDITIONAL) 1864 (comment "conditional insn") 1993 (df f-cond "conditional arithmetic" () 8 1 UINT #f #f) 3163 (dnop cond "conditional arithmetic" (HASH-PREFIX) h-uint f-cond) 3650 ; Format: conditional INT, Logic, Shift r-r 3652 (define-pmacro (conditional-int-logic name operation op ope comment) 3656 (FR400-MAJOR I-1) (FR450-MAJOR I-1) CONDITIONAL) 3666 (conditional-int-logic cadd add OP_58 OPE4_0 "conditional add") 3667 (conditional-int-logic csub sub OP_58 OPE4_1 "conditional sub") [all …]
|
/openbsd-src/gnu/llvm/llvm/examples/IRTransforms/ |
H A D | SimplifyCFG.cpp | 22 // 2. Conditional Branch Elimination (eliminateCondBranches_v[1,2,3]) 23 // This simplification replaces conditional branches with constant integer 142 // Skip blocks without conditional branches as terminators. in eliminateCondBranches_v1() 147 // Skip blocks with conditional branches without ConstantInt conditions. in eliminateCondBranches_v1() 158 // Replace the conditional branch with an unconditional one, by creating in eliminateCondBranches_v1() 160 // conditional one. in eliminateCondBranches_v1() 178 // Skip blocks without conditional branches as terminators. in eliminateCondBranches_v2() 183 // Skip blocks with conditional branches without ConstantInt conditions. in eliminateCondBranches_v2() 194 // Replace the conditional branch with an unconditional one, by creating in eliminateCondBranches_v2() 196 // conditional one. in eliminateCondBranches_v2() [all …]
|
/openbsd-src/gnu/llvm/llvm/tools/llvm-cfi-verify/lib/ |
H A D | GraphBuilder.h | 56 // Does this conditional branch look like it's used for CFI protection? i.e. 73 // - [conditional branch node {target|fallthrough}, base address) 84 // A list of top-level conditional branches that exist at the top of any 90 // conditional branch. 110 // these XRefs are conditional branches, it will build the other potential 123 // conditional branch node to an undefined instruction. The provided 124 // conditional branch node must have exactly one of its subtrees set, and will
|
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/ |
H A D | vms.h | 157 #define ETIR_S_C_MINSTCCOD 200 /* Minimum store-conditional code. */ 158 #define ETIR_S_C_STC_LP 200 /* Store-conditional Linkage Pair. */ 159 #define ETIR_S_C_STC_LP_PSB 201 /* Store-conditional Linkage Pair with Procedure Signature. */ 160 #define ETIR_S_C_STC_GBL 202 /* Store-conditional Address at global address. */ 161 #define ETIR_S_C_STC_GCA 203 /* Store-conditional Code Address at global address. */ 162 #define ETIR_S_C_STC_PS 204 /* Store-conditional Address at psect + offset. */ 163 #define ETIR_S_C_STC_NOP_GBL 205 /* Store-conditional NOP at address of global. */ 164 #define ETIR_S_C_STC_NOP_PS 206 /* Store-conditional NOP at pect + offset. */ 165 #define ETIR_S_C_STC_BSR_GBL 207 /* Store-conditional BSR at global address. */ 166 #define ETIR_S_C_STC_BSR_PS 208 /* Store-conditional BSR at pect + offset. */ [all …]
|
/openbsd-src/gnu/usr.bin/binutils/bfd/ |
H A D | vms.h | 157 #define ETIR_S_C_MINSTCCOD 200 /* Minimum store-conditional code */ 158 #define ETIR_S_C_STC_LP 200 /* Store-conditional Linkage Pair */ 159 #define ETIR_S_C_STC_LP_PSB 201 /* Store-conditional Linkage Pair with Procedure Signature */ 160 #define ETIR_S_C_STC_GBL 202 /* Store-conditional Address at global address */ 161 #define ETIR_S_C_STC_GCA 203 /* Store-conditional Code Address at global address */ 162 #define ETIR_S_C_STC_PS 204 /* Store-conditional Address at psect + offset */ 163 #define ETIR_S_C_STC_NOP_GBL 205 /* Store-conditional NOP at address of global */ 164 #define ETIR_S_C_STC_NOP_PS 206 /* Store-conditional NOP at pect + offset */ 165 #define ETIR_S_C_STC_BSR_GBL 207 /* Store-conditional BSR at global address */ 166 #define ETIR_S_C_STC_BSR_PS 208 /* Store-conditional BSR at pect + offset */ [all …]
|
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
H A D | SCCP.cpp | 1 //===- SCCP.cpp - Sparse Conditional Constant Propagation -----------------===// 9 // This file implements sparse conditional constant propagation and merging: 15 // * Proves conditional branches to be unconditional 66 // runSCCP() - Run the Sparse Conditional Constant Propagation algorithm, 145 /// Sparse Conditional Constant Propagator. 162 // runOnFunction - Run the Sparse Conditional Constant Propagation 182 "Sparse Conditional Constant Propagation", false, false) 185 "Sparse Conditional Constant Propagation", false, false) in INITIALIZE_PASS_DEPENDENCY()
|
/openbsd-src/gnu/llvm/libcxx/include/__type_traits/ |
H A D | conditional.h | 39 struct _LIBCPP_TEMPLATE_VIS conditional { 43 struct _LIBCPP_TEMPLATE_VIS conditional<false, _If, _Then> { 49 using conditional_t _LIBCPP_NODEBUG = typename conditional<_Bp, _IfRes, _ElseRes>::type; 54 using __conditional_t _LIBCPP_NODEBUG = typename conditional<_Bp, _If, _Then>::type;
|
/openbsd-src/gnu/llvm/clang/include/clang/Lex/ |
H A D | PPConditionalDirectiveRecord.h | 10 // a record of conditional directive regions. 23 /// Records preprocessor conditional directive regions and allows 59 /// The locations of conditional directives in source order. 72 /// Returns true if the given range intersects with a conditional 78 /// separated by conditional directive blocks.
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/format/ |
H A D | branch-1.c | 1 /* Test for format checking of conditional expressions. */ 12 …> 1) ? "%d foos" : "%d foo", l); /* { dg-warning "int format" "wrong type in conditional expr" } */ in foo() 13 … 1) ? "%ld foos" : "%d foo", l); /* { dg-warning "int format" "wrong type in conditional expr" } */ in foo() 14 … 1) ? "%d foos" : "%ld foo", l); /* { dg-warning "int format" "wrong type in conditional expr" } */ in foo()
|
/openbsd-src/gnu/gcc/gcc/config/m32c/ |
H A D | cond.md | 25 ; Special note about conditional instructions: GCC always emits the 27 ; insns modify the flags. However, this means that any conditional 34 ; * conditional insns that won't need reload can call 37 ; then split after reload to a separate compare and conditional. 41 ; Unfortunately, there aren't any conditional jumps with long labels, 42 ; so instead we invert the conditional and jump around a regular jump. 148 ;; We need to keep the compare and conditional sets together through 153 ;; These are the post-split patterns for the conditional sets. 169 ;; These are the pre-split patterns for the conditional sets. Yes,
|
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_type_traits.h | 43 // conditional<B, T, F> 49 // is_same<int, conditional<true, int, double>::type>::value 50 // is_same<double, conditional<false, int, double>::type>::value 53 struct conditional { 58 struct conditional<false, T, F> {
|
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/ |
H A D | FlattenCFG.cpp | 9 // Reduce conditional branches in CFG. 39 /// conditional branches. 63 /// If \param [in] BB has more than one predecessor that is a conditional 80 /// if.then: // has two predecessors, both of them contains conditional branch. 106 /// BB3 \ | where, BB1, BB2 contain conditional branches. 122 /// \ / | where BB1, BB2 contain conditional branches. 132 /// In both cases, BB is the common successor of conditional branches. 134 /// its predecessor. In Case 2, BB (BB3) only has conditional branches 171 // Only conditional branches are allowed beyond this point. in FlattenParallelAndOr() 215 // the last conditional branch. in FlattenParallelAndOr() [all …]
|
/openbsd-src/usr.bin/tset/ |
H A D | tset.c | 225 int conditional; /* Baud rate conditionals bitmask. */ member 401 mapp->conditional = 0; in add_mapping() 419 if (mapp->conditional & GT) in add_mapping() 421 mapp->conditional |= LT; in add_mapping() 424 if (mapp->conditional & LT) in add_mapping() 426 mapp->conditional |= GT; in add_mapping() 430 mapp->conditional |= EQ; in add_mapping() 433 mapp->conditional |= NOT; in add_mapping() 442 if (mapp->conditional) in add_mapping() 459 /* If a NOT conditional, reverse the test. */ in add_mapping() [all …]
|
/openbsd-src/gnu/llvm/llvm/lib/Target/MSP430/ |
H A D | MSP430InstrInfo.cpp | 217 // Handle conditional branches. in analyzeBranch() 218 assert(I->getOpcode() == MSP430::JCC && "Invalid conditional branch"); in analyzeBranch() 224 // Working from the bottom, handle the first conditional branch. in analyzeBranch() 232 // Handle subsequent conditional branches. Only handle the case where all in analyzeBranch() 233 // conditional branches branch to the same destination. in analyzeBranch() 237 // Only handle the case where all conditional branches branch to in analyzeBranch() 272 // Conditional branch. in insertBranch() 278 // Two-way Conditional branch. Insert the second branch. in insertBranch()
|
/openbsd-src/gnu/usr.bin/binutils/gas/ |
H A D | cond.c | 1 /* cond.c - conditional assembly pseudo-ops, and .include 44 /* The previous conditional. */ 50 /* Whether a conditional at a higher level is ignoring input. 54 /* Macro nesting level at which this conditional was created. */ 503 /* Give an error if a conditional is unterminated inside a macro or 514 as_bad (_("end of macro inside conditional")); in cond_finish_check() 516 as_bad (_("end of file inside conditional")); in cond_finish_check() 519 _("here is the start of the unterminated conditional")); in cond_finish_check() 523 _("here is the \"else\" of the unterminated conditional")); in cond_finish_check()
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/ |
H A D | unc4.c | 4 /* Tests for un-terminated conditional diagnostics. 16 #if 1 /* { dg-bogus "unterminated" "terminated true conditional" } */ 20 #if 0 /* { dg-bogus "unterminated" "terminated false conditional" } */
|