/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 | 103 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/ |
D | MachineMemOperand.h | 176 bool isStore() const { return Flags & MOStore; } in isStore() function
|
D | SelectionDAGNodes.h | 1121 bool writeMem() const { return MMO->isStore(); }
|
/external/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 410 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()
|
D | ScalarReplAggregates.cpp | 160 Type *MemOpType, bool isStore, AllocaInfo &Info, 1806 Type *MemOpType, bool isStore, in isSafeMemAccess() argument 1819 if (isStore) in isSafeMemAccess()
|
/external/llvm/lib/CodeGen/ |
D | MachineFunction.cpp | 295 if (!(*I)->isStore()) in extractLoadMemRefs() 319 if ((*I)->isStore()) in extractStoreMemRefs() 326 if ((*I)->isStore()) { in extractStoreMemRefs()
|
D | MachineInstr.cpp | 504 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()
|
D | MachineVerifier.cpp | 806 if ((*I)->isStore() && !MI->mayStore()) in visitMachineInstrBefore() 1006 if (MMO->isStore()) in visitMachineOperand()
|
D | MIRPrinter.cpp | 858 assert(Op.isStore() && "Non load machine operand must be a store"); in print()
|
D | MachineLICM.cpp | 335 if (!(*o)->isStore() || !(*o)->getPseudoValue()) in InstructionStoresToFI()
|
D | TargetInstrInfo.cpp | 329 if ((*o)->isStore()) { in hasStoreToStackSlot()
|
/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 | 278 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/ |
D | sg_main.c | 2129 Bool isStore, in instrument_mem_access() argument 2169 mkIRExpr_HWord( isStore ? (-szB) : szB ), in instrument_mem_access()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGISel.cpp | 3255 } else if ((*I)->isStore()) { in SelectCodeCommon() 3272 } else if ((*I)->isStore()) { in SelectCodeCommon()
|
/external/valgrind/helgrind/ |
D | hg_main.c | 4422 Bool isStore, in instrument_mem_access() argument 4447 if (isStore) { in instrument_mem_access()
|
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 2299 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/ |
D | ARMISelLowering.cpp | 9491 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/ |
D | CodeGenerator.rst | 1095 * We don't automatically infer flags like ``isStore``/``isLoad`` yet.
|