| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMParallelDSP.cpp | 340 if (auto *Ld = dyn_cast<LoadInst>(SExt->getOperand(0))) { in IsNarrowSequence() local 342 return LoadPairs.count(Ld) || OffsetLoads.count(Ld); in IsNarrowSequence() 362 auto *Ld = dyn_cast<LoadInst>(&I); in RecordMemoryOps() local 363 if (!Ld || !Ld->isSimple() || in RecordMemoryOps() 364 !Ld->hasOneUse() || !isa<SExtInst>(Ld->user_back())) in RecordMemoryOps() 366 Loads.push_back(Ld); in RecordMemoryOps()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | LoopVersioningLICM.cpp | 366 LoadInst *Ld = dyn_cast<LoadInst>(I); in instructionSafeForVersioning() local 367 if (!Ld || !Ld->isSimple()) { in instructionSafeForVersioning() 372 Value *Ptr = Ld->getPointerOperand(); in instructionSafeForVersioning()
|
| H A D | LoopUnrollAndJamPass.cpp | 265 if (auto *Ld = dyn_cast<LoadInst>(&I)) { in computeUnrollAndJamCount() local 266 Value *V = Ld->getPointerOperand(); in computeUnrollAndJamCount()
|
| H A D | GVNHoist.cpp | 1069 if (auto *Ld = dyn_cast<LoadInst>(Repl)) { in makeGepOperandsAvailable() local 1070 Gep = dyn_cast<GetElementPtrInst>(Ld->getPointerOperand()); in makeGepOperandsAvailable()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | GCRootLowering.cpp | 214 Value *Ld = new LoadInst(CI->getType(), CI->getArgOperand(1), "", CI); in DoLowering() local 215 Ld->takeName(CI); in DoLowering() 216 CI->replaceAllUsesWith(Ld); in DoLowering()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| H A D | SystemZTargetTransformInfo.cpp | 887 if (LoadInst *Ld = dyn_cast<LoadInst>(I->getOperand(0))) in getCmpSelInstrCost() local 889 if (!Ld->hasOneUse() && Ld->getParent() == I->getParent() && in getCmpSelInstrCost() 979 isFoldableLoad(const LoadInst *Ld, const Instruction *&FoldedValue) { in isFoldableLoad() argument 980 if (!Ld->hasOneUse()) in isFoldableLoad() 982 FoldedValue = Ld; in isFoldableLoad() 983 const Instruction *UserI = cast<Instruction>(*Ld->user_begin()); in isFoldableLoad() 984 unsigned LoadedBits = getScalarSizeInBits(Ld->getType()); in isFoldableLoad()
|
| H A D | SystemZTargetTransformInfo.h | 110 bool isFoldableLoad(const LoadInst *Ld, const Instruction *&FoldedValue);
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/m68k/ |
| H A D | lb1sf68.S | 676 Ld$den: 683 Ld$infty: 684 Ld$overflow: 693 Ld$underflow: 701 Ld$inop: 709 Ld$div$0: 1197 bra Ld$overflow 1382 bne Ld$inop | 1383 bra Ld$infty | 1439 bhi Ld$inop | if d0 > 0x7ff00000 or equal and [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libgcc/config/m68k/ |
| H A D | lb1sf68.S | 685 Ld$den: 692 Ld$infty: 693 Ld$overflow: 702 Ld$underflow: 710 Ld$inop: 718 Ld$div$0: 1206 bra Ld$overflow 1391 bne Ld$inop | 1392 bra Ld$infty | 1448 bhi Ld$inop | if d0 > 0x7ff00000 or equal and [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | LoopAccessAnalysis.cpp | 1845 auto *Ld = dyn_cast<LoadInst>(&I); in analyzeLoop() local 1846 if (!Ld) { in analyzeLoop() 1847 recordAnalysis("CantVectorizeInstruction", Ld) in analyzeLoop() 1852 if (!Ld->isSimple() && !IsAnnotatedParallel) { in analyzeLoop() 1853 recordAnalysis("NonSimpleLoad", Ld) in analyzeLoop() 1860 Loads.push_back(Ld); in analyzeLoop() 1861 DepChecker->addAccess(Ld); in analyzeLoop() 1863 collectStridedAccess(Ld); in analyzeLoop()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86InstrFragmentsSIMD.td | 836 auto *Ld = cast<LoadSDNode>(N); 837 return Ld->getAlignment() >= Ld->getMemoryVT().getStoreSize(); 891 auto *Ld = cast<LoadSDNode>(N); 893 Ld->getAlignment() >= Ld->getMemoryVT().getStoreSize(); 1066 auto *Ld = cast<MaskedLoadSDNode>(N); 1067 return Ld->getAlignment() >= Ld->getValueType(0).getStoreSize();
|
| H A D | X86ISelLowering.cpp | 4587 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) { in MatchingStackOffset() local 4595 SDValue Ptr = Ld->getBasePtr(); in MatchingStackOffset() 8433 static bool findEltLoadSrc(SDValue Elt, LoadSDNode *&Ld, int64_t &ByteOffset) { in findEltLoadSrc() argument 8438 Ld = BaseLd; in findEltLoadSrc() 8447 return findEltLoadSrc(Elt.getOperand(0), Ld, ByteOffset); in findEltLoadSrc() 8451 if ((Idx % 8) == 0 && findEltLoadSrc(Elt.getOperand(0), Ld, ByteOffset)) { in findEltLoadSrc() 8463 findEltLoadSrc(Src, Ld, ByteOffset)) { in findEltLoadSrc() 8559 LoadSDNode *Ld = Loads[EltIdx]; in EltsFromConsecutiveLoads() local 8564 Loads[BaseIdx] == Ld && ByteOffsets[BaseIdx] == 0); in EltsFromConsecutiveLoads() 8566 return DAG.areNonVolatileConsecutiveLoads(Ld, Base, BaseSizeInBytes, in EltsFromConsecutiveLoads() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelDAGToDAG.cpp | 1380 SDNode *Ld = CurDAG->getMachineNode(Opc, dl, ResTys, Ops); in SelectLoad() local 1381 SDValue SuperReg = SDValue(Ld, 0); in SelectLoad() 1386 ReplaceUses(SDValue(N, NumVecs), SDValue(Ld, 1)); in SelectLoad() 1392 CurDAG->setNodeMemRefs(cast<MachineSDNode>(Ld), {MemOp}); in SelectLoad() 1411 SDNode *Ld = CurDAG->getMachineNode(Opc, dl, ResTys, Ops); in SelectPostLoad() local 1414 ReplaceUses(SDValue(N, NumVecs), SDValue(Ld, 0)); in SelectPostLoad() 1417 SDValue SuperReg = SDValue(Ld, 1); in SelectPostLoad() 1426 ReplaceUses(SDValue(N, NumVecs + 1), SDValue(Ld, 2)); in SelectPostLoad() 1627 SDNode *Ld = CurDAG->getMachineNode(Opc, dl, ResTys, Ops); in SelectLoadLane() local 1628 SDValue SuperReg = SDValue(Ld, 0); in SelectLoadLane() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelDAGToDAG.cpp | 1144 auto *Ld = dyn_cast<LoadSDNode>(Src); in Select() local 1145 if (!Ld) in Select() 1147 EVT MemVT = Ld->getMemoryVT(); in Select() 1161 SDValue Operands[] = {Ld->getBasePtr(), in Select() 1163 Ld->getChain()}; in Select()
|
| /netbsd-src/tests/usr.bin/xlint/lint1/ |
| H A D | emit.exp-ln | 60 174 c 0.174 s2 "%-3d%+3d% d%#x%03d%*.*s%6.2f%hd%ld%Ld%qd" i 9my_printf f2 PcC PC V
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/mips/ |
| H A D | sr71k.md | 66 ;; Floating point stores go to Ld/St and go to MOV in the floating point 69 ;; Floating point loads go to Ld/St and go to LOAD in the floating point
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/mips/ |
| H A D | sr71k.md | 66 ;; Floating point stores go to Ld/St and go to MOV in the floating point 69 ;; Floating point loads go to Ld/St and go to LOAD in the floating point
|
| /netbsd-src/external/gpl3/binutils/dist/bfd/po/ |
| H A D | es.po | 738 msgid "Dwarf Error: Line info section is too small (%Ld)" 739 msgstr "Error enano: Línea informativa de sección es demasiado corta (%Ld)" 1931 msgid "%B(%#Lx): error: Cannot create STM32L4XX veneer. Jump out of range by %Ld bytes. Cannot enco… 1932 msgstr "%B(%#Lx): error: no puede crear veneer STM32L4XX. Omisión de límite por %Ld bytes. No puede… 2107 msgid "%B, section %A: relocation %s with non-zero addend %Ld against local symbol" 2108 msgstr "%B, sección %A: reubicación %s con adición de dirección sin cero %Ld contra el símbolo loca… 2112 msgid "%B, section %A: relocation %s with non-zero addend %Ld against symbol `%s'" 2113 msgstr "%B, sección %A: reubicación %s con adición %Ld sin ceros contra el símbolo «%s»" 2969 msgid "%B: warning: unaligned small data access for entry: {%Ld, %Ld, %Ld}, addr = %#Lx, align = %#… 2970 msgstr "%B: aviso: acceso de datos pequeño desalineados para entradas: {%Ld, %Ld, %Ld}, direc = %#L… [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/bfd/po/ |
| H A D | es.po | 738 msgid "Dwarf Error: Line info section is too small (%Ld)" 739 msgstr "Error enano: Línea informativa de sección es demasiado corta (%Ld)" 1931 msgid "%B(%#Lx): error: Cannot create STM32L4XX veneer. Jump out of range by %Ld bytes. Cannot enco… 1932 msgstr "%B(%#Lx): error: no puede crear veneer STM32L4XX. Omisión de límite por %Ld bytes. No puede… 2107 msgid "%B, section %A: relocation %s with non-zero addend %Ld against local symbol" 2108 msgstr "%B, sección %A: reubicación %s con adición de dirección sin cero %Ld contra el símbolo loca… 2112 msgid "%B, section %A: relocation %s with non-zero addend %Ld against symbol `%s'" 2113 msgstr "%B, sección %A: reubicación %s con adición %Ld sin ceros contra el símbolo «%s»" 2969 msgid "%B: warning: unaligned small data access for entry: {%Ld, %Ld, %Ld}, addr = %#Lx, align = %#… 2970 msgstr "%B: aviso: acceso de datos pequeño desalineados para entradas: {%Ld, %Ld, %Ld}, direc = %#L… [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/bfd/po/ |
| H A D | es.po | 738 msgid "Dwarf Error: Line info section is too small (%Ld)" 739 msgstr "Error enano: Línea informativa de sección es demasiado corta (%Ld)" 1931 msgid "%B(%#Lx): error: Cannot create STM32L4XX veneer. Jump out of range by %Ld bytes. Cannot enco… 1932 msgstr "%B(%#Lx): error: no puede crear veneer STM32L4XX. Omisión de límite por %Ld bytes. No puede… 2107 msgid "%B, section %A: relocation %s with non-zero addend %Ld against local symbol" 2108 msgstr "%B, sección %A: reubicación %s con adición de dirección sin cero %Ld contra el símbolo loca… 2112 msgid "%B, section %A: relocation %s with non-zero addend %Ld against symbol `%s'" 2113 msgstr "%B, sección %A: reubicación %s con adición %Ld sin ceros contra el símbolo «%s»" 2969 msgid "%B: warning: unaligned small data access for entry: {%Ld, %Ld, %Ld}, addr = %#Lx, align = %#… 2970 msgstr "%B: aviso: acceso de datos pequeño desalineados para entradas: {%Ld, %Ld, %Ld}, direc = %#L… [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 10718 MaskedLoadSDNode *Ld = dyn_cast<MaskedLoadSDNode>(N0); in tryToFoldExtOfMaskedLoad() local 10719 if (!Ld || Ld->getExtensionType() != ISD::NON_EXTLOAD) in tryToFoldExtOfMaskedLoad() 10722 if (!TLI.isLoadExtLegal(ExtLoadType, VT, Ld->getValueType(0))) in tryToFoldExtOfMaskedLoad() 10728 SDLoc dl(Ld); in tryToFoldExtOfMaskedLoad() 10729 SDValue PassThru = DAG.getNode(ExtOpc, dl, VT, Ld->getPassThru()); in tryToFoldExtOfMaskedLoad() 10731 VT, dl, Ld->getChain(), Ld->getBasePtr(), Ld->getOffset(), Ld->getMask(), in tryToFoldExtOfMaskedLoad() 10732 PassThru, Ld->getMemoryVT(), Ld->getMemOperand(), Ld->getAddressingMode(), in tryToFoldExtOfMaskedLoad() 10733 ExtLoadType, Ld->isExpandingLoad()); in tryToFoldExtOfMaskedLoad() 10734 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), SDValue(NewLoad.getNode(), 1)); in tryToFoldExtOfMaskedLoad() 11940 if (MaskedLoadSDNode *Ld = dyn_cast<MaskedLoadSDNode>(N0)) { in visitSIGN_EXTEND_INREG() local [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | LoopUnrollAndJam.cpp | 640 if (auto *Ld = dyn_cast<LoadInst>(&I)) { in getLoadsAndStores() local 641 if (!Ld->isSimple()) in getLoadsAndStores()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/ |
| H A D | SparcISelLowering.cpp | 3395 LoadSDNode *Ld = cast<LoadSDNode>(N); in ReplaceNodeResults() local 3398 if (Ld->getValueType(0) != MVT::i64 || Ld->getMemoryVT() != MVT::i64) in ReplaceNodeResults() 3403 Ld->getExtensionType(), dl, MVT::v2i32, Ld->getChain(), in ReplaceNodeResults() 3404 Ld->getBasePtr(), Ld->getPointerInfo(), MVT::v2i32, in ReplaceNodeResults() 3405 Ld->getOriginalAlign(), Ld->getMemOperand()->getFlags(), in ReplaceNodeResults() 3406 Ld->getAAInfo()); in ReplaceNodeResults()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAGNodes.h | 2667 const LoadSDNode *Ld = dyn_cast<LoadSDNode>(N); 2668 return Ld && Ld->getExtensionType() == ISD::NON_EXTLOAD && 2669 Ld->getAddressingMode() == ISD::UNINDEXED;
|
| /netbsd-src/tests/usr.bin/printf/ |
| H A D | printf.sh | 1536 expect 88888 %Ld 88888 1544 expect 300000 %Ld 300000
|