HomeSort by relevance Sort by last modified time
    Searched refs:mayStore (Results 1 - 25 of 33) 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...]
  /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 114 MayStore,
329 /// mayStore - Return true if this instruction could possibly modify memory.
333 bool mayStore() const {
334 return Flags & (1 << MCID::MayStore);
343 /// 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/CodeGen/
ScheduleDAGInstrs.cpp 267 (UseMI->mayLoad() || UseMI->mayStore()) &&
561 if (!MIa->mayStore() && !MIb->mayStore())
    [all...]
TargetInstrInfoImpl.cpp 312 NewMI->mayStore()) &&
406 if (MI->isNotDuplicable() || MI->mayStore() ||
PeepholeOptimizer.cpp 514 if (MI->mayStore() || MI->isCall())
MachineCSE.cpp 306 if (MI->mayStore() || MI->isCall() || MI->isTerminator() ||
MachineInstr.cpp     [all...]
MachineVerifier.cpp 761 if ((*I)->isStore() && !MI->mayStore())
762 report("Missing mayStore flag", MI);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp     [all...]
HexagonNewValueJump.cpp 159 if (MII->getDesc().mayStore())
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 202 if (candidate->mayStore()) {
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 203 if (candidate->mayStore()) {
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 231 bool mayStore;
CodeGenDAGPatterns.cpp     [all...]
InstrInfoEmitter.cpp 328 if (Inst.mayStore) OS << "|(1<<MCID::MayStore)";
DAGISelMatcherGen.cpp 650 return II.mayLoad || II.mayStore;
696 && (II.hasCtrlDep || II.mayLoad || II.mayStore || II.canFoldAsLoad ||
    [all...]
CodeGenInstruction.cpp 317 mayStore = R->getValueAsBitOrUnset("mayStore", mayStore_Unset);
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 467 /// mayStore - Return true if this instruction could possibly modify memory.
471 bool mayStore(QueryType Type = AnyInBundle) const {
472 return hasProperty(MCID::MayStore, Type);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 626 bool isMemDef = (i == 1) && Desc.mayStore();

Completed in 408 milliseconds

1 2