/external/llvm/lib/Target/PowerPC/ |
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()
|
D | PPCHazardRecognizers.h | 93 bool &isLoad, bool &isStore);
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXInstrInfo.cpp | 125 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/ |
D | MachineMemOperand.h | 171 bool isStore() const { return Flags & MOStore; } in isStore() function
|
D | SelectionDAGNodes.h | 1058 bool writeMem() const { return MMO->isStore(); }
|
/external/llvm/lib/CodeGen/ |
D | MachineFunction.cpp | 273 if (!(*I)->isStore()) in extractLoadMemRefs() 297 if ((*I)->isStore()) in extractStoreMemRefs() 304 if ((*I)->isStore()) { in extractStoreMemRefs()
|
D | MachineInstr.cpp | 441 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()
|
D | TargetInstrInfo.cpp | 271 if ((*o)->isStore()) { in hasStoreToStackSlot()
|
D | MachineLICM.cpp | 394 if (!(*o)->isStore() || !(*o)->getPseudoValue()) in InstructionStoresToFI()
|
D | MachineVerifier.cpp | 790 if ((*I)->isStore() && !MI->mayStore()) in visitMachineInstrBefore()
|
/external/proguard/src/proguard/classfile/instruction/ |
D | VariableInstruction.java | 144 public boolean isStore() in isStore() method in VariableInstruction
|
/external/llvm/lib/Target/ARM/InstPrinter/ |
D | ARMInstPrinter.cpp | 274 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/ |
D | ScalarReplAggregates.cpp | 159 Type *MemOpType, bool isStore, AllocaInfo &Info, 1789 Type *MemOpType, bool isStore, in isSafeMemAccess() argument 1801 if (isStore) in isSafeMemAccess()
|
/external/valgrind/main/exp-sgcheck/ |
D | sg_main.c | 2121 Bool isStore, in instrument_mem_access() argument 2161 mkIRExpr_HWord( isStore ? (-szB) : szB ), in instrument_mem_access()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGISel.cpp | 3089 } else if ((*I)->isStore()) { in SelectCodeCommon() 3106 } else if ((*I)->isStore()) { in SelectCodeCommon()
|
/external/valgrind/main/helgrind/ |
D | hg_main.c | 4285 Bool isStore, in instrument_mem_access() argument 4310 if (isStore) { in instrument_mem_access()
|
/external/llvm/docs/ |
D | CodeGenerator.rst | 1089 * We don't automatically infer flags like ``isStore``/``isLoad`` yet.
|