| /openbsd-src/gnu/usr.bin/perl/t/lib/warnings/ |
| H A D | 9uninit | 3 Test the appearance of variable names in "Use of uninitialized value" 30 Use of uninitialized value $m1 in addition (+) at - line 4. 31 Use of uninitialized value $m2 in addition (+) at - line 5. 32 Use of uninitialized value $m2 in addition (+) at - line 6. 33 Use of uninitialized value $m1 in addition (+) at - line 6. 43 Use of uninitialized value $à1 in addition (+) at - line 5. 44 Use of uninitialized value $a2 in addition (+) at - line 6. 45 Use of uninitialized value $a2 in addition (+) at - line 7. 46 Use of uninitialized value $à1 in addition (+) at - line 7. 57 Use o [all...] |
| H A D | 3both | 16 Use of uninitialized value $b in scalar chop at - line 6. 30 Use of uninitialized value $b in scalar chop at - line 6. 67 Use of uninitialized value $b in scalar chop at - line 6. 76 Use of uninitialized value $b in scalar chop at - line 6. 110 Use of uninitialized value $b in scalar chop at - line 5. 122 Use of uninitialized value $b in scalar chop at - line 6. 144 Use of uninitialized value $b in scalar chop at - line 6. 153 Use of uninitialized value $b in scalar chop at - line 6. 184 Use of uninitialized value $b in scalar chop at - line 10. 197 Use of uninitialized value $b in scalar chop at - line 7. [all …]
|
| H A D | 1global | 75 Use of uninitialized value $b in scalar chop at - line 4. 91 Use of uninitialized value $b in scalar chop at - line 5. 100 Use of uninitialized value $b in scalar chop at ./abcd line 1. 110 Use of uninitialized value $b in scalar chop at ./abcd line 1. 120 Use of uninitialized value $b in scalar chop at ./abcd line 1. 142 Use of uninitialized value $b in scalar chop at - line 3. 149 Use of uninitialized value $b in scalar chop at (eval 1) line 1. 156 Use of uninitialized value $b in scalar chop at - line 4. 163 Use of uninitialized value $b in scalar chop at - line 4. 181 Use of uninitialized value $b in scalar chop at - line 5. [all …]
|
| H A D | 4lint | 71 Use of uninitialized value $a in scalar chop at - line 3. 86 Use of uninitialized value $a in scalar chop at - line 3. 101 Use of uninitialized value $a in scalar chop at - line 3. 115 Use of uninitialized value $a in scalar chop at - line 3. 127 Use of uninitialized value $b in scalar chop at (eval 1) line 2. 128 Use of uninitialized value $b in scalar chop at - line 8. 142 Use of uninitialized value $b in scalar chop at (eval 1) line 3. 143 Use of uninitialized value $b in scalar chop at - line 10. 156 Use of uninitialized value $b in scalar chop at (eval 1) line 2. 157 Use of uninitialized value $b in scalar chop at - line 9. [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | Use.h | 43 class Use { 45 Use(const Use &U) = delete; 49 void swap(Use &RHS); 53 ~Use() { in ~Use() 59 Use(User *Parent) : Parent(Parent) {} in Use() function 77 inline const Use &operator=(const Use &RHS); 82 Use *getNext() const { return Next; } in getNext() 89 static void zap(Use *Start, const Use *Stop, bool del = false); 94 Use *Next = nullptr; 95 Use **Prev = nullptr; [all …]
|
| H A D | User.h | 73 User(Type *ty, unsigned vty, Use *, unsigned NumOps) in User() argument 127 template <int Idx, typename U> static Use &OpFrom(const U *that) { in OpFrom() 133 template <int Idx> Use &Op() { in Op() 136 template <int Idx> const Use &Op() const { in Op() 141 const Use *getHungOffOperands() const { in getHungOffOperands() 142 return *(reinterpret_cast<const Use *const *>(this) - 1); in getHungOffOperands() 145 Use *&getHungOffOperands() { return *(reinterpret_cast<Use **>(this) - 1); } in getHungOffOperands() 147 const Use *getIntrusiveOperands() const { in getIntrusiveOperands() 148 return reinterpret_cast<const Use *>(this) - NumUserOperands; in getIntrusiveOperands() 151 Use *getIntrusiveOperands() { in getIntrusiveOperands() [all …]
|
| H A D | OperandTraits.h | 31 static Use *op_begin(SubClass* U) { in op_begin() 35 return reinterpret_cast<Use*>(U) - ARITY; in op_begin() 37 static Use *op_end(SubClass* U) { in op_end() 38 return reinterpret_cast<Use*>(U); in op_end() 69 static Use *op_begin(SubClass* U) { in op_begin() 73 return reinterpret_cast<Use*>(U) - static_cast<User*>(U)->getNumOperands(); in op_begin() 75 static Use *op_end(SubClass* U) { in op_end() 76 return reinterpret_cast<Use*>(U); in op_end() 96 static Use *op_begin(User* U) { in op_begin() 99 static Use *op_end(User* U) { in op_end() [all …]
|
| H A D | Value.h | 76 Use *UseList; 170 use_iterator_impl<Use> UI; 171 explicit user_iterator_impl(Use *U) : UI(U) {} in user_iterator_impl() 211 Use &getUse() const { return *UI; } in getUse() 315 llvm::function_ref<bool(Use &U)> ShouldReplace); 353 using use_iterator = use_iterator_impl<Use>; 354 using const_use_iterator = use_iterator_impl<const Use>; 456 Use *getSingleUndroppableUse(); 457 const Use *getSingleUndroppableUse() const { in getSingleUndroppableUse() 486 void dropDroppableUses(llvm::function_ref<bool(const Use *)> ShouldDrop = [all …]
|
| H A D | AbstractCallSite.h | 26 class Use; variable 98 AbstractCallSite(const Use *U); 106 SmallVectorImpl<const Use *> &CallbackUses); 137 bool isCallee(const Use *U) const { in isCallee() 202 const Use &getCalleeUseForCallback() const { in getCalleeUseForCallback() 227 SmallVector<const Use *, 4u> CallbackUses; in forEachCallbackCallSite() 229 for (const Use *U : CallbackUses) { in forEachCallbackCallSite()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | User.cpp | 53 static_assert(alignof(Use) >= alignof(BasicBlock *), in allocHungoffUses() 57 size_t size = N * sizeof(Use); in allocHungoffUses() 60 Use *Begin = static_cast<Use*>(::operator new(size)); in allocHungoffUses() 61 Use *End = Begin + N; in allocHungoffUses() 64 new (Begin) Use(this); in allocHungoffUses() 76 Use *OldOps = getOperandList(); in growHungoffUses() 78 Use *NewOps = getOperandList(); in growHungoffUses() 89 Use::zap(OldOps, OldOps + OldNumUses, true); in growHungoffUses() 135 ::operator new(Size + sizeof(Use) * Us + DescBytesToAllocate)); in allocateFixedOperandUser() 136 Use *Start = reinterpret_cast<Use *>(Storage + DescBytesToAllocate); in allocateFixedOperandUser() [all …]
|
| H A D | Use.cpp | 14 void Use::swap(Use &RHS) { in swap() 31 unsigned Use::getOperandNo() const { in getOperandNo() 35 void Use::zap(Use *Start, const Use *Stop, bool del) { in zap() 37 (--Stop)->~Use(); in zap()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/NVPTX/ |
| H A D | NVPTX.td | 71 "Use PTX version 3.2">; 73 "Use PTX version 4.0">; 75 "Use PTX version 4.1">; 77 "Use PTX version 4.2">; 79 "Use PTX version 4.3">; 81 "Use PTX version 5.0">; 83 "Use PTX version 6.0">; 85 "Use PTX version 6.1">; 87 "Use PTX version 6.3">; 89 "Use PTX version 6.4">; [all …]
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Encode/ucm/ |
| H A D | symbol.ucm | 107 <UF8E5> \x60 |0 # <Private Use, First> 199 <UF8E6> \xBD |0 # <Private Use, First> 200 <UF8E7> \xBE |0 # <Private Use, First> 236 <UF8E8> \xE2 |0 # <Private Use, First> 237 <UF8E9> \xE3 |0 # <Private Use, First> 238 <UF8EA> \xE4 |0 # <Private Use, First> 240 <UF8EB> \xE6 |0 # <Private Use, First> 241 <UF8EC> \xE7 |0 # <Private Use, First> 242 <UF8ED> \xE8 |0 # <Private Use, First> 243 <UF8EE> \xE9 |0 # <Private Use, First> [all …]
|
| /openbsd-src/gnu/gcc/gcc/config/mips/ |
| H A D | mips.opt | 32 Use PMC-style 'mad' instructions 40 Use Branch Likely instructions, overriding the architecture default 48 Use branch-and-break sequences to check for integer divide by zero 52 Use trap instructions to check for integer divide by zero 60 Use MIPS-DSP instructions 70 Use big-endian byte order 74 Use little-endian byte order 78 Use ROM instead of RAM 82 Use NewABI-style %reloc() assembly operators 114 Use 32-bit floating-point registers [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/ |
| H A D | SystemZRegisterInfo.cpp | 88 for (auto &Use : MRI->reg_nodbg_instructions(VirtReg)) in getRegAllocationHints() local 89 if (SystemZ::getTwoOperandOpcode(Use.getOpcode()) != -1) { in getRegAllocationHints() 93 if (VirtReg == Use.getOperand(0).getReg()) { in getRegAllocationHints() 94 VRRegMO = &Use.getOperand(0); in getRegAllocationHints() 95 OtherMO = &Use.getOperand(1); in getRegAllocationHints() 96 if (Use.isCommutable()) in getRegAllocationHints() 97 CommuMO = &Use.getOperand(2); in getRegAllocationHints() 98 } else if (VirtReg == Use.getOperand(1).getReg()) { in getRegAllocationHints() 99 VRRegMO = &Use.getOperand(1); in getRegAllocationHints() 100 OtherMO = &Use.getOperand(0); in getRegAllocationHints() [all …]
|
| /openbsd-src/gnu/gcc/gcc/config/sparc/ |
| H A D | sparc.opt | 24 Use hardware FP 28 Use hardware FP 44 Use ABI reserved registers 48 Use hardware quad FP instructions 60 Use UltraSPARC Visual Instruction Set extensions 72 Use 64-bit ABI 76 Use 32-bit ABI 80 Use stack bias 84 Use structs on stronger alignment for double-word copies 92 Use features of and schedule code for given CPU [all …]
|
| /openbsd-src/gnu/gcc/gcc/config/rs6000/ |
| H A D | rs6000.opt | 25 Use POWER instruction set 33 Use POWER2 instruction set 37 Use PowerPC instruction set 45 Use PowerPC-64 instruction set 49 Use PowerPC General Purpose group optional instructions 53 Use PowerPC Graphics group optional instructions 57 Use PowerPC V2.01 single field mfcr instruction 61 Use PowerPC V2.02 popcntb instruction 65 Use PowerPC V2.02 floating point rounding instructions 69 Use AltiVec instructions [all …]
|
| /openbsd-src/gnu/gcc/gcc/cp/ |
| H A D | ChangeLog-2000 | 18 (lookup_template_class): Use move-to-front heuristic when looking 35 * call.c (joust): Use DECL_NONSTATIC_MEMBER_FUNCTION_P, not 99 * tree.c (no_linkage_helper): Use CLASS_TYPE_P instead of 160 (note_name_declared_in_class): Use %D on diagnostic. 162 * tree.c (pod_type_p): Use strip_array_types. 166 (cp_has_mutable_p): Use strip_array_types. 172 (add_function_candidate): ... here. Use it. 173 (add_conv_candidate): Use it. 174 * decl.c (grok_ctor_properties): Use it. 187 (get_class_bindings): Use it. [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| H A D | HexagonOptimizeSZextends.cpp | 77 for (Use &U : llvm::make_early_inc_range(Arg.uses())) { in runOnFunction() 79 Instruction* Use = cast<Instruction>(U); in runOnFunction() local 80 SExtInst* SI = new SExtInst(&Arg, Use->getType()); in runOnFunction() 82 (EVT::getEVT(Use->getType()))); in runOnFunction() 83 Use->replaceAllUsesWith(SI); in runOnFunction() 86 Use->eraseFromParent(); in runOnFunction() 130 const Use &TheUse = UI.getUse(); in runOnFunction()
|
| /openbsd-src/gnu/gcc/gcc/config/pdp11/ |
| H A D | pdp11.opt | 36 Use 16-bit abs patterns 48 Use inline patterns for copying memory 60 Use the DEC assembler syntax 64 Use 32 bit float 68 Use 64 bit float 72 Use hardware floating point 76 Use 16 bit int 80 Use 32 bit int 92 Use UNIX assembler syntax
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SPIRV/ |
| H A D | SPIRV.td | 24 "Use SPIR-V version 1.0">; 26 "Use SPIR-V version 1.1">; 28 "Use SPIR-V version 1.2">; 30 "Use SPIR-V version 1.3">; 32 "Use SPIR-V version 1.4">; 34 "Use SPIR-V version 1.5">;
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-reduce/deltas/ |
| H A D | ReduceOperands.cpp | 22 function_ref<Value *(Use &)> ReduceValue) { in extractOperandsFromModule() 48 static bool isOne(Use &Op) { in isOne() 53 static bool isZero(Use &Op) { in isZero() 64 static bool shouldReduceOperand(Use &Op) { in shouldReduceOperand() 79 static bool switchCaseExists(Use &Op, ConstantInt *CI) { in switchCaseExists() 87 auto ReduceValue = [](Use &Op) -> Value * { in reduceOperandsOneDeltaPass() 130 auto ReduceValue = [](Use &Op) -> Value * { in reduceOperandsZeroDeltaPass() 149 auto ReduceValue = [](Use &Op) -> Value * { in reduceOperandsNaNDeltaPass()
|
| H A D | ReduceOperandsSkip.cpp | 37 for (Use &Op : O->operands()) in collectReferencedValues() 45 static bool shouldReduceOperand(Use &Op) { in shouldReduceOperand() 92 function_ref<void(Use &, ArrayRef<Value *>)> Callback) { in opportunities() argument 142 for (Use &Op : I.operands()) { in opportunities() 194 SmallVector<std::pair<Use *, Value *>> Replacements; in extractOperandsFromModule() 195 opportunities(F, [&](Use &Op, ArrayRef<Value *> Candidates) { in extractOperandsFromModule() 217 for (std::pair<Use *, Value *> P : Replacements) { in extractOperandsFromModule()
|
| /openbsd-src/gnu/gcc/libcpp/ |
| H A D | ChangeLog | 105 * Makefile.in: Use -MMD instead of -MD. 122 (_cpp_init_internal_pragmas): Use register_pragma_internal. 209 Use in print_dep assignment. 233 (cpp_set_lang): Use it. 263 (.c.o): Use $(COMPILE). 272 * charset.c (conversion_loop): Use XRESIZEVEC. 276 (cpp_host_to_exec_charset): Use XNEWVEC. 277 (emit_numeric_escape): Use XRESIZEVEC. 278 (cpp_interpret_string): Use XNEWVEC. 279 (cpp_interpret_string): Use XRESIZEVEC. [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | LegacyDivergenceAnalysis.h | 31 class Use; variable 40 bool isDivergentUse(const Use *U) const; 47 bool isUniformUse(const Use *U) const { return !isDivergentUse(U); } in isUniformUse() 71 DenseSet<const Use *> DivergentUses; 98 DenseSet<const Use *> DivergentUses;
|