| /freebsd-12.1/contrib/llvm/lib/Object/ |
| H A D | MachOObjectFile.cpp | 612 *LoadCmd = Load.Ptr; in checkLinkeditDataCommand() 708 *LoadCmd = Load.Ptr; in checkDyldInfoCommand() 754 *LoadCmd = Load.Ptr; in checkDylibIdCommand() 798 *LoadCmd = Load.Ptr; in checkVersCommand() 834 if (Load.C.cmdsize != in parseBuildVersionCommand() 897 *LoadCmd = Load.Ptr; in checkEncryptCommand() 954 if (i >= Load.C.cmdsize) in checkSubCommand() 1178 *LoadCmd = Load.Ptr; in checkTwoLevelHintsCommand() 1247 LoadCommandInfo Load; in MachOObjectFile() local 1250 Load = *LoadOrErr; in MachOObjectFile() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | LoopLoadElimination.cpp | 85 LoadInst *Load; member 89 : Load(Load), Store(Store) {} in StoreToLoadForwardingCandidate() 95 Value *LoadPtr = Load->getPointerOperand(); in isDependenceDistanceOfOne() 132 OS.indent(2) << *Cand.Load << "\n"; in operator <<() 153 return Load->getParent() != L->getHeader(); in isLoadConditional() 208 if (!Load) in findStoreToLoadDependences() 215 Candidates.emplace_front(Load, Store); in findStoreToLoadDependences() 342 return getInstrIndex(A.Load) < getInstrIndex(B.Load); in findPointersWrittenOnForwardingPath() 344 ->Load; in findPointersWrittenOnForwardingPath() 440 Cand.Load->replaceAllUsesWith(PHI); in propagateStoredValueToLoadUsers() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULowerKernelAttributes.cpp | 109 auto *Load = dyn_cast<LoadInst>(*BCI->user_begin()); in processUse() local 110 if (!Load || !Load->isSimple()) in processUse() 113 unsigned LoadSize = DL.getTypeStoreSize(Load->getType()); in processUse() 119 WorkGroupSizeX = Load; in processUse() 123 WorkGroupSizeY = Load; in processUse() 127 WorkGroupSizeZ = Load; in processUse() 131 GridSizeX = Load; in processUse() 135 GridSizeY = Load; in processUse() 139 GridSizeZ = Load; in processUse()
|
| H A D | AMDGPULowerKernelArguments.cpp | 165 LoadInst *Load = Builder.CreateAlignedLoad(ArgPtr, AdjustedAlign); in runOnFunction() local 166 Load->setMetadata(LLVMContext::MD_invariant_load, MDNode::get(Ctx, {})); in runOnFunction() 172 Load->setMetadata(LLVMContext::MD_nonnull, MDNode::get(Ctx, {})); in runOnFunction() 176 Load->setMetadata( in runOnFunction() 185 Load->setMetadata( in runOnFunction() 194 Load->setMetadata( in runOnFunction() 206 Load : Builder.CreateLShr(Load, OffsetDiff * 8); in runOnFunction() 214 Value *Shuf = Builder.CreateShuffleVector(Load, UndefValue::get(V4Ty), in runOnFunction() 219 Load->setName(Arg.getName() + ".load"); in runOnFunction() 220 Arg.replaceAllUsesWith(Load); in runOnFunction()
|
| H A D | AMDGPUAnnotateUniformValues.cpp | 59 bool isClobberedInFunction(LoadInst * Load); 87 bool AMDGPUAnnotateUniformValues::isClobberedInFunction(LoadInst * Load) { in isClobberedInFunction() argument 93 BasicBlock *Start = Load->getParent(); in isClobberedInFunction() 95 const Value *Ptr = Load->getPointerOperand(); in isClobberedInFunction() 109 BasicBlock::iterator StartIt = (!L && (BB == Load->getParent())) ? in isClobberedInFunction() 110 BasicBlock::iterator(Load) : BB->end(); in isClobberedInFunction() 112 StartIt, BB, Load); in isClobberedInFunction() 128 auto isGlobalLoad = [&](LoadInst &Load)->bool { in visitLoadInst() argument 129 return Load.getPointerAddressSpace() == AMDGPUAS::GLOBAL_ADDRESS; in visitLoadInst()
|
| /freebsd-12.1/contrib/compiler-rt/lib/hwasan/ |
| H A D | hwasan.cc | 369 CheckAddressSized<ErrorAction::Abort, AccessType::Load>(p, sz); in __hwasan_loadN() 372 CheckAddress<ErrorAction::Abort, AccessType::Load, 0>(p); in __hwasan_load1() 375 CheckAddress<ErrorAction::Abort, AccessType::Load, 1>(p); in __hwasan_load2() 378 CheckAddress<ErrorAction::Abort, AccessType::Load, 2>(p); in __hwasan_load4() 381 CheckAddress<ErrorAction::Abort, AccessType::Load, 3>(p); in __hwasan_load8() 384 CheckAddress<ErrorAction::Abort, AccessType::Load, 4>(p); in __hwasan_load16() 391 CheckAddress<ErrorAction::Recover, AccessType::Load, 0>(p); in __hwasan_load1_noabort() 394 CheckAddress<ErrorAction::Recover, AccessType::Load, 1>(p); in __hwasan_load2_noabort() 397 CheckAddress<ErrorAction::Recover, AccessType::Load, 2>(p); in __hwasan_load4_noabort() 400 CheckAddress<ErrorAction::Recover, AccessType::Load, 3>(p); in __hwasan_load8_noabort() [all …]
|
| H A D | hwasan_memintrinsics.cc | 34 CheckAddressSized<ErrorAction::Recover, AccessType::Load>( in __hwasan_memcpy() 42 CheckAddressSized<ErrorAction::Recover, AccessType::Load>( in __hwasan_memmove()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/ObjCARC/ |
| H A D | ObjCARCContract.cpp | 211 MemoryLocation Loc = MemoryLocation::get(Load); in findSafeStoreForStoreStrongContraction() 215 for (auto I = std::next(BasicBlock::iterator(Load)), in findSafeStoreForStoreStrongContraction() 216 E = Load->getParent()->end(); in findSafeStoreForStoreStrongContraction() 249 if (!CanUse(Inst, Load, PA, Class)) { in findSafeStoreForStoreStrongContraction() 363 auto *Load = dyn_cast<LoadInst>(GetArgRCIdentityRoot(Release)); in tryToContractReleaseIntoStoreStrong() local 364 if (!Load || !Load->isSimple()) in tryToContractReleaseIntoStoreStrong() 369 if (Load->getParent() != BB) in tryToContractReleaseIntoStoreStrong() 401 << " Load: " << *Load << "\n"); in tryToContractReleaseIntoStoreStrong() 407 Value *Args[] = { Load->getPointerOperand(), New }; in tryToContractReleaseIntoStoreStrong() 430 if (Load->use_empty()) in tryToContractReleaseIntoStoreStrong() [all …]
|
| /freebsd-12.1/share/examples/bootforth/ |
| H A D | loader.rc | 7 \ Load configuration file words 13 \ Load the screen manipulation words 18 \ Load frame support 22 \ Load our little menu
|
| H A D | boot.4th | 5 \ Load the screen manipulation words 12 \ Load frame support 16 \ Load our little menu
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelDAGToDAG.cpp | 1075 if (Load->getMemoryVT() == MVT::i8) in tryRxSBG() 1147 if (!Load || !Load->hasNUsesOfValue(1, 0)) in tryGather() 1158 SDLoc DL(Load); in tryGather() 1219 SDValue Load = StoredVal->getOperand(0); in isFusableLoadOpStorePattern() local 1221 if (!ISD::isNormalLoad(Load.getNode())) in isFusableLoadOpStorePattern() 1225 LoadNode = cast<LoadSDNode>(Load); in isFusableLoadOpStorePattern() 1228 if (!Load.hasOneUse()) in isFusableLoadOpStorePattern() 1241 if (Chain == Load.getValue(1)) { in isFusableLoadOpStorePattern() 1248 if (Op == Load.getValue(1)) { in isFusableLoadOpStorePattern() 1374 if (Load->isInvariant() && Load->isDereferenceable()) in canUseBlockOperation() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/llvm-readobj/ |
| H A D | MachODumper.cpp | 706 for (const auto &Load : Obj->load_commands()) { in printMachODataInCode() local 707 if (Load.C.cmd == MachO::LC_DATA_IN_CODE) { in printMachODataInCode() 728 for (const auto &Load : Obj->load_commands()) { in printMachOVersionMin() local 730 switch (Load.C.cmd) { in printMachOVersionMin() 752 if (Load.C.cmd == MachO::LC_BUILD_VERSION) { in printMachOVersionMin() 791 for (const auto &Load : Obj->load_commands()) { in printMachODysymtab() local 792 if (Load.C.cmd == MachO::LC_DYSYMTAB) { in printMachODysymtab() 819 if (Load.C.cmd == MachO::LC_SEGMENT || Load.C.cmd == MachO::LC_SEGMENT_64) { in printMachOSegment() 821 getSegment(Obj, Load, MOSegment); in printMachOSegment() 840 if (Load.C.cmd == MachO::LC_DYSYMTAB) { in printMachOIndirectSymbols() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanSLP.cpp | 122 if (Opcode == Instruction::Load) { in areVectorizable() 127 if (VPI->getOpcode() == Instruction::Load && in areVectorizable() 182 case Instruction::Load: in getOperands() 213 if (A->getOpcode() != Instruction::Load && in areConsecutiveOrMatch() 245 assert((Mode == OpMode::Load || Mode == OpMode::Opcode) && in getBest() 311 Instruction::Load) in reorderMultiNodeOps() 312 Mode.push_back(OpMode::Load); in reorderMultiNodeOps() 436 if (ValuesOpcode == Instruction::Load) in buildGraph() 446 case Instruction::Load: in buildGraph()
|
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/ |
| H A D | P9InstrResources.td | 781 // Cracked Load Instruction. 782 // Requires Load and ALU pieces totaling 6 cycles. The Load and ALU 800 // Cracked Load Instruction. 808 // Cracked Load instruction. 809 // Requires consecutive Load and ALU pieces totaling 6 cycles. The Load and ALU 821 // Requires consecutive Load and ALU pieces totaling 6 cycles. The Load and ALU 830 // Cracked Load instruction. 831 // Requires consecutive Load and ALU pieces totaling 7 cycles. The Load and ALU 841 // Cracked Load instruction. 854 // Requires consecutive Load and ALU pieces totaling 8 cycles. The Load and ALU [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/Mips/ |
| H A D | MipsEVAInstrInfo.td | 20 // Memory Load/Store EVA encodings 37 // Load-linked EVA, Store-conditional EVA encodings 53 // Memory Load/Store EVA descriptions 90 // Load/Store Left/Right EVA descriptions 125 // Load-linked EVA, Store-conditional EVA descriptions 187 /// Load and Store EVA Instructions 203 /// Load-linked EVA, Store-conditional EVA
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | ScalarizeMaskedMemIntrin.cpp | 170 LoadInst *Load = Builder.CreateAlignedLoad(Gep, AlignVal); in scalarizeMaskedLoad() local 172 Builder.CreateInsertElement(VResult, Load, Builder.getInt32(Idx)); in scalarizeMaskedLoad() 202 LoadInst *Load = Builder.CreateAlignedLoad(Gep, AlignVal); in scalarizeMaskedLoad() local 203 Value *NewVResult = Builder.CreateInsertElement(VResult, Load, in scalarizeMaskedLoad() 390 LoadInst *Load = in scalarizeMaskedGather() local 393 VResult, Load, Builder.getInt32(Idx), "Res" + Twine(Idx)); in scalarizeMaskedGather() 421 LoadInst *Load = in scalarizeMaskedGather() local 423 Value *NewVResult = Builder.CreateInsertElement(VResult, Load, in scalarizeMaskedGather()
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARM/ |
| H A D | ARMScheduleV6.td | 127 // Load multiple, def is the 5th operand. 130 // Load multiple + update, defs are the 1st and 5th operands. 133 // Load multiple plus branch 276 // Single-precision FP Load 279 // Double-precision FP Load 282 // FP Load Multiple 285 // FP Load Multiple + update
|
| H A D | ARMScheduleSwift.td | 374 // 4.2.21 Integer Dual Load 381 // 4.2.22 Integer Load, Multiple 699 // Load of one S register. 701 // Load of one D register. 703 // Load of 3 S register. 711 // Load of 5 S registers. 722 // Load of 7 S registers. 728 // Load of two Q registers. 734 // Load of 9 S registers. 741 // Load of 5 D registers. [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | ValueLatticeUtils.cpp | 36 } else if (auto *Load = dyn_cast<LoadInst>(U)) { in canTrackGlobalVariableInterprocedurally() local 37 if (Load->isVolatile()) in canTrackGlobalVariableInterprocedurally()
|
| H A D | Loads.cpp | 321 Value *llvm::FindAvailableLoadedValue(LoadInst *Load, in FindAvailableLoadedValue() argument 328 if (!Load->isUnordered()) in FindAvailableLoadedValue() 332 Load->getPointerOperand(), Load->getType(), Load->isAtomic(), ScanBB, in FindAvailableLoadedValue()
|
| H A D | AliasAnalysisEvaluator.cpp | 178 for (Value *Load : Loads) { in runInternal() 180 AliasResult AR = AA.alias(MemoryLocation::get(cast<LoadInst>(Load)), in runInternal() 184 PrintLoadStoreResults(AR, PrintNoAlias, Load, Store, F.getParent()); in runInternal() 188 PrintLoadStoreResults(AR, PrintMayAlias, Load, Store, F.getParent()); in runInternal() 192 PrintLoadStoreResults(AR, PrintPartialAlias, Load, Store, F.getParent()); in runInternal() 196 PrintLoadStoreResults(AR, PrintMustAlias, Load, Store, F.getParent()); in runInternal()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | LowerMemIntrinsics.cpp | 76 Value *Load = LoopBuilder.CreateLoad(SrcGEP, SrcIsVolatile); in createMemCpyLoopKnownSize() local 79 LoopBuilder.CreateStore(Load, DstGEP, DstIsVolatile); in createMemCpyLoopKnownSize() 118 Value *Load = RBuilder.CreateLoad(SrcGEP, SrcIsVolatile); in createMemCpyLoopKnownSize() local 127 RBuilder.CreateStore(Load, DstGEP, DstIsVolatile); in createMemCpyLoopKnownSize() 185 Value *Load = LoopBuilder.CreateLoad(SrcGEP, SrcIsVolatile); in createMemCpyLoopUnknownSize() local 187 LoopBuilder.CreateStore(Load, DstGEP, DstIsVolatile); in createMemCpyLoopUnknownSize() 238 Value *Load = ResBuilder.CreateLoad(SrcGEP, SrcIsVolatile); in createMemCpyLoopUnknownSize() local 241 ResBuilder.CreateStore(Load, DstGEP, DstIsVolatile); in createMemCpyLoopUnknownSize()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonShuffler.h | 85 bool Load, Store; variable 90 void setLoad(bool f = true) { Load = f; } 101 bool mayLoad() const { return Load; } in mayLoad()
|
| /freebsd-12.1/contrib/llvm/lib/MC/MCParser/ |
| H A D | COFFAsmParser.cpp | 180 Load = 1 << 2, in ParseSectionFlags() enumerator 202 SecFlags &= ~Load; in ParseSectionFlags() 211 SecFlags |= Load; in ParseSectionFlags() 216 SecFlags &= ~Load; in ParseSectionFlags() 229 SecFlags |= Load; in ParseSectionFlags() 236 SecFlags |= Load; in ParseSectionFlags() 247 SecFlags |= Load; in ParseSectionFlags() 270 if ((SecFlags & Alloc) && (SecFlags & Load) == 0) in ParseSectionFlags()
|
| /freebsd-12.1/stand/i386/btx/lib/ |
| H A D | btxv86.s | 53 call __v86_swap # Load V86 registers 55 call __v86_swap # Load user registers 73 movl 0x8(%esp,1),%eax # Load EBP
|