| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/ |
| H A D | PPCHazardRecognizers.cpp | 283 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 D | PPCHazardRecognizers.h | 93 bool &isLoad, bool &isStore);
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARM/ |
| H A D | ARMInstructionSelector.cpp | 310 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 D | ARMISelLowering.cpp | 11569 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 D | ARCInstrInfo.cpp | 46 static bool isStore(int Opcode) { in isStore() function 78 if (isStore(Opcode)) { in isStoreToStackSlot()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64InstructionSelector.cpp | 305 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 D | MachineOperand.cpp | 998 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 D | MachineVerifier.cpp | 920 if ((*I)->isStore() && !MI->mayStore()) in visitMachineInstrBefore() 1455 if (MMO->isStore()) in visitMachineOperand()
|
| H A D | TargetInstrInfo.cpp | 363 if ((*o)->isStore() && in hasStoreToStackSlot()
|
| H A D | MachineLICM.cpp | 386 if (!MemOp->isStore() || !MemOp->getPseudoValue()) in InstructionStoresToFI()
|
| H A D | MachineInstr.cpp | 1309 if (MMO->isStore()) return false; in isDereferenceableInvariantLoad()
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | MachineMemOperand.h | 259 bool isStore() const { return FlagVals & MOStore; } in isStore() function
|
| H A D | SelectionDAGNodes.h | 1258 bool writeMem() const { return MMO->isStore(); }
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | EarlyCSE.cpp | 502 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 D | ARMInstPrinter.cpp | 251 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 D | CodeGenDAGPatterns.cpp | 855 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 D | CodeGenDAGPatterns.h | 537 bool isStore() const;
|
| H A D | GlobalISelEmitter.cpp | 307 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 D | MemorySanitizer.cpp | 574 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 D | SelectionDAGISel.cpp | 3669 } else if (MMO->isStore()) { in SelectCodeCommon()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 5192 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 D | X86InstrInfo.cpp | 5356 if (!MMO->isStore()) { in extractLoadMMOs() 5377 if (!MMO->isStore()) in extractStoreMMOs()
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.cpp | 6381 if (I->isStore()) { in emitCondStore()
|