HomeSort by relevance Sort by last modified time
    Searched refs:MayStore (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/MC/
MCInstrDesc.h 117 MayStore,
376 bool mayStore() const {
377 return Flags & (1 << MCID::MayStore);
386 /// 2. Memory accesses. Use mayLoad/mayStore.
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 153 bool updateDefsUses(ValueType V, bool MayStore);
387 if (!MI.mayStore() && !MI.mayLoad())
396 SeenStore |= MI.mayStore();
409 if (MI.mayStore())
437 HasHazard |= updateDefsUses(*I, MI.mayStore());
443 HasHazard = MI.mayStore() && (OrigSeenLoad || OrigSeenStore);
447 SeenNoObjStore |= MI.mayStore();
452 bool MemDefsUses::updateDefsUses(ValueType V, bool MayStore) {
453 if (MayStore)
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 530 /// mayStore - Return true if this instruction could possibly modify memory.
534 bool mayStore(QueryType Type = AnyInBundle) const {
540 return hasProperty(MCID::MayStore, Type);
    [all...]

Completed in 245 milliseconds