Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A 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()
393 bool isFirst, isSingle, isCracked, isLoad, isStore; in EmitInstruction() local
396 isLoad, isStore); in EmitInstruction()
403 if (isStore && NumStores < 4 && !MI->memoperands_empty() && in EmitInstruction()
H A DPPCHazardRecognizers.h92 bool &isLoad, bool &isStore);
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp190 const bool isStore = Opc == TargetOpcode::G_STORE; in selectLoadStoreOpCode() local
197 if (isStore) in selectLoadStoreOpCode()
229 return isStore ? Mips::SWC1 : Mips::LWC1; in selectLoadStoreOpCode()
232 return isStore ? Mips::SDC164 : Mips::LDC164; in selectLoadStoreOpCode()
233 return isStore ? Mips::SDC1 : Mips::LDC1; in selectLoadStoreOpCode()
242 return isStore ? Mips::ST_B : Mips::LD_B; in selectLoadStoreOpCode()
244 return isStore ? Mips::ST_H : Mips::LD_H; in selectLoadStoreOpCode()
246 return isStore ? Mips::ST_W : Mips::LD_W; in selectLoadStoreOpCode()
248 return isStore ? Mips::ST_D : Mips::LD_D; in selectLoadStoreOpCode()
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kCollapseMOVEMPass.cpp146 bool isStore() const { return Access == AccessTy::Store; } in isStore() function in __anon143e10ef0111::MOVEMState
210 if (State.isStore() == IsStore && State.getBase() == Reg && in ProcessMI()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A 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()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOperand.cpp1109 assert((isLoad() || isStore()) && "Not a load/store!"); in MachineMemOperand()
1193 assert((isLoad() || isStore()) && in print()
1197 if (isStore()) in print()
1213 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print()
1216 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print()
1264 OS << ((isLoad() && isStore()) ? " on " in print()
H A DStackFrameLayoutAnalysisPass.cpp252 if (!MO->isStore()) in genSlotDbgMapping()
H A DMachineVerifier.cpp2057 if ((!MMOs[0]->isStore() || MMOs[0]->isLoad()) || in verifyPreISelGenericInstruction()
2058 (MMOs[1]->isStore() || !MMOs[1]->isLoad())) { in verifyPreISelGenericInstruction()
2094 if ((!MMOs[0]->isStore() || MMOs[0]->isLoad())) { in verifyPreISelGenericInstruction()
2324 if (Op->isStore() && !MI->mayStore()) in visitMachineInstrBefore()
2811 if (MMO->isStore()) in visitMachineOperand()
H A DMachineLICM.cpp442 if (!MemOp->isStore() || !MemOp->getPseudoValue()) in InstructionStoresToFI()
H A DTargetInstrInfo.cpp415 if ((*o)->isStore() && in hasStoreToStackSlot()
H A DMachineInstr.cpp1611 if (MMO->isStore()) return false; in isDereferenceableInvariantLoad()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCInstrInfo.cpp58 static bool isStore(int Opcode) { in isStore() function
90 if (isStore(Opcode)) { in isStoreToStackSlot()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp849 bool isStore() const { in isStore() function in __anon2439b80b0411::EarlyCSE::ParseMemoryInst
1261 MemInst.isStore() in getMatchingValue()
1264 if (MemInst.isStore() && InVal.DefInst != Result) in getMatchingValue()
1637 (!MemInst.isValid() || !MemInst.isStore()) && !isa<MemSetInst>(&Inst)) { in processNode()
1713 if (MemInst.isValid() && MemInst.isStore()) { in processNode()
1740 if (MemInst.isValid() && MemInst.isStore()) { in processNode()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp222 if (Predicate.isStore() && Predicate.getMemoryVT()) in isTrivialOperatorNode()
225 if (Predicate.isLoad() || Predicate.isStore()) { in isTrivialOperatorNode()
230 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) { in isTrivialOperatorNode()
600 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) { in addBuiltinPredicates()
639 if (Predicate.isStore()) { in addBuiltinPredicates()
678 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) { in addBuiltinPredicates()
690 if (Predicate.isLoad() || Predicate.isStore()) { in addBuiltinPredicates()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h300 bool isStore() const { return FlagVals & MOStore; } in isStore() function
H A DSelectionDAGNodes.h1411 bool writeMem() const { return MMO->isStore(); }
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetBuiltins.h387 bool isStore() const { return Flags & IsStore; } in isStore() function
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLoadStoreOpt.cpp243 if ((MUC0.MMO->isInvariant() && MUC1.MMO->isStore()) || in instMayAlias()
244 (MUC1.MMO->isInvariant() && MUC0.MMO->isStore())) in instMayAlias()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.cpp910 return isLoad() || isStore() || isAtomic() || hasNoUse() || hasOneUse() || in hasPredCode()
917 if (!isLoad() && !isStore() && !isAtomic() && getMemoryVT()) in getPredCode()
921 if (!isLoad() && !isStore()) { in getPredCode()
931 if (isLoad() + isStore() + isAtomic() > 1) in getPredCode()
957 if (isStore()) { in getPredCode()
1014 if (isLoad() || isStore() || isAtomic()) { in getPredCode()
1104 if (isLoad() || isStore()) { in getPredCode()
1207 bool TreePredicateFn::isStore() const { in isStore() function in TreePredicateFn
1355 if (isStore()) in getCodeToRunOnSDNode()
H A DCodeGenDAGPatterns.h536 bool isStore() const;
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMInstPrinter.cpp291 bool isStore = Opcode == ARM::STREXD || Opcode == ARM::STLEXD; in printInst() local
292 MCRegister Reg = MI->getOperand(isStore ? 1 : 0).getReg(); in printInst()
298 if (isStore) in printInst()
305 for (unsigned i = isStore ? 3 : 2; i < MI->getNumOperands(); ++i) in printInst()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInsertWaitcnts.cpp1046 if (!MemOp->isStore() || in updateByEvent()
1063 if (MemOp->isStore() && AAI == MemOp->getAAInfo()) { in updateByEvent()
1905 if (Memop->isStore()) { in generateWaitcntInstBefore()
1936 if (Memop->isStore()) { in generateWaitcntInstBefore()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp717 FunctionCallee getKmsanShadowOriginAccessFn(bool isStore, int size);
1006 FunctionCallee MemorySanitizer::getKmsanShadowOriginAccessFn(bool isStore, in getKmsanShadowOriginAccessFn() argument
1009 isStore ? MsanMetadataPtrForStore_1_8 : MsanMetadataPtrForLoad_1_8; in getKmsanShadowOriginAccessFn()
1856 bool isStore) { in getShadowOriginPtrKernelNoVec()
1861 FunctionCallee Getter = MS.getKmsanShadowOriginAccessFn(isStore, Size); in getShadowOriginPtrKernelNoVec()
1869 isStore ? MS.MsanMetadataPtrForStoreN : MS.MsanMetadataPtrForLoadN, in getShadowOriginPtrKernelNoVec()
1885 bool isStore) { in getShadowOriginPtrKernel()
1889 return getShadowOriginPtrKernelNoVec(Addr, IRB, ShadowTy, isStore); in getShadowOriginPtrKernel()
1904 getShadowOriginPtrKernelNoVec(OneAddr, IRB, ShadowTy, isStore); in getShadowOriginPtrKernel()
1918 bool isStore) { in getShadowOriginPtr()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp893 const bool isStore = GenericOpc == TargetOpcode::G_STORE; in selectLoadStoreUIOp() local
898 return isStore ? AArch64::STRBBui : AArch64::LDRBBui; in selectLoadStoreUIOp()
900 return isStore ? AArch64::STRHHui : AArch64::LDRHHui; in selectLoadStoreUIOp()
902 return isStore ? AArch64::STRWui : AArch64::LDRWui; in selectLoadStoreUIOp()
904 return isStore ? AArch64::STRXui : AArch64::LDRXui; in selectLoadStoreUIOp()
910 return isStore ? AArch64::STRBui : AArch64::LDRBui; in selectLoadStoreUIOp()
912 return isStore ? AArch64::STRHui : AArch64::LDRHui; in selectLoadStoreUIOp()
914 return isStore ? AArch64::STRSui : AArch64::LDRSui; in selectLoadStoreUIOp()
916 return isStore ? AArch64::STRDui : AArch64::LDRDui; in selectLoadStoreUIOp()
918 return isStore ? AArch64::STRQui : AArch64::LDRQui; in selectLoadStoreUIOp()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.h1513 return MemOperand->isStore() &&

12