HomeSort by relevance Sort by last modified time
    Searched refs:mayStore (Results 1 - 25 of 30) sorted by null

1 2

  /external/llvm/lib/Target/ARM/
ARMHazardRecognizer.cpp 24 if (MI->mayStore())
50 !(STI.isCortexA9() && (LastMI->mayLoad() || LastMI->mayStore())) &&
MLxExpansionPass.cpp 142 if (MI->mayStore())
ARMFrameLowering.cpp     [all...]
Thumb1RegisterInfo.cpp 695 } else if (MI.mayStore()) {
Thumb2SizeReduction.cpp 536 if (MI->mayLoad() || MI->mayStore())
    [all...]
ARMLoadStoreOptimizer.cpp     [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeDelaySlotFiller.cpp 123 bool a_is_memory = candidate->mayLoad() || candidate->mayStore();
156 if (a_is_memory && m->mayStore())
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 113 MayStore,
322 /// mayStore - Return true if this instruction could possibly modify memory.
326 bool mayStore() const {
327 return Flags & (1 << MCID::MayStore);
336 /// 2. Memory accesses. Use mayLoad/mayStore.
  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.cpp 97 isStore = MCID.mayStore();
  /external/llvm/lib/Target/X86/
X86InstrBuilder.h 156 if (MCID.mayStore())
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 183 if (candidate->mayStore()) {
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 203 if (candidate->mayStore()) {
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 228 bool mayLoad, mayStore;
InstrInfoEmitter.cpp 310 if (Inst.mayStore) OS << "|(1<<MCID::MayStore)";
CodeGenDAGPatterns.cpp     [all...]
CodeGenInstruction.cpp 304 mayStore = R->getValueAsBit("mayStore");
DAGISelMatcherGen.cpp 650 return II.mayLoad || II.mayStore;
    [all...]
  /external/llvm/lib/CodeGen/
TargetInstrInfoImpl.cpp 321 NewMI->mayStore()) &&
415 if (MI->isNotDuplicable() || MI->mayStore() ||
ScheduleDAGInstrs.cpp 256 (UseMI->mayLoad() || UseMI->mayStore()) &&
633 } else if (MI->mayStore()) {
    [all...]
MachineCSE.cpp 306 if (MI->mayStore() || MI->isCall() || MI->isTerminator() ||
MachineVerifier.cpp 591 if ((*I)->isStore() && !MI->mayStore())
592 report("Missing mayStore flag", MI);
744 if (MI->mayStore() && !LI.liveAt(Idx.getRegSlot())) {
    [all...]
MachineInstr.cpp     [all...]
InlineSpiller.cpp 764 if (!MI->isCopy() && !MI->mayStore())
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 460 /// mayStore - Return true if this instruction could possibly modify memory.
464 bool mayStore(QueryType Type = AnyInBundle) const {
465 return hasProperty(MCID::MayStore, Type);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]

Completed in 143 milliseconds

1 2