Home
last modified time | relevance | path

Searched refs:isStore (Results 1 – 17 of 17) 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.cpp125 bool isStore = false; in isStoreInstr() local
128 isStore = (TSFlags == 1); in isStoreInstr()
129 if (isStore) in isStoreInstr()
131 return isStore; in isStoreInstr()
/external/llvm/include/llvm/CodeGen/
DMachineMemOperand.h171 bool isStore() const { return Flags & MOStore; } in isStore() function
DSelectionDAGNodes.h1058 bool writeMem() const { return MMO->isStore(); }
/external/llvm/lib/CodeGen/
DMachineFunction.cpp273 if (!(*I)->isStore()) in extractLoadMemRefs()
297 if ((*I)->isStore()) in extractStoreMemRefs()
304 if ((*I)->isStore()) { in extractStoreMemRefs()
DMachineInstr.cpp441 assert((isLoad() || isStore()) && "Not a load/store!"); in MachineMemOperand()
476 assert((MMO.isLoad() || MMO.isStore()) && in operator <<()
484 if (MMO.isStore()) in operator <<()
1369 if ((*I)->isStore()) return false; in isInvariantLoad()
DTargetInstrInfo.cpp271 if ((*o)->isStore()) { in hasStoreToStackSlot()
DMachineLICM.cpp394 if (!(*o)->isStore() || !(*o)->getPseudoValue()) in InstructionStoresToFI()
DMachineVerifier.cpp790 if ((*I)->isStore() && !MI->mayStore()) in visitMachineInstrBefore()
/external/proguard/src/proguard/classfile/instruction/
DVariableInstruction.java144 public boolean isStore() in isStore() method in VariableInstruction
/external/llvm/lib/Target/ARM/InstPrinter/
DARMInstPrinter.cpp274 bool isStore = Opcode == ARM::STREXD || Opcode == ARM::STLEXD; in printInst() local
275 unsigned Reg = MI->getOperand(isStore ? 1 : 0).getReg(); in printInst()
281 if (isStore) in printInst()
288 for(unsigned i= isStore ? 3 : 2; i < MI->getNumOperands(); ++i) in printInst()
/external/llvm/lib/Transforms/Scalar/
DScalarReplAggregates.cpp159 Type *MemOpType, bool isStore, AllocaInfo &Info,
1789 Type *MemOpType, bool isStore, in isSafeMemAccess() argument
1801 if (isStore) in isSafeMemAccess()
/external/valgrind/main/exp-sgcheck/
Dsg_main.c2121 Bool isStore, in instrument_mem_access() argument
2161 mkIRExpr_HWord( isStore ? (-szB) : szB ), in instrument_mem_access()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp3089 } else if ((*I)->isStore()) { in SelectCodeCommon()
3106 } else if ((*I)->isStore()) { in SelectCodeCommon()
/external/valgrind/main/helgrind/
Dhg_main.c4285 Bool isStore, in instrument_mem_access() argument
4310 if (isStore) { in instrument_mem_access()
/external/llvm/docs/
DCodeGenerator.rst1089 * We don't automatically infer flags like ``isStore``/``isLoad`` yet.