Home
last modified time | relevance | path

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

/external/llvm/lib/Target/PowerPC/
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()
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()
DPPCHazardRecognizers.h93 bool &isLoad, bool &isStore);
/external/llvm/lib/Target/NVPTX/
DNVPTXInstrInfo.cpp103 bool isStore = false; in isStoreInstr() local
106 isStore = (TSFlags == 1); in isStoreInstr()
107 if (isStore) in isStoreInstr()
109 return isStore; in isStoreInstr()
/external/llvm/include/llvm/CodeGen/
DMachineMemOperand.h176 bool isStore() const { return Flags & MOStore; } in isStore() function
DSelectionDAGNodes.h1121 bool writeMem() const { return MMO->isStore(); }
/external/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp410 bool isStore() const { in isStore() function in __anonc2cac6ee0311::EarlyCSE::ParseMemoryInst
686 if (MemInst.isValid() && MemInst.isStore()) { in processNode()
714 if (MemInst.isValid() && MemInst.isStore()) { in processNode()
DScalarReplAggregates.cpp160 Type *MemOpType, bool isStore, AllocaInfo &Info,
1806 Type *MemOpType, bool isStore, in isSafeMemAccess() argument
1819 if (isStore) in isSafeMemAccess()
/external/llvm/lib/CodeGen/
DMachineFunction.cpp295 if (!(*I)->isStore()) in extractLoadMemRefs()
319 if ((*I)->isStore()) in extractStoreMemRefs()
326 if ((*I)->isStore()) { in extractStoreMemRefs()
DMachineInstr.cpp504 assert((isLoad() || isStore()) && "Not a load/store!"); in MachineMemOperand()
543 assert((isLoad() || isStore()) && in print()
551 if (isStore()) in print()
1478 if ((*I)->isStore()) return false; in isInvariantLoad()
DMachineVerifier.cpp806 if ((*I)->isStore() && !MI->mayStore()) in visitMachineInstrBefore()
1006 if (MMO->isStore()) in visitMachineOperand()
DMIRPrinter.cpp858 assert(Op.isStore() && "Non load machine operand must be a store"); in print()
DMachineLICM.cpp335 if (!(*o)->isStore() || !(*o)->getPseudoValue()) in InstructionStoresToFI()
DTargetInstrInfo.cpp329 if ((*o)->isStore()) { in hasStoreToStackSlot()
/external/proguard/src/proguard/classfile/instruction/
DVariableInstruction.java144 public boolean isStore() in isStore() method in VariableInstruction
/external/llvm/lib/Target/ARM/InstPrinter/
DARMInstPrinter.cpp278 bool isStore = Opcode == ARM::STREXD || Opcode == ARM::STLEXD; in printInst() local
279 unsigned Reg = MI->getOperand(isStore ? 1 : 0).getReg(); in printInst()
285 if (isStore) in printInst()
292 for (unsigned i = isStore ? 3 : 2; i < MI->getNumOperands(); ++i) in printInst()
/external/valgrind/exp-sgcheck/
Dsg_main.c2129 Bool isStore, in instrument_mem_access() argument
2169 mkIRExpr_HWord( isStore ? (-szB) : szB ), in instrument_mem_access()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp3255 } else if ((*I)->isStore()) { in SelectCodeCommon()
3272 } else if ((*I)->isStore()) { in SelectCodeCommon()
/external/valgrind/helgrind/
Dhg_main.c4422 Bool isStore, in instrument_mem_access() argument
4447 if (isStore) { in instrument_mem_access()
/external/clang/lib/Sema/
DSemaChecking.cpp2299 bool isStore = BuiltinID == Builtin::BI__builtin_nontemporal_store; in SemaBuiltinNontemporalOverloaded() local
2300 unsigned numArgs = isStore ? 2 : 1; in SemaBuiltinNontemporalOverloaded()
2339 if (!isStore) { in SemaBuiltinNontemporalOverloaded()
/external/llvm/lib/Target/ARM/
DARMISelLowering.cpp9491 const bool isStore = N->getOpcode() == ISD::STORE; in CombineBaseUpdate() local
9492 const unsigned AddrOpIdx = ((isIntrinsic || isStore) ? 2 : 1); in CombineBaseUpdate()
9569 assert(isStore && "Node has to be a load, a store, or an intrinsic!"); in CombineBaseUpdate()
/external/llvm/docs/
DCodeGenerator.rst1095 * We don't automatically infer flags like ``isStore``/``isLoad`` yet.