Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.cpp283 bool &isLoad, bool &isStore) { in GetInstrType() argument
287 isStore = MCID.mayStore(); in GetInstrType()
336 bool isFirst, isSingle, isCracked, isLoad, isStore; in getHazardType() local
339 isLoad, isStore); in getHazardType()
394 bool isFirst, isSingle, isCracked, isLoad, isStore; in EmitInstruction() local
397 isLoad, isStore); in EmitInstruction()
404 if (isStore && NumStores < 4 && !MI->memoperands_empty()) { in EmitInstruction()
H A DPPCHazardRecognizers.h93 bool &isLoad, bool &isStore);
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMInstructionSelector.cpp310 bool isStore = Opc == TargetOpcode::G_STORE; in selectLoadStoreOpCode() local
316 return isStore ? Opcodes.STORE8 : Opcodes.LOAD8; in selectLoadStoreOpCode()
318 return isStore ? Opcodes.STORE16 : Opcodes.LOAD16; in selectLoadStoreOpCode()
320 return isStore ? Opcodes.STORE32 : Opcodes.LOAD32; in selectLoadStoreOpCode()
329 return isStore ? ARM::VSTRS : ARM::VLDRS; in selectLoadStoreOpCode()
331 return isStore ? ARM::VSTRD : ARM::VLDRD; in selectLoadStoreOpCode()
H A DARMISelLowering.cpp11569 const bool isStore = N->getOpcode() == ISD::STORE; in CombineBaseUpdate() local
11570 const unsigned AddrOpIdx = ((isIntrinsic || isStore) ? 2 : 1); in CombineBaseUpdate()
11661 assert(isStore && "Node has to be a load, a store, or an intrinsic!"); in CombineBaseUpdate()
/freebsd-12.1/contrib/llvm/lib/Target/ARC/
H A DARCInstrInfo.cpp46 static bool isStore(int Opcode) { in isStore() function
78 if (isStore(Opcode)) { in isStoreToStackSlot()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64InstructionSelector.cpp305 const bool isStore = GenericOpc == TargetOpcode::G_STORE; in selectLoadStoreUIOp() local
310 return isStore ? AArch64::STRBBui : AArch64::LDRBBui; in selectLoadStoreUIOp()
312 return isStore ? AArch64::STRHHui : AArch64::LDRHHui; in selectLoadStoreUIOp()
314 return isStore ? AArch64::STRWui : AArch64::LDRWui; in selectLoadStoreUIOp()
316 return isStore ? AArch64::STRXui : AArch64::LDRXui; in selectLoadStoreUIOp()
322 return isStore ? AArch64::STRBui : AArch64::LDRBui; in selectLoadStoreUIOp()
324 return isStore ? AArch64::STRHui : AArch64::LDRHui; in selectLoadStoreUIOp()
326 return isStore ? AArch64::STRSui : AArch64::LDRSui; in selectLoadStoreUIOp()
328 return isStore ? AArch64::STRDui : AArch64::LDRDui; in selectLoadStoreUIOp()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineOperand.cpp998 assert((isLoad() || isStore()) && "Not a load/store!"); in MachineMemOperand()
1074 assert((isLoad() || isStore()) && in print()
1078 if (isStore()) in print()
1094 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print()
1097 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print()
H A DMachineVerifier.cpp920 if ((*I)->isStore() && !MI->mayStore()) in visitMachineInstrBefore()
1455 if (MMO->isStore()) in visitMachineOperand()
H A DTargetInstrInfo.cpp363 if ((*o)->isStore() && in hasStoreToStackSlot()
H A DMachineLICM.cpp386 if (!MemOp->isStore() || !MemOp->getPseudoValue()) in InstructionStoresToFI()
H A DMachineInstr.cpp1309 if (MMO->isStore()) return false; in isDereferenceableInvariantLoad()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h259 bool isStore() const { return FlagVals & MOStore; } in isStore() function
H A DSelectionDAGNodes.h1258 bool writeMem() const { return MMO->isStore(); }
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp502 bool isStore() const { in isStore() function in __anonb85134700311::EarlyCSE::ParseMemoryInst
1074 if (MemInst.isValid() && MemInst.isStore()) { in processNode()
1114 if (MemInst.isValid() && MemInst.isStore()) { in processNode()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/InstPrinter/
H A DARMInstPrinter.cpp251 bool isStore = Opcode == ARM::STREXD || Opcode == ARM::STLEXD; in printInst() local
252 unsigned Reg = MI->getOperand(isStore ? 1 : 0).getReg(); in printInst()
258 if (isStore) in printInst()
265 for (unsigned i = isStore ? 3 : 2; i < MI->getNumOperands(); ++i) in printInst()
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp855 return isLoad() || isStore() || isAtomic() || in hasPredCode()
862 if (!isLoad() && !isStore() && !isAtomic()) { in getPredCode()
870 if (!isLoad() && !isStore()) { in getPredCode()
882 if (isLoad() + isStore() + isAtomic() > 1) in getPredCode()
907 if (isStore()) { in getPredCode()
959 if (isLoad() || isStore() || isAtomic()) { in getPredCode()
961 isLoad() ? "LoadSDNode" : isStore() ? "StoreSDNode" : "AtomicSDNode"; in getPredCode()
1001 if (isLoad() || isStore()) { in getPredCode()
1094 bool TreePredicateFn::isStore() const { in isStore() function in TreePredicateFn
1208 if (isStore()) in getCodeToRunOnSDNode()
H A DCodeGenDAGPatterns.h537 bool isStore() const;
H A DGlobalISelEmitter.cpp307 if (Predicate.isLoad() || Predicate.isStore()) { in isTrivialOperatorNode()
3229 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) { in createAndImportSelDAGMatcher()
3248 if (Predicate.isLoad() || Predicate.isStore()) { in createAndImportSelDAGMatcher()
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp574 Value *getKmsanShadowOriginAccessFn(bool isStore, int size);
827 Value *MemorySanitizer::getKmsanShadowOriginAccessFn(bool isStore, int size) { in getKmsanShadowOriginAccessFn() argument
829 isStore ? MsanMetadataPtrForStore_1_8 : MsanMetadataPtrForLoad_1_8; in getKmsanShadowOriginAccessFn()
1411 unsigned Alignment, bool isStore) { in getShadowOriginPtrKernel()
1416 Value *Getter = MS.getKmsanShadowOriginAccessFn(isStore, Size); in getShadowOriginPtrKernel()
1423 ShadowOriginPtrs = IRB.CreateCall(isStore ? MS.MsanMetadataPtrForStoreN in getShadowOriginPtrKernel()
1437 bool isStore) { in getShadowOriginPtr()
1440 ret = getShadowOriginPtrKernel(Addr, IRB, ShadowTy, Alignment, isStore); in getShadowOriginPtr()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp3669 } else if (MMO->isStore()) { in SelectCodeCommon()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaChecking.cpp5192 bool isStore = BuiltinID == Builtin::BI__builtin_nontemporal_store; in SemaBuiltinNontemporalOverloaded() local
5193 unsigned numArgs = isStore ? 2 : 1; in SemaBuiltinNontemporalOverloaded()
5232 if (!isStore) { in SemaBuiltinNontemporalOverloaded()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp5356 if (!MMO->isStore()) { in extractLoadMMOs()
5377 if (!MMO->isStore()) in extractStoreMMOs()
/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp6381 if (I->isStore()) { in emitCondStore()