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

1 2

  /external/llvm/lib/Target/ARM/
ARMHazardRecognizer.cpp 24 if (MCID.mayStore())
53 !(STI.isCortexA9() && (LastMCID.mayLoad() || LastMCID.mayStore())) &&
MLxExpansionPass.cpp 142 if (MCID.mayStore())
Thumb1RegisterInfo.cpp 683 } else if (Desc.mayStore()) {
Thumb2SizeReduction.cpp 525 if (MCID.mayLoad() || MCID.mayStore())
ARMLoadStoreOptimizer.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZInstrBuilder.h 115 if (MCID.mayStore())
  /external/llvm/lib/Target/MBlaze/
MBlazeDelaySlotFiller.cpp 126 bool a_is_memory = desc.mayLoad() || desc.mayStore();
159 if (a_is_memory && m->getDesc().mayStore())
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 112 MayStore,
394 /// mayStore - Return true if this instruction could possibly modify memory.
398 bool mayStore() const {
399 return Flags & (1 << MCID::MayStore);
408 /// 2. Memory accesses. Use mayLoad/mayStore.
  /external/llvm/lib/Target/X86/
X86InstrBuilder.h 157 if (MCID.mayStore())
  /external/llvm/lib/CodeGen/
TargetInstrInfoImpl.cpp 253 NewMI->getDesc().mayStore()) &&
338 if (MCID.isNotDuplicable() || MCID.mayStore() ||
ScheduleDAGInstrs.cpp 317 (UseMCID.mayLoad() || UseMCID.mayStore()) &&
462 } else if (MCID.mayStore()) {
MachineCSE.cpp 264 if (MCID.mayStore() || MCID.isCall() || MCID.isTerminator() ||
MachineVerifier.cpp 556 if ((*I)->isStore() && !MCID.mayStore())
557 report("Missing mayStore flag", MI);
773 if (MCID.mayStore() && !LI.liveAt(Idx.getDefIndex())) {
    [all...]
MachineInstr.cpp     [all...]
InlineSpiller.cpp 567 if (!MI->isCopy() && !MI->getDesc().mayStore())
    [all...]
BranchFolding.cpp 438 else if (MCID.mayLoad() || MCID.mayStore())
    [all...]
TwoAddressInstructionPass.cpp 766 if (MCID.mayStore() || MCID.isCall())
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.cpp 79 isStore = MCID.mayStore();
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 203 if (candidate->getDesc().mayStore()) {
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 228 bool mayLoad, mayStore;
InstrInfoEmitter.cpp 282 if (Inst.mayStore) OS << "|(1<<MCID::MayStore)";
CodeGenDAGPatterns.cpp     [all...]
CodeGenInstruction.cpp 303 mayStore = R->getValueAsBit("mayStore");
DAGISelMatcherGen.cpp 650 return II.mayLoad || II.mayStore;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]

Completed in 1055 milliseconds

1 2