HomeSort by relevance Sort by last modified time
    Searched refs:LoadInst (Results 1 - 25 of 495) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
X86AvoidStoreForwardingBlocks.cpp 106 void breakBlockedCopies(MachineInstr *LoadInst, MachineInstr *StoreInst,
109 void buildCopies(int Size, MachineInstr *LoadInst, int64_t LdDispImm,
113 void buildCopy(MachineInstr *LoadInst, unsigned NLoadOpcode, int64_t LoadDisp,
343 findPotentialBlockers(MachineInstr *LoadInst) {
347 for (auto PBInst = std::next(MachineBasicBlock::reverse_iterator(LoadInst)),
348 E = LoadInst->getParent()->rend();
363 MachineBasicBlock *MBB = LoadInst->getParent();
385 void X86AvoidSFBPass::buildCopy(MachineInstr *LoadInst, unsigned NLoadOpcode,
390 MachineOperand &LoadBase = getBaseOperand(LoadInst);
392 MachineBasicBlock *MBB = LoadInst->getParent()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
VNCoercion.h 29 class LoadInst;
63 int analyzeLoadFromClobberingLoad(Type *LoadTy, Value *LoadPtr, LoadInst *DepLI,
88 Value *getLoadValueForLoad(LoadInst *SrcVal, unsigned Offset, Type *LoadTy,
SSAUpdater.h 25 class LoadInst;
166 virtual void replaceLoadWithValue(LoadInst *LI, Value *V) const {}
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Utils/
OrderedInstructions.cpp 48 LoadInst *LoadInstX = B.CreateLoad(PointerArg);
49 LoadInst *LoadInstY = B.CreateLoad(PointerArg);
54 LoadInst *LoadInstZ = B.CreateLoad(PointerArg);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
StackProtector.cpp 184 LoadInst *LI = new LoadInst(StackGuardVar, "StackGuard", false, InsPt);
233 LoadInst *LI1 = new LoadInst(StackGuardVar, "", false, BB);
234 LoadInst *LI2 = new LoadInst(AI, "", true, BB);
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerKernelArgs.cpp 161 LoadInst *LI = new LoadInst(ArgInParam, Arg->getName(), FirstInst);
204 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
ValueLatticeUtils.cpp 36 } else if (auto *Load = dyn_cast<LoadInst>(U)) {
MemDerefPrinter.cpp 55 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/
NVPTXLowerAggrCopies.cpp 61 SmallVector<LoadInst *, 4> AggrLoads;
73 if (LoadInst *LI = dyn_cast<LoadInst>(II)) {
106 for (LoadInst *LI : AggrLoads) {
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Instruction.cpp 197 if (const LoadInst *LI = dyn_cast<LoadInst>(this))
198 return LI->isVolatile() == cast<LoadInst>(I)->isVolatile() &&
199 LI->getAlignment() == cast<LoadInst>(I)->getAlignment() &&
200 LI->getOrdering() == cast<LoadInst>(I)->getOrdering() &&
201 LI->getSynchScope() == cast<LoadInst>(I)->getSynchScope();
252 if (const LoadInst *LI = dyn_cast<LoadInst>(this))
253 return LI->isVolatile() == cast<LoadInst>(I)->isVolatile() &&
254 LI->getAlignment() == cast<LoadInst>(I)->getAlignment() &
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdater.h 23 class LoadInst;
164 virtual void replaceLoadWithValue(LoadInst *LI, Value *V) const {
  /external/llvm/lib/Analysis/
MemDerefPrinter.cpp 57 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
Delinearization.cpp 73 if (LoadInst *Load = dyn_cast<LoadInst>(&Inst))
88 if (!isa<StoreInst>(Inst) && !isa<LoadInst>(Inst) &&
  /external/llvm/lib/Target/AMDGPU/
AMDGPUAnnotateUniformValues.cpp 47 void visitLoadInst(LoadInst &I);
76 void AMDGPUAnnotateUniformValues::visitLoadInst(LoadInst &I) {
  /external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
Local.h 27 class LoadInst;
175 LoadInst *LI, DIBuilder &Builder);
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 31 LoadInst *Orig = Builder.CreateLoad(Ptr);
49 LoadInst *Orig = Builder.CreateLoad(Ptr);
103 static bool LowerLoadInst(LoadInst *LI) {
123 else if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
LoadCombine.cpp 48 LoadPOPPair(LoadInst *L, PointerOffsetPair P, unsigned O)
50 LoadInst *Load;
82 PointerOffsetPair getPointerOffsetPair(LoadInst &);
95 PointerOffsetPair LoadCombine::getPointerOffsetPair(LoadInst &LI) {
141 LoadInst *BaseLoad = nullptr;
215 LoadInst *NewLoad = new LoadInst(
258 LoadInst *LI = dyn_cast<LoadInst>(&I);
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LowerAtomic.cpp 29 LoadInst *Orig = Builder.CreateLoad(Ptr);
44 LoadInst *Orig = Builder.CreateLoad(Ptr);
98 static bool LowerLoadInst(LoadInst *LI) {
124 else if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPUAnnotateUniformValues.cpp 59 void visitLoadInst(LoadInst &I);
60 bool isClobberedInFunction(LoadInst * Load);
88 bool AMDGPUAnnotateUniformValues::isClobberedInFunction(LoadInst * Load) {
131 void AMDGPUAnnotateUniformValues::visitLoadInst(LoadInst &I) {
135 auto isGlobalLoad = [&](LoadInst &Load)->bool {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 30 LoadInst *Orig = Builder.CreateLoad(Ptr);
48 LoadInst *Orig = Builder.CreateLoad(Ptr);
102 static bool LowerLoadInst(LoadInst *LI) {
122 else if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
ARMParallelDSP.cpp 75 if (auto *Ld = dyn_cast<LoadInst>(V))
121 bool AreSequentialLoads(LoadInst *Ld0, LoadInst *Ld1, MemInstList &VecMem);
123 Instruction *CreateSMLADCall(LoadInst *VecLd0, LoadInst *VecLd1,
306 bool ARMParallelDSP::AreSequentialLoads(LoadInst *Ld0, LoadInst *Ld1,
321 return AreSequentialAccesses<LoadInst>(Ld0, Ld1, VecMem, *DL, *SE);
363 auto *Ld0 = dyn_cast<LoadInst>(Mul0_LHS[x]);
364 auto *Ld1 = dyn_cast<LoadInst>(Mul1_LHS[x])
    [all...]
  /external/llvm/include/llvm/Analysis/
MemoryLocation.h 25 class LoadInst;
65 static MemoryLocation get(const LoadInst *LI);
71 if (auto *I = dyn_cast<LoadInst>(Inst))
Loads.h 87 Value *FindAvailableLoadedValue(LoadInst *Load,
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DemoteRegToStack.cpp 70 V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads,
78 Value *V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads, U);
139 Value *V = new LoadInst(Slot, P->getName()+".reload", P);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
MemoryLocation.h 26 class LoadInst;
74 static MemoryLocation get(const LoadInst *LI);
85 return get(cast<LoadInst>(Inst));

Completed in 348 milliseconds

1 2 3 4 5 6 7 8 91011>>