Home
last modified time | relevance | path

Searched refs:Load (Results 1 – 25 of 1197) sorted by relevance

12345678910>>...48

/netbsd-src/external/bsd/openldap/dist/tests/data/lloadd/
H A Dmonitor.ldif2 dn: cn=Load Balancer,cn=Backends,cn=Monitor
7 dn: cn=Incoming Connections,cn=Load Balancer,cn=Backends,cn=Monitor
10 dn: cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor
13 dn: cn=Bind,cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor
21 dn: cn=Other,cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor
29 dn: cn=Backend Servers,cn=Load Balancer,cn=Backends,cn=Monitor
34 dn: cn=Load Balancer,cn=Backends,cn=Monitor
39 dn: cn=Incoming Connections,cn=Load Balancer,cn=Backends,cn=Monitor
42 dn: cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor
45 dn: cn=Bind,cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DGVN.cpp211 static AvailableValue getLoad(LoadInst *Load, unsigned Offset = 0) { in getLoad()
213 Res.Val.setPointer(Load); in getLoad()
249 Value *MaterializeAdjustedValue(LoadInst *Load, Instruction *InsertPt,
280 Value *MaterializeAdjustedValue(LoadInst *Load, GVN &gvn) const { in MaterializeAdjustedValue()
281 return AV.MaterializeAdjustedValue(Load, BB->getTerminator(), gvn); in MaterializeAdjustedValue()
837 ConstructSSAForLoadSet(LoadInst *Load, in ConstructSSAForLoadSet() argument
844 Load->getParent())) { in ConstructSSAForLoadSet()
847 return ValuesPerBlock[0].MaterializeAdjustedValue(Load, gvn); in ConstructSSAForLoadSet()
853 SSAUpdate.Initialize(Load->getType(), Load->getName()); in ConstructSSAForLoadSet()
868 if (BB == Load->getParent() && in ConstructSSAForLoadSet()
[all …]
H A DLoopLoadElimination.cpp90 LoadInst *Load; member
93 StoreToLoadForwardingCandidate(LoadInst *Load, StoreInst *Store) in StoreToLoadForwardingCandidate()
94 : Load(Load), Store(Store) {} in StoreToLoadForwardingCandidate()
100 Value *LoadPtr = Load->getPointerOperand(); in isDependenceDistanceOfOne()
117 auto &DL = Load->getParent()->getModule()->getDataLayout(); in isDependenceDistanceOfOne()
131 Value *getLoadPtr() const { return Load->getPointerOperand(); } in getLoadPtr()
137 OS.indent(2) << *Cand.Load << "\n"; in operator <<()
157 static bool isLoadConditional(LoadInst *Load, Loop *L) { in isLoadConditional() argument
158 return Load->getParent() != L->getHeader(); in isLoadConditional()
213 auto *Load = dyn_cast<LoadInst>(Destination); in findStoreToLoadDependences() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DMachOObjectFile.cpp278 const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, in parseSegmentLoadCommand() argument
283 if (Load.C.cmdsize < SegmentLoadSize) in parseSegmentLoadCommand()
286 if (auto SegOrErr = getStructOrErr<Segment>(Obj, Load.Ptr)) { in parseSegmentLoadCommand()
291 S.nsects * SectionSize > Load.C.cmdsize - SegmentLoadSize) in parseSegmentLoadCommand()
296 const char *Sec = getSectionPtr(Obj, Load, J); in parseSegmentLoadCommand()
402 const MachOObjectFile::LoadCommandInfo &Load, in checkSymtabCommand() argument
406 if (Load.C.cmdsize < sizeof(MachO::symtab_command)) in checkSymtabCommand()
411 auto SymtabOrErr = getStructOrErr<MachO::symtab_command>(Obj, Load.Ptr); in checkSymtabCommand()
455 *SymtabLoadCmd = Load.Ptr; in checkSymtabCommand()
460 const MachOObjectFile::LoadCommandInfo &Load, in checkDysymtabCommand() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerKernelAttributes.cpp99 auto *Load = dyn_cast<LoadInst>(*BCI->user_begin()); in processUse() local
100 if (!Load || !Load->isSimple()) in processUse()
103 unsigned LoadSize = DL.getTypeStoreSize(Load->getType()); in processUse()
109 WorkGroupSizeX = Load; in processUse()
113 WorkGroupSizeY = Load; in processUse()
117 WorkGroupSizeZ = Load; in processUse()
121 GridSizeX = Load; in processUse()
125 GridSizeY = Load; in processUse()
129 GridSizeZ = Load; in processUse()
H A DAMDGPULowerKernelArguments.cpp175 LoadInst *Load = in runOnFunction() local
177 Load->setMetadata(LLVMContext::MD_invariant_load, MDNode::get(Ctx, {})); in runOnFunction()
183 Load->setMetadata(LLVMContext::MD_nonnull, MDNode::get(Ctx, {})); in runOnFunction()
187 Load->setMetadata( in runOnFunction()
196 Load->setMetadata( in runOnFunction()
205 Load->setMetadata( in runOnFunction()
217 Load : Builder.CreateLShr(Load, OffsetDiff * 8); in runOnFunction()
225 Value *Shuf = Builder.CreateShuffleVector(Load, ArrayRef<int>{0, 1, 2}, in runOnFunction()
229 Load->setName(Arg.getName() + ".load"); in runOnFunction()
230 Arg.replaceAllUsesWith(Load); in runOnFunction()
H A DAMDGPUAnnotateUniformValues.cpp52 bool isClobberedInFunction(LoadInst * Load);
73 bool AMDGPUAnnotateUniformValues::isClobberedInFunction(LoadInst * Load) { in isClobberedInFunction() argument
74 const MemoryAccess *MA = MSSA->getWalker()->getClobberingMemoryAccess(Load); in isClobberedInFunction()
87 auto isGlobalLoad = [&](LoadInst &Load)->bool { in visitLoadInst() argument
88 return Load.getPointerAddressSpace() == AMDGPUAS::GLOBAL_ADDRESS; in visitLoadInst()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DRelLookupTableConverter.cpp44 LoadInst *Load = dyn_cast<LoadInst>(GEP->use_begin()->getUser()); in shouldConvertToRelLookupTable() local
45 if (!Load || !Load->hasOneUse()) in shouldConvertToRelLookupTable()
130 LoadInst *Load = cast<LoadInst>(GEP->use_begin()->getUser()); in convertToRelLookupTable() local
157 if (Load->getType() != Builder.getInt8PtrTy()) in convertToRelLookupTable()
158 Result = Builder.CreateBitCast(Result, Load->getType(), "reltable.bitcast"); in convertToRelLookupTable()
161 Load->replaceAllUsesWith(Result); in convertToRelLookupTable()
163 Load->eraseFromParent(); in convertToRelLookupTable()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
H A DObjCARCContract.cpp197 static StoreInst *findSafeStoreForStoreStrongContraction(LoadInst *Load, in findSafeStoreForStoreStrongContraction() argument
205 MemoryLocation Loc = MemoryLocation::get(Load); in findSafeStoreForStoreStrongContraction()
209 for (auto I = std::next(BasicBlock::iterator(Load)), in findSafeStoreForStoreStrongContraction()
210 E = Load->getParent()->end(); in findSafeStoreForStoreStrongContraction()
243 if (!CanUse(Inst, Load, PA, Class)) { in findSafeStoreForStoreStrongContraction()
339 auto *Load = dyn_cast<LoadInst>(GetArgRCIdentityRoot(Release)); in tryToContractReleaseIntoStoreStrong() local
340 if (!Load || !Load->isSimple()) in tryToContractReleaseIntoStoreStrong()
345 if (Load->getParent() != BB) in tryToContractReleaseIntoStoreStrong()
351 findSafeStoreForStoreStrongContraction(Load, Release, PA, AA); in tryToContractReleaseIntoStoreStrong()
377 << " Load: " << *Load << "\n"); in tryToContractReleaseIntoStoreStrong()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DVectorCombine.cpp119 auto *Load = dyn_cast<LoadInst>(X); in vectorizeLoadInsert() local
120 if (!Load || !Load->isSimple() || !Load->hasOneUse() || in vectorizeLoadInsert()
121 Load->getFunction()->hasFnAttribute(Attribute::SanitizeMemTag) || in vectorizeLoadInsert()
122 mustSuppressSpeculation(*Load)) in vectorizeLoadInsert()
126 Value *SrcPtr = Load->getPointerOperand()->stripPointerCasts(); in vectorizeLoadInsert()
132 unsigned AS = Load->getPointerAddressSpace(); in vectorizeLoadInsert()
134 SrcPtr = Load->getPointerOperand(); in vectorizeLoadInsert()
152 Align Alignment = Load->getAlign(); in vectorizeLoadInsert()
153 if (!isSafeToLoadUnconditionally(SrcPtr, MinVecTy, Align(1), DL, Load, &DT)) { in vectorizeLoadInsert()
178 if (!isSafeToLoadUnconditionally(SrcPtr, MinVecTy, Align(1), DL, Load, &DT)) in vectorizeLoadInsert()
[all …]
H A DVPlanSLP.cpp121 if (Opcode == Instruction::Load) { in areVectorizable()
128 if (VPI->getOpcode() == Instruction::Load && in areVectorizable()
184 case Instruction::Load: in getOperands()
215 if (A->getOpcode() != Instruction::Load && in areConsecutiveOrMatch()
249 assert((Mode == OpMode::Load || Mode == OpMode::Opcode) && in getBest()
315 Instruction::Load) in reorderMultiNodeOps()
316 Mode.push_back(OpMode::Load); in reorderMultiNodeOps()
445 if (ValuesOpcode == Instruction::Load) in buildGraph()
455 case Instruction::Load: in buildGraph()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLoads.cpp431 Value *llvm::FindAvailableLoadedValue(LoadInst *Load, in FindAvailableLoadedValue() argument
438 if (!Load->isUnordered()) in FindAvailableLoadedValue()
441 MemoryLocation Loc = MemoryLocation::get(Load); in FindAvailableLoadedValue()
442 return findAvailablePtrLoadStore(Loc, Load->getType(), Load->isAtomic(), in FindAvailableLoadedValue()
605 Value *llvm::FindAvailableLoadedValue(LoadInst *Load, AAResults &AA, in FindAvailableLoadedValue() argument
608 const DataLayout &DL = Load->getModule()->getDataLayout(); in FindAvailableLoadedValue()
609 Value *StrippedPtr = Load->getPointerOperand()->stripPointerCasts(); in FindAvailableLoadedValue()
610 BasicBlock *ScanBB = Load->getParent(); in FindAvailableLoadedValue()
611 Type *AccessTy = Load->getType(); in FindAvailableLoadedValue()
612 bool AtLeastAtomic = Load->isAtomic(); in FindAvailableLoadedValue()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp330 bool canUseBlockOperation(StoreSDNode *Store, LoadSDNode *Load) const;
998 else if (auto *Load = dyn_cast<LoadSDNode>(RISBG.Input)) { in tryRISBGZero() local
999 if (Load->getMemoryVT() == MVT::i32 && in tryRISBGZero()
1000 (Load->getExtensionType() == ISD::EXTLOAD || in tryRISBGZero()
1001 Load->getExtensionType() == ISD::ZEXTLOAD) && in tryRISBGZero()
1089 if (auto *Load = dyn_cast<LoadSDNode>(Op0.getNode())) in tryRxSBG() local
1090 if (Load->getMemoryVT() == MVT::i8) in tryRxSBG()
1190 auto *Load = dyn_cast<LoadSDNode>(N->getOperand(1)); in tryGather() local
1191 if (!Load || !Load->hasNUsesOfValue(1, 0)) in tryGather()
1193 if (Load->getMemoryVT().getSizeInBits() != in tryGather()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/hwasan/
H A Dhwasan.cpp441 CheckAddressSized<ErrorAction::Abort, AccessType::Load>(p, sz); in __hwasan_loadN()
444 CheckAddress<ErrorAction::Abort, AccessType::Load, 0>(p); in __hwasan_load1()
447 CheckAddress<ErrorAction::Abort, AccessType::Load, 1>(p); in __hwasan_load2()
450 CheckAddress<ErrorAction::Abort, AccessType::Load, 2>(p); in __hwasan_load4()
453 CheckAddress<ErrorAction::Abort, AccessType::Load, 3>(p); in __hwasan_load8()
456 CheckAddress<ErrorAction::Abort, AccessType::Load, 4>(p); in __hwasan_load16()
460 CheckAddressSized<ErrorAction::Recover, AccessType::Load>(p, sz); in __hwasan_loadN_noabort()
463 CheckAddress<ErrorAction::Recover, AccessType::Load, 0>(p); in __hwasan_load1_noabort()
466 CheckAddress<ErrorAction::Recover, AccessType::Load, 1>(p); in __hwasan_load2_noabort()
469 CheckAddress<ErrorAction::Recover, AccessType::Load, 2>(p); in __hwasan_load4_noabort()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/msp430/
H A Dlib2hw_mul.S107 MOV.W r12, &\OP1 ; Load operand 1 into multiplier
108 MOV.W r13, &\OP2 ; Load operand 2 which triggers MPY
128 MOV.W r12, &\OP1 ; Load operand 1 into multiplier
129 MOV.W r13, &\OP2 ; Load operand 2 which triggers MPY
149 MOV.W r12, &\OP1 ; Load operand 1 Low into multiplier
150 MOV.W r14, &\OP2 ; Load operand 2 Low which triggers MPY
151 MOV.W r12, &\MAC_OP1 ; Load operand 1 Low into mac
154 MOV.W r15, &\MAC_OP2 ; Load operand 2 High, trigger MAC
155 MOV.W r13, &\MAC_OP1 ; Load operand 1 High
156 MOV.W r14, &\MAC_OP2 ; Load operand 2 Lo, trigger MAC
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DMachODumper.cpp728 for (const auto &Load : Obj->load_commands()) { in printMachODataInCode() local
729 if (Load.C.cmd == MachO::LC_DATA_IN_CODE) { in printMachODataInCode()
730 MachO::linkedit_data_command LLC = Obj->getLinkeditDataLoadCommand(Load); in printMachODataInCode()
750 for (const auto &Load : Obj->load_commands()) { in printMachOVersionMin() local
752 switch (Load.C.cmd) { in printMachOVersionMin()
774 if (Load.C.cmd == MachO::LC_BUILD_VERSION) { in printMachOVersionMin()
775 MachO::build_version_command BVC = Obj->getBuildVersionLoadCommand(Load); in printMachOVersionMin()
788 MachO::version_min_command VMC = Obj->getVersionMinLoadCommand(Load); in printMachOVersionMin()
813 for (const auto &Load : Obj->load_commands()) { in printMachODysymtab() local
814 if (Load.C.cmd == MachO::LC_DYSYMTAB) { in printMachODysymtab()
[all …]
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/msp430/
H A Dmpyull_hwmult.s32 MOV.W #2, &MPY32L ; Load operand 1 Low into multiplier
33 MOV.W #0, &MPY32H ; Load operand 1 High into multiplier
34 MOV.W #-4, &OP2L ; Load operand 2 Low into multiplier
35 MOV.W #-1, &OP2H ; Load operand 2 High, trigger MPY
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DP9InstrResources.td29 // - Four Load/Store Queues. P9_LS_*
704 // 6 Cycle Load uses a single slice.
710 // 5 Cycle Load uses a single slice.
729 // 4 Cycle Load uses a single slice.
766 // Cracked Load Instructions.
767 // Load instructions that can be done in parallel.
779 // Cracked Load Instruction.
780 // Requires Load and ALU pieces totaling 6 cycles. The Load and ALU
789 // Requires Load and ALU pieces totaling 6 cycles. The Load and ALU
807 // Cracked Load Instruction.
[all …]
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/msp430/
H A Dlib2hw_mul.S107 MOV.W r12, &\OP1 ; Load operand 1 into multiplier
108 MOV.W r13, &\OP2 ; Load operand 2 which triggers MPY
128 MOV.W r12, &\OP1 ; Load operand 1 into multiplier
129 MOV.W r13, &\OP2 ; Load operand 2 which triggers MPY
149 MOV.W r12, &\OP1 ; Load operand 1 Low into multiplier
150 MOV.W r14, &\OP2 ; Load operand 2 Low which triggers MPY
151 MOV.W r12, &\MAC_OP1 ; Load operand 1 Low into mac
154 MOV.W r15, &\MAC_OP2 ; Load operand 2 High, trigger MAC
155 MOV.W r13, &\MAC_OP1 ; Load operand 1 High
156 MOV.W r14, &\MAC_OP2 ; Load operand 2 Lo, trigger MAC
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVISelDAGToDAG.cpp187 MachineSDNode *Load = in selectVLSEG() local
191 CurDAG->setNodeMemRefs(Load, {MemOp->getMemOperand()}); in selectVLSEG()
193 SDValue SuperReg = SDValue(Load, 0); in selectVLSEG()
200 ReplaceUses(SDValue(Node, NF), SDValue(Load, 1)); in selectVLSEG()
228 MachineSDNode *Load = CurDAG->getMachineNode(P->Pseudo, DL, MVT::Untyped, in selectVLSEGFF() local
231 /*Glue*/ SDValue(Load, 2)); in selectVLSEGFF()
234 CurDAG->setNodeMemRefs(Load, {MemOp->getMemOperand()}); in selectVLSEGFF()
236 SDValue SuperReg = SDValue(Load, 0); in selectVLSEGFF()
244 ReplaceUses(SDValue(Node, NF + 1), SDValue(Load, 1)); // Chain in selectVLSEGFF()
278 MachineSDNode *Load = in selectVLXSEG() local
[all …]
/netbsd-src/external/bsd/elftosb/dist/test_files/
H A Dhello_NOR_arm.map6 Load Map Wed Dec 15 10:06:16 2004
17 Load Map Wed Dec 15 10:06:16 2004
26 Load Map Wed Dec 15 10:06:16 2004
H A Dhello_NOR_thumb.map6 Load Map Wed Dec 15 10:09:42 2004
17 Load Map Wed Dec 15 10:09:42 2004
26 Load Map Wed Dec 15 10:09:42 2004
H A Dhello_NOR_mixed.map6 Load Map Wed Dec 15 10:14:22 2004
17 Load Map Wed Dec 15 10:14:22 2004
26 Load Map Wed Dec 15 10:14:22 2004
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_allocator_secondary.h186 Header *const *chunks = AddressSpaceView::Load(chunks_, n_chunks_); in GetBlockBegin()
197 AddressSpaceView::Load(reinterpret_cast<Header *>(nearest_chunk)); in GetBlockBegin()
224 Header *const *chunks = AddressSpaceView::Load(chunks_, n_chunks_); in GetBlockBeginFastLocked()
227 AddressSpaceView::Load(chunks[n - 1])->map_size; in GetBlockBeginFastLocked()
248 const Header *h = AddressSpaceView::Load(chunks[beg]); in GetBlockBeginFastLocked()
278 const Header *const *chunks = AddressSpaceView::Load(chunks_, n_chunks_); in ForEachChunk()
284 CHECK_EQ(AddressSpaceView::Load(chunks[i])->chunk_idx, i); in ForEachChunk()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DMVEGatherScatterLowering.cpp375 Value *Load = tryCreateMaskedGatherOffset(I, Ptr, Root, Builder); in lowerGather() local
376 if (!Load) in lowerGather()
377 Load = tryCreateMaskedGatherBase(I, Ptr, Builder); in lowerGather()
378 if (!Load) in lowerGather()
384 Load = Builder.CreateSelect(Mask, Load, PassThru); in lowerGather()
387 Root->replaceAllUsesWith(Load); in lowerGather()
395 << *Load << "\n"); in lowerGather()
396 return Load; in lowerGather()
487 Value *Load = tryCreateIncrementingGatScat(I, BasePtr, Offsets, GEP, Builder); in tryCreateMaskedGatherOffset() local
488 if (Load) in tryCreateMaskedGatherOffset()
[all …]

12345678910>>...48