/netbsd-src/external/apache2/llvm/dist/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() 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()
|
H A D | PPCHazardRecognizers.h | 92 bool &isLoad, bool &isStore);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
H A D | MipsInstructionSelector.cpp | 189 const bool isStore = Opc == TargetOpcode::G_STORE; in selectLoadStoreOpCode() local 196 if (isStore) in selectLoadStoreOpCode() 228 return isStore ? Mips::SWC1 : Mips::LWC1; in selectLoadStoreOpCode() 231 return isStore ? Mips::SDC164 : Mips::LDC164; in selectLoadStoreOpCode() 232 return isStore ? Mips::SDC1 : Mips::LDC1; in selectLoadStoreOpCode() 241 return isStore ? Mips::ST_B : Mips::LD_B; in selectLoadStoreOpCode() 243 return isStore ? Mips::ST_H : Mips::LD_H; in selectLoadStoreOpCode() 245 return isStore ? Mips::ST_W : Mips::LD_W; in selectLoadStoreOpCode() 247 return isStore ? Mips::ST_D : Mips::LD_D; in selectLoadStoreOpCode()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/M68k/ |
H A D | M68kCollapseMOVEMPass.cpp | 145 bool isStore() const { return Access == AccessTy::Store; } in isStore() function in __anon55c4489a0111::MOVEMState 209 if (State.isStore() == IsStore && State.getBase() == Reg && in ProcessMI()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
H A D | ARMInstructionSelector.cpp | 358 bool isStore = Opc == TargetOpcode::G_STORE; in selectLoadStoreOpCode() local 364 return isStore ? Opcodes.STORE8 : Opcodes.LOAD8; in selectLoadStoreOpCode() 366 return isStore ? Opcodes.STORE16 : Opcodes.LOAD16; in selectLoadStoreOpCode() 368 return isStore ? Opcodes.STORE32 : Opcodes.LOAD32; in selectLoadStoreOpCode() 377 return isStore ? ARM::VSTRS : ARM::VLDRS; in selectLoadStoreOpCode() 379 return isStore ? ARM::VSTRD : ARM::VLDRD; in selectLoadStoreOpCode()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | MachineOperand.cpp | 1028 assert((isLoad() || isStore()) && "Not a load/store!"); in MachineMemOperand() 1093 assert((isLoad() || isStore()) && in print() 1097 if (isStore()) in print() 1113 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print() 1116 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print() 1160 OS << ((isLoad() && isStore()) ? " on " in print()
|
H A D | MachineVerifier.cpp | 1488 if ((!MMOs[0]->isStore() || MMOs[0]->isLoad()) || in verifyPreISelGenericInstruction() 1489 (MMOs[1]->isStore() || !MMOs[1]->isLoad())) { in verifyPreISelGenericInstruction() 1521 if ((!MMOs[0]->isStore() || MMOs[0]->isLoad())) { in verifyPreISelGenericInstruction() 1646 if (Op->isStore() && !MI->mayStore()) in visitMachineInstrBefore() 2064 if (MMO->isStore()) in visitMachineOperand()
|
H A D | MachineLICM.cpp | 408 if (!MemOp->isStore() || !MemOp->getPseudoValue()) in InstructionStoresToFI()
|
H A D | TargetInstrInfo.cpp | 382 if ((*o)->isStore() && in hasStoreToStackSlot()
|
H A D | MachineInstr.cpp | 1416 if (MMO->isStore()) return false; in isDereferenceableInvariantLoad()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARC/ |
H A D | ARCInstrInfo.cpp | 58 static bool isStore(int Opcode) { in isStore() function 90 if (isStore(Opcode)) { in isStoreToStackSlot()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
H A D | EarlyCSE.cpp | 722 bool isStore() const { in isStore() function in __anon16fc0a160311::EarlyCSE::ParseMemoryInst 1127 Value *Result = MemInst.isStore() in getMatchingValue() 1130 if (MemInst.isStore() && InVal.DefInst != Result) in getMatchingValue() 1489 if (MemInst.isValid() && MemInst.isStore()) { in processNode() 1524 if (MemInst.isValid() && MemInst.isStore()) { in processNode()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
H A D | MachineMemOperand.h | 259 bool isStore() const { return FlagVals & MOStore; } in isStore() function
|
H A D | SelectionDAGNodes.h | 1260 bool writeMem() const { return MMO->isStore(); }
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
H A D | TargetBuiltins.h | 246 bool isStore() const { return Flags & IsStore; } in isStore() function
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMInstPrinter.cpp | 263 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()
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
H A D | CodeGenDAGPatterns.cpp | 894 return isLoad() || isStore() || isAtomic() || in hasPredCode() 901 if (!isLoad() && !isStore() && !isAtomic()) { in getPredCode() 909 if (!isLoad() && !isStore()) { in getPredCode() 921 if (isLoad() + isStore() + isAtomic() > 1) in getPredCode() 947 if (isStore()) { in getPredCode() 1001 if (isLoad() || isStore() || isAtomic()) { in getPredCode() 1067 if (isLoad() || isStore()) { in getPredCode() 1162 bool TreePredicateFn::isStore() const { in isStore() function in TreePredicateFn 1292 if (isStore()) in getCodeToRunOnSDNode()
|
H A D | GlobalISelEmitter.cpp | 331 if (Predicate.isLoad() || Predicate.isStore()) { in isTrivialOperatorNode() 336 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) { in isTrivialOperatorNode() 3790 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) { in addBuiltinPredicates() 3824 if (Predicate.isStore()) { in addBuiltinPredicates() 3862 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) { in addBuiltinPredicates() 3874 if (Predicate.isLoad() || Predicate.isStore()) { in addBuiltinPredicates()
|
H A D | CodeGenDAGPatterns.h | 542 bool isStore() const;
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
H A D | VPlan.h | 1406 return isStore() ? getNumOperands() == 3 : getNumOperands() == 2; in isMasked() 1441 bool isStore() const { return isa<StoreInst>(Ingredient); } in isStore() function 1445 assert(isStore() && "Stored value only available for store instructions"); in getStoredValue()
|
H A D | VPlan.cpp | 1109 if (!isStore()) { in print()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/ |
H A D | AArch64InstructionSelector.cpp | 737 const bool isStore = GenericOpc == TargetOpcode::G_STORE; in selectLoadStoreUIOp() local 742 return isStore ? AArch64::STRBBui : AArch64::LDRBBui; in selectLoadStoreUIOp() 744 return isStore ? AArch64::STRHHui : AArch64::LDRHHui; in selectLoadStoreUIOp() 746 return isStore ? AArch64::STRWui : AArch64::LDRWui; in selectLoadStoreUIOp() 748 return isStore ? AArch64::STRXui : AArch64::LDRXui; in selectLoadStoreUIOp() 754 return isStore ? AArch64::STRBui : AArch64::LDRBui; in selectLoadStoreUIOp() 756 return isStore ? AArch64::STRHui : AArch64::LDRHui; in selectLoadStoreUIOp() 758 return isStore ? AArch64::STRSui : AArch64::LDRSui; in selectLoadStoreUIOp() 760 return isStore ? AArch64::STRDui : AArch64::LDRDui; in selectLoadStoreUIOp()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
H A D | MemorySanitizer.cpp | 597 FunctionCallee getKmsanShadowOriginAccessFn(bool isStore, int size); 882 FunctionCallee MemorySanitizer::getKmsanShadowOriginAccessFn(bool isStore, in getKmsanShadowOriginAccessFn() argument 885 isStore ? MsanMetadataPtrForStore_1_8 : MsanMetadataPtrForLoad_1_8; in getKmsanShadowOriginAccessFn() 1516 bool isStore) { in getShadowOriginPtrKernel() 1521 FunctionCallee Getter = MS.getKmsanShadowOriginAccessFn(isStore, Size); in getShadowOriginPtrKernel() 1528 ShadowOriginPtrs = IRB.CreateCall(isStore ? MS.MsanMetadataPtrForStoreN in getShadowOriginPtrKernel() 1542 bool isStore) { in getShadowOriginPtr() 1544 return getShadowOriginPtrKernel(Addr, IRB, ShadowTy, isStore); in getShadowOriginPtr()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
H A D | SIInsertWaitcnts.cpp | 1092 if (Memop->isStore() && SLoadAddresses.count(Ptr)) { in generateWaitcntInstBefore() 1104 if (Memop->isStore()) { in generateWaitcntInstBefore()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGISel.cpp | 3606 } else if (MMO->isStore()) { in SelectCodeCommon()
|