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 118 MayStore,
421 bool mayStore() const {
422 return Flags & (1 << MCID::MayStore);
431 /// 2. Memory accesses. Use mayLoad/mayStore.
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 153 bool updateDefsUses(ValueType V, bool MayStore);
394 if (!MI.mayStore() && !MI.mayLoad())
403 SeenStore |= MI.mayStore();
416 if (MI.mayStore())
444 HasHazard |= updateDefsUses(*I, MI.mayStore());
450 HasHazard = MI.mayStore() && (OrigSeenLoad || OrigSeenStore);
454 SeenNoObjStore |= MI.mayStore();
459 bool MemDefsUses::updateDefsUses(ValueType V, bool MayStore) {
460 if (MayStore)
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 579 /// mayStore - Return true if this instruction could possibly modify memory.
583 bool mayStore(QueryType Type = AnyInBundle) const {
589 return hasProperty(MCID::MayStore, Type);
    [all...]

Completed in 357 milliseconds