Home
last modified time | relevance | path

Searched refs:isStore (Results 1 – 22 of 22) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DOptimizer.cpp53 static bool isStore(const Ice::Inst &instruction);
74 LoadStoreInst(Ice::Inst *inst, bool isStore) in LoadStoreInst()
76 , address(isStore ? inst->getStoreAddress() : inst->getLoadAddress()) in LoadStoreInst()
77 , isStore(isStore) in LoadStoreInst()
83 bool isStore; member
155 if(isStore(*store) && store->getData() == address) in propagateAlloca()
259 else if(isStore(*use)) // Direct use of base address in performScalarReplacementOfAggregates()
412 if(isStore(inst)) in optimizeSingleBasicBlockLoadsStores()
580 else if(isStore(*instruction)) in isDead()
616 if(isStore(*use)) in isStaticallyIndexedArray()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCHazardRecognizers.cpp281 bool &isLoad, bool &isStore) { in GetInstrType() argument
285 isStore = MCID.mayStore(); in GetInstrType()
334 bool isFirst, isSingle, isCracked, isLoad, isStore; in getHazardType() local
337 isLoad, isStore); in getHazardType()
392 bool isFirst, isSingle, isCracked, isLoad, isStore; in EmitInstruction() local
395 isLoad, isStore); in EmitInstruction()
402 if (isStore && NumStores < 4 && !MI->memoperands_empty()) { in EmitInstruction()
DPPCHazardRecognizers.h92 bool &isLoad, bool &isStore);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsInstructionSelector.cpp183 const bool isStore = Opc == TargetOpcode::G_STORE; in selectLoadStoreOpCode() local
190 if (isStore) in selectLoadStoreOpCode()
222 return isStore ? Mips::SWC1 : Mips::LWC1; in selectLoadStoreOpCode()
225 return isStore ? Mips::SDC164 : Mips::LDC164; in selectLoadStoreOpCode()
226 return isStore ? Mips::SDC1 : Mips::LDC1; in selectLoadStoreOpCode()
235 return isStore ? Mips::ST_B : Mips::LD_B; in selectLoadStoreOpCode()
237 return isStore ? Mips::ST_H : Mips::LD_H; in selectLoadStoreOpCode()
239 return isStore ? Mips::ST_W : Mips::LD_W; in selectLoadStoreOpCode()
241 return isStore ? Mips::ST_D : Mips::LD_D; in selectLoadStoreOpCode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMInstructionSelector.cpp360 bool isStore = Opc == TargetOpcode::G_STORE; in selectLoadStoreOpCode() local
366 return isStore ? Opcodes.STORE8 : Opcodes.LOAD8; in selectLoadStoreOpCode()
368 return isStore ? Opcodes.STORE16 : Opcodes.LOAD16; in selectLoadStoreOpCode()
370 return isStore ? Opcodes.STORE32 : Opcodes.LOAD32; in selectLoadStoreOpCode()
379 return isStore ? ARM::VSTRS : ARM::VLDRS; in selectLoadStoreOpCode()
381 return isStore ? ARM::VSTRD : ARM::VLDRD; in selectLoadStoreOpCode()
DARMISelLowering.cpp13075 const bool isStore = N->getOpcode() == ISD::STORE; in CombineBaseUpdate() local
13076 const unsigned AddrOpIdx = ((isIntrinsic || isStore) ? 2 : 1); in CombineBaseUpdate()
13167 assert(isStore && "Node has to be a load, a store, or an intrinsic!"); in CombineBaseUpdate()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineOperand.cpp1018 assert((isLoad() || isStore()) && "Not a load/store!"); in MachineMemOperand()
1083 assert((isLoad() || isStore()) && in print()
1087 if (isStore()) in print()
1103 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print()
1106 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print()
DMachineLICM.cpp420 if (!MemOp->isStore() || !MemOp->getPseudoValue()) in InstructionStoresToFI()
DTargetInstrInfo.cpp372 if ((*o)->isStore() && in hasStoreToStackSlot()
DMachineVerifier.cpp1494 if ((*I)->isStore() && !MI->mayStore()) in visitMachineInstrBefore()
1844 if (MMO->isStore()) in visitMachineOperand()
DMachineInstr.cpp1327 if (MMO->isStore()) return false; in isDereferenceableInvariantLoad()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/
DARCInstrInfo.cpp58 static bool isStore(int Opcode) { in isStore() function
90 if (isStore(Opcode)) { in isStoreToStackSlot()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineMemOperand.h259 bool isStore() const { return FlagVals & MOStore; } in isStore() function
DSelectionDAGNodes.h1300 bool writeMem() const { return MMO->isStore(); }
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp654 bool isStore() const { in isStore() function in __anonc5fb90620311::EarlyCSE::ParseMemoryInst
1206 if (MemInst.isValid() && MemInst.isStore()) { in processNode()
1246 if (MemInst.isValid() && MemInst.isStore()) { in processNode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMInstPrinter.cpp263 bool isStore = Opcode == ARM::STREXD || Opcode == ARM::STLEXD; in printInst() local
264 unsigned Reg = MI->getOperand(isStore ? 1 : 0).getReg(); in printInst()
270 if (isStore) in printInst()
277 for (unsigned i = isStore ? 3 : 2; i < MI->getNumOperands(); ++i) in printInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64InstructionSelector.cpp549 const bool isStore = GenericOpc == TargetOpcode::G_STORE; in selectLoadStoreUIOp() local
554 return isStore ? AArch64::STRBBui : AArch64::LDRBBui; in selectLoadStoreUIOp()
556 return isStore ? AArch64::STRHHui : AArch64::LDRHHui; in selectLoadStoreUIOp()
558 return isStore ? AArch64::STRWui : AArch64::LDRWui; in selectLoadStoreUIOp()
560 return isStore ? AArch64::STRXui : AArch64::LDRXui; in selectLoadStoreUIOp()
566 return isStore ? AArch64::STRBui : AArch64::LDRBui; in selectLoadStoreUIOp()
568 return isStore ? AArch64::STRHui : AArch64::LDRHui; in selectLoadStoreUIOp()
570 return isStore ? AArch64::STRSui : AArch64::LDRSui; in selectLoadStoreUIOp()
572 return isStore ? AArch64::STRDui : AArch64::LDRDui; in selectLoadStoreUIOp()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp576 FunctionCallee getKmsanShadowOriginAccessFn(bool isStore, int size);
854 FunctionCallee MemorySanitizer::getKmsanShadowOriginAccessFn(bool isStore, in getKmsanShadowOriginAccessFn() argument
857 isStore ? MsanMetadataPtrForStore_1_8 : MsanMetadataPtrForLoad_1_8; in getKmsanShadowOriginAccessFn()
1441 bool isStore) { in getShadowOriginPtrKernel()
1446 FunctionCallee Getter = MS.getKmsanShadowOriginAccessFn(isStore, Size); in getShadowOriginPtrKernel()
1453 ShadowOriginPtrs = IRB.CreateCall(isStore ? MS.MsanMetadataPtrForStoreN in getShadowOriginPtrKernel()
1467 bool isStore) { in getShadowOriginPtr()
1469 return getShadowOriginPtrKernel(Addr, IRB, ShadowTy, isStore); in getShadowOriginPtr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp3546 } else if (MMO->isStore()) { in SelectCodeCommon()
DDAGCombiner.cpp20860 if ((MUC0.MMO->isInvariant() && MUC1.MMO->isStore()) || in isAlias()
20861 (MUC1.MMO->isInvariant() && MUC0.MMO->isStore())) in isAlias()
20880 if ((MUC0.MMO->isInvariant() && MUC1.MMO->isStore()) || in isAlias()
20881 (MUC1.MMO->isInvariant() && MUC0.MMO->isStore())) in isAlias()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86InstrInfo.cpp5372 if (!MMO->isStore()) { in extractLoadMMOs()
5390 if (!MMO->isStore()) in extractStoreMMOs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp6967 if (I->isStore()) { in emitCondStore()