/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCHazardRecognizers.cpp | 281 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 D | PPCHazardRecognizers.h | 92 bool &isLoad, bool &isStore);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsInstructionSelector.cpp | 190 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 D | M68kCollapseMOVEMPass.cpp | 146 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 D | ARMInstructionSelector.cpp | 360 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 D | MachineOperand.cpp | 1094 assert((isLoad() || isStore()) && "Not a load/store!"); in MachineMemOperand() 1173 assert((isLoad() || isStore()) && in print() 1177 if (isStore()) in print() 1193 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print() 1196 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print() 1240 OS << ((isLoad() && isStore()) ? " on " in print()
|
H A D | StackFrameLayoutAnalysisPass.cpp | 263 if (!MO->isStore()) in genSlotDbgMapping()
|
H A D | MachineVerifier.cpp | 1937 if ((!MMOs[0]->isStore() || MMOs[0]->isLoad()) || in verifyPreISelGenericInstruction() 1938 (MMOs[1]->isStore() || !MMOs[1]->isLoad())) { in verifyPreISelGenericInstruction() 1974 if ((!MMOs[0]->isStore() || MMOs[0]->isLoad())) { in verifyPreISelGenericInstruction() 2194 if (Op->isStore() && !MI->mayStore()) in visitMachineInstrBefore() 2682 if (MMO->isStore()) in visitMachineOperand()
|
H A D | MachineLICM.cpp | 415 if (!MemOp->isStore() || !MemOp->getPseudoValue()) in InstructionStoresToFI()
|
H A D | TargetInstrInfo.cpp | 381 if ((*o)->isStore() && in hasStoreToStackSlot()
|
H A D | MachineInstr.cpp | 1498 if (MMO->isStore()) return false; in isDereferenceableInvariantLoad()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/ |
H A D | ARCInstrInfo.cpp | 58 static bool isStore(int Opcode) { in isStore() function 90 if (isStore(Opcode)) { in isStoreToStackSlot()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | EarlyCSE.cpp | 855 bool isStore() const { in isStore() function in __anon2439b80b0411::EarlyCSE::ParseMemoryInst 1271 Value *Result = MemInst.isStore() in getMatchingValue() 1274 if (MemInst.isStore() && InVal.DefInst != Result) in getMatchingValue() 1691 if (MemInst.isValid() && MemInst.isStore()) { in processNode() 1726 if (MemInst.isValid() && MemInst.isStore()) { in processNode()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | GlobalISelEmitter.cpp | 223 if (Predicate.isLoad() || Predicate.isStore()) { in isTrivialOperatorNode() 228 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) { in isTrivialOperatorNode() 575 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) { in addBuiltinPredicates() 612 if (Predicate.isStore()) { in addBuiltinPredicates() 651 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) { in addBuiltinPredicates() 663 if (Predicate.isLoad() || Predicate.isStore()) { in addBuiltinPredicates()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineMemOperand.h | 296 bool isStore() const { return FlagVals & MOStore; } in isStore() function
|
H A D | SelectionDAGNodes.h | 1336 bool writeMem() const { return MMO->isStore(); }
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | TargetBuiltins.h | 286 bool isStore() const { return Flags & IsStore; } in isStore() function
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | LoadStoreOpt.cpp | 246 if ((MUC0.MMO->isInvariant() && MUC1.MMO->isStore()) || in instMayAlias() 247 (MUC1.MMO->isInvariant() && MUC0.MMO->isStore())) in instMayAlias()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | CodeGenDAGPatterns.cpp | 906 return isLoad() || isStore() || isAtomic() || hasNoUse() || hasOneUse() || in hasPredCode() 913 if (!isLoad() && !isStore() && !isAtomic()) { in getPredCode() 921 if (!isLoad() && !isStore()) { in getPredCode() 933 if (isLoad() + isStore() + isAtomic() > 1) in getPredCode() 962 if (isStore()) { in getPredCode() 1018 if (isLoad() || isStore() || isAtomic()) { in getPredCode() 1092 if (isLoad() || isStore()) { in getPredCode() 1198 bool TreePredicateFn::isStore() const { in isStore() function in TreePredicateFn 1332 if (isStore()) in getCodeToRunOnSDNode()
|
H A D | CodeGenDAGPatterns.h | 542 bool isStore() const;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMInstPrinter.cpp | 293 bool isStore = Opcode == ARM::STREXD || Opcode == ARM::STLEXD; in printInst() local 294 unsigned Reg = MI->getOperand(isStore ? 1 : 0).getReg(); in printInst() 300 if (isStore) in printInst() 307 for (unsigned i = isStore ? 3 : 2; i < MI->getNumOperands(); ++i) in printInst()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | MemorySanitizer.cpp | 661 FunctionCallee getKmsanShadowOriginAccessFn(bool isStore, int size); 948 FunctionCallee MemorySanitizer::getKmsanShadowOriginAccessFn(bool isStore, in getKmsanShadowOriginAccessFn() argument 951 isStore ? MsanMetadataPtrForStore_1_8 : MsanMetadataPtrForLoad_1_8; in getKmsanShadowOriginAccessFn() 1780 bool isStore) { in getShadowOriginPtrKernelNoVec() 1785 FunctionCallee Getter = MS.getKmsanShadowOriginAccessFn(isStore, Size); in getShadowOriginPtrKernelNoVec() 1794 isStore ? MS.MsanMetadataPtrForStoreN : MS.MsanMetadataPtrForLoadN, in getShadowOriginPtrKernelNoVec() 1810 bool isStore) { in getShadowOriginPtrKernel() 1814 return getShadowOriginPtrKernelNoVec(Addr, IRB, ShadowTy, isStore); in getShadowOriginPtrKernel() 1829 getShadowOriginPtrKernelNoVec(OneAddr, IRB, ShadowTy, isStore); in getShadowOriginPtrKernel() 1843 bool isStore) { in getShadowOriginPtr() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIInsertWaitcnts.cpp | 934 if (!MemOp->isStore() || in updateByEvent() 951 if (MemOp->isStore() && AAI == MemOp->getAAInfo()) { in updateByEvent() 1727 if (Memop->isStore() && SLoadAddresses.count(Ptr)) { in generateWaitcntInstBefore() 1759 if (Memop->isStore()) { in generateWaitcntInstBefore()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
H A D | AArch64InstructionSelector.cpp | 886 const bool isStore = GenericOpc == TargetOpcode::G_STORE; in selectLoadStoreUIOp() local 891 return isStore ? AArch64::STRBBui : AArch64::LDRBBui; in selectLoadStoreUIOp() 893 return isStore ? AArch64::STRHHui : AArch64::LDRHHui; in selectLoadStoreUIOp() 895 return isStore ? AArch64::STRWui : AArch64::LDRWui; in selectLoadStoreUIOp() 897 return isStore ? AArch64::STRXui : AArch64::LDRXui; in selectLoadStoreUIOp() 903 return isStore ? AArch64::STRBui : AArch64::LDRBui; in selectLoadStoreUIOp() 905 return isStore ? AArch64::STRHui : AArch64::LDRHui; in selectLoadStoreUIOp() 907 return isStore ? AArch64::STRSui : AArch64::LDRSui; in selectLoadStoreUIOp() 909 return isStore ? AArch64::STRDui : AArch64::LDRDui; in selectLoadStoreUIOp() 911 return isStore ? AArch64::STRQui : AArch64::LDRQui; in selectLoadStoreUIOp()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/ |
H A D | InstrRefBasedImpl.h | 1521 return MemOperand->isStore() &&
|