Home
last modified time | relevance | path

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

1234567891011

/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDLoadCombine.cpp46 : Load(L), POP(P), InsertOrder(O) {} in LoadPOPPair()
47 LoadInst *Load; member
138 BaseLoad = L.Load; in aggregateLoads()
140 PrevSize = L.Load->getModule()->getDataLayout().getTypeStoreSize( in aggregateLoads()
141 L.Load->getType()); in aggregateLoads()
145 if (L.Load->getAlignment() > BaseLoad->getAlignment()) in aggregateLoads()
160 PrevSize = L.Load->getModule()->getDataLayout().getTypeStoreSize( in aggregateLoads()
161 L.Load->getType()); in aggregateLoads()
174 TotalSize += L.Load->getType()->getPrimitiveSizeInBits(); in combineLoads()
176 TotalSize -= Loads.pop_back_val().Load->getType()->getPrimitiveSizeInBits(); in combineLoads()
[all …]
HDEarlyCSE.cpp385 : Load(false), Store(false), Vol(false), MayReadFromMemory(false), in ParseMemoryInst()
395 Load = Info.ReadMem; in ParseMemoryInst()
403 Load = true; in ParseMemoryInst()
412 bool isLoad() { return Load; } in isLoad()
425 bool Load; member in __anone204231a0311::EarlyCSE::ParseMemoryInst
/NextBSD/contrib/llvm/lib/Transforms/ObjCARC/
HDObjCARCContract.cpp195 static StoreInst *findSafeStoreForStoreStrongContraction(LoadInst *Load, in findSafeStoreForStoreStrongContraction() argument
203 MemoryLocation Loc = MemoryLocation::get(Load); in findSafeStoreForStoreStrongContraction()
206 for (auto I = std::next(BasicBlock::iterator(Load)), in findSafeStoreForStoreStrongContraction()
207 E = Load->getParent()->end(); in findSafeStoreForStoreStrongContraction()
240 if (!CanUse(Inst, Load, PA, Class)) { in findSafeStoreForStoreStrongContraction()
335 auto *Load = dyn_cast<LoadInst>(GetArgRCIdentityRoot(Release)); in tryToContractReleaseIntoStoreStrong() local
336 if (!Load || !Load->isSimple()) in tryToContractReleaseIntoStoreStrong()
341 if (Load->getParent() != BB) in tryToContractReleaseIntoStoreStrong()
347 findSafeStoreForStoreStrongContraction(Load, Release, PA, AA); in tryToContractReleaseIntoStoreStrong()
373 << " Load: " << *Load << "\n"); in tryToContractReleaseIntoStoreStrong()
[all …]
/NextBSD/share/examples/bootforth/
HDloader.rc7 \ Load configuration file words
13 \ Load the screen manipulation words
18 \ Load frame support
22 \ Load our little menu
HDboot.4th5 \ Load the screen manipulation words
12 \ Load frame support
16 \ Load our little menu
/NextBSD/contrib/llvm/lib/Target/SystemZ/
HDSystemZISelDAGToDAG.cpp320 bool canUseBlockOperation(StoreSDNode *Store, LoadSDNode *Load) const;
992 if (auto *Load = dyn_cast<LoadSDNode>(Op0.getNode())) in tryRxSBG() local
993 if (Load->getMemoryVT() == MVT::i8) in tryRxSBG()
1042 auto *Load = dyn_cast<LoadSDNode>(N->getOperand(1)); in tryGather() local
1043 if (!Load || !Load->hasOneUse()) in tryGather()
1045 if (Load->getMemoryVT().getSizeInBits() != in tryGather()
1046 Load->getValueType(0).getSizeInBits()) in tryGather()
1050 if (!selectBDVAddr12Only(Load->getBasePtr(), ElemV, Base, Disp, Index) || in tryGather()
1054 SDLoc DL(Load); in tryGather()
1057 CurDAG->getTargetConstant(Elem, DL, MVT::i32), Load->getChain() in tryGather()
[all …]
HDSystemZInstrVector.td20 // Load GR from VR element.
26 // Load VR element from GR.
36 // Load VR from GRs disjoint.
68 // Load element immediate.
99 // Load.
102 // Load to block boundary. The number of loaded bytes is only known
107 // Load count to block boundary.
115 // Load with length. The number of loaded bytes is only known at run time.
118 // Load multiple.
121 // Load and replicate
[all …]
/NextBSD/contrib/llvm/lib/Object/
HDMachOObjectFile.cpp171 MachOObjectFile::LoadCommandInfo Load; in getLoadCommandInfo() local
172 Load.Ptr = Ptr; in getLoadCommandInfo()
173 Load.C = CmdOrErr.get(); in getLoadCommandInfo()
174 return Load; in getLoadCommandInfo()
205 const MachOObjectFile *Obj, const MachOObjectFile::LoadCommandInfo &Load, in parseSegmentLoadCommand() argument
208 if (Load.C.cmdsize < SegmentLoadSize) in parseSegmentLoadCommand()
210 auto SegOrErr = getStructOrErr<SegmentCmd>(Obj, Load.Ptr); in parseSegmentLoadCommand()
217 S.nsects * SectionSize > Load.C.cmdsize - SegmentLoadSize) in parseSegmentLoadCommand()
220 const char *Sec = getSectionPtr(Obj, Load, J); in parseSegmentLoadCommand()
250 LoadCommandInfo Load = LoadOrErr.get(); in MachOObjectFile() local
[all …]
/NextBSD/contrib/llvm/lib/Target/ARM/
HDARMScheduleV6.td127 // 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
HDARMScheduleSwift.td320 // Load multiple, def is the 5th operand.
330 // Load multiple + update, defs are the 1st and 5th operands.
339 // Load multiple plus branch
649 // Single-precision FP Load
654 // Double-precision FP Load
659 // FP Load Multiple
665 // FP Load Multiple + update
1344 // 4.2.19 Integer Load Single Element
1345 // 4.2.20 Integer Load Signextended
1394 // 4.2.21 Integer Dual Load
[all …]
/NextBSD/contrib/llvm/lib/Transforms/Instrumentation/
HDSanitizerCoverage.cpp415 LoadInst *Load = IRB.CreateLoad(GuardP); in InjectCoverageAtBlock() local
416 Load->setAtomic(Monotonic); in InjectCoverageAtBlock()
417 Load->setAlignment(4); in InjectCoverageAtBlock()
418 SetNoSanitizeMetadata(Load); in InjectCoverageAtBlock()
419 Value *Cmp = IRB.CreateICmpSGE(Constant::getNullValue(Load->getType()), Load); in InjectCoverageAtBlock()
/NextBSD/contrib/llvm/lib/MC/MCParser/
HDCOFFAsmParser.cpp164 Load = 1 << 2, in ParseSectionFlags() enumerator
185 SecFlags &= ~Load; in ParseSectionFlags()
194 SecFlags |= Load; in ParseSectionFlags()
199 SecFlags &= ~Load; in ParseSectionFlags()
208 SecFlags |= Load; in ParseSectionFlags()
215 SecFlags |= Load; in ParseSectionFlags()
226 SecFlags |= Load; in ParseSectionFlags()
249 if ((SecFlags & Alloc) && (SecFlags & Load) == 0) in ParseSectionFlags()
/NextBSD/sys/boot/i386/btx/lib/
HDbtxv86.s53 call __v86_swap # Load V86 registers
55 call __v86_swap # Load user registers
73 movl 0x8(%esp,1),%eax # Load EBP
/NextBSD/sys/boot/pc98/btx/lib/
HDbtxv86.s53 call __v86_swap # Load V86 registers
55 call __v86_swap # Load user registers
73 movl 0x8(%esp,1),%eax # Load EBP
/NextBSD/contrib/llvm/lib/Target/AMDGPU/
HDSITypeRewriter.cpp88 LoadInst *Load = Builder.CreateLoad(BitCast); in visitLoadInst() local
92 Load->setMetadata(MD[i].first, MD[i].second); in visitLoadInst()
94 Value *BitCastLoad = Builder.CreateBitCast(Load, I.getType()); in visitLoadInst()
HDAMDGPUISelLowering.cpp1211 LoadSDNode *Load = cast<LoadSDNode>(Op); in ScalarizeVectorLoad() local
1212 EVT MemVT = Load->getMemoryVT(); in ScalarizeVectorLoad()
1217 EVT PtrVT = Load->getBasePtr().getValueType(); in ScalarizeVectorLoad()
1219 unsigned NumElts = Load->getMemoryVT().getVectorNumElements(); in ScalarizeVectorLoad()
1225 MachinePointerInfo SrcValue(Load->getMemOperand()->getValue()); in ScalarizeVectorLoad()
1228 SDValue Ptr = DAG.getNode(ISD::ADD, SL, PtrVT, Load->getBasePtr(), in ScalarizeVectorLoad()
1232 = DAG.getExtLoad(Load->getExtensionType(), SL, EltVT, in ScalarizeVectorLoad()
1233 Load->getChain(), Ptr, in ScalarizeVectorLoad()
1235 MemEltVT, Load->isVolatile(), Load->isNonTemporal(), in ScalarizeVectorLoad()
1236 Load->isInvariant(), Load->getAlignment()); in ScalarizeVectorLoad()
[all …]
/NextBSD/crypto/openssl/doc/crypto/
HDCONF_modules_load_file.pod70 Load a configuration file and print out any errors and exit (missing file
79 Load default configuration file using the section indicated by "myapp",
89 Load custom configuration file and section, only print warnings on error,
98 Load and parse configuration file manually, custom error handling:
/NextBSD/sys/boot/pc98/cdboot/
HDcdboot.S42 .set LOAD_SEG,0x0700 # Load segment
43 .set LOAD_SIZE,2048 # Load size
370 # Load Volume Descriptor
411 # Load the binary into the buffer. Due to real mode addressing limitations
422 mov %es:DIR_EXTENT(%bx),%eax # Load extent
582 find_file: mov %es:DIR_EXTENT(%bx),%eax # Load extent
600 ff.load: mov rec_lba,%eax # Load LBA
637 movzbw name_len,%cx # Load length of name
657 # Load DH sectors starting at LBA EAX into [EBX].
701 mov twiddle_index,%al # Load index
/NextBSD/contrib/llvm/lib/Analysis/
HDDelinearization.cpp74 if (LoadInst *Load = dyn_cast<LoadInst>(&Inst)) in getPointerOperand() local
75 return Load->getPointerOperand(); in getPointerOperand()
/NextBSD/sys/boot/i386/boot0/
HDboot0.S134 .set LOAD,0x7c00 # Load address
271 movb (%bx),%al # Load type
375 use_default: movb _OPT(%bp),%al # Load default
562 movb 0x1(%si),%dh # Load head
563 movw 0x2(%si),%cx # Load cylinder:sector
/NextBSD/contrib/llvm/lib/IR/
HDInstruction.cpp221 case Load: return "load"; in getOpcodeName()
406 case Instruction::Load: in mayReadFromMemory()
435 case Instruction::Load: in mayWriteToMemory()
448 case Instruction::Load: in isAtomic()
/NextBSD/contrib/llvm/lib/Target/PowerPC/
HDPPCTargetTransformInfo.cpp150 case Instruction::Load: in getIntImmCost()
321 assert((Opcode == Instruction::Load || Opcode == Instruction::Store) && in getMemoryOpCost()
336 Opcode == Instruction::Load; in getMemoryOpCost()
/NextBSD/contrib/llvm/lib/CodeGen/SelectionDAG/
HDScheduleDAGSDNodes.cpp256 SDNode *Load = O2SMap[Offset]; in ClusterNeighboringLoads() local
257 if (!TII->shouldScheduleLoadsNear(BaseLoad, Load, BaseOff, Offset,NumLoads)) in ClusterNeighboringLoads()
259 Loads.push_back(Load); in ClusterNeighboringLoads()
274 SDNode *Load = Loads[I]; in ClusterNeighboringLoads() local
278 if (AddGlue(Load, InGlue, OutGlue, DAG)) { in ClusterNeighboringLoads()
280 InGlue = SDValue(Load, Load->getNumValues() - 1); in ClusterNeighboringLoads()
/NextBSD/contrib/tcsh/nls/C/
HDset54 1 Load average unavailable\n
/NextBSD/sys/boot/forth/
HDmenu.rc7 \ Load required Forth modules
89 set optionsmenu_caption[2]="Load System [D]efaults"
92 set optionsansi_caption[2]="Load System ^[1mD^[mefaults"

1234567891011