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

1 2

  /external/llvm/lib/Target/SystemZ/
SystemZInstrBuilder.h 35 if (MCID.mayStore())
  /external/llvm/lib/Target/ARM/
ARMHazardRecognizer.cpp 24 if (MI->mayStore())
56 (LastMI->mayLoad() || LastMI->mayStore())) &&
MLxExpansionPass.cpp 188 if (MI->mayStore())
ARMFrameLowering.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp 502 if (MI->getDesc().mayStore()) {
510 llvm_unreachable("mayLoad or mayStore not set for Post Increment operation");
564 if (PacketSU->getInstr()->getDesc().mayStore() ||
565 // if we have mayStore = 1 set on ALLOCFRAME and DEALLOCFRAME,
581 MI->getDesc().mayStore() &&
    [all...]
HexagonNewValueJump.cpp 176 if (MII->getDesc().mayStore())
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 163 bool updateDefsUses(const Value *V, bool MayStore);
390 if (!MI.mayStore() && !MI.mayLoad())
399 SeenStore |= MI.mayStore();
412 if (MI.mayStore())
442 HasHazard |= updateDefsUses(*I, MI.mayStore());
448 HasHazard = MI.mayStore() && (OrigSeenLoad || OrigSeenStore);
452 SeenNoObjStore |= MI.mayStore();
457 bool MemDefsUses::updateDefsUses(const Value *V, bool MayStore) {
458 if (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/R600/
SIInsertWaits.cpp 132 (MI.getOpcode() == AMDGPU::EXP || MI.getDesc().mayStore()));
169 if (!MI.getDesc().mayStore())
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 116 MayStore,
357 bool mayStore() const {
358 return Flags & (1 << MCID::MayStore);
367 /// 2. Memory accesses. Use mayLoad/mayStore.
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 230 bool mayStore;
CodeGenDAGPatterns.cpp     [all...]
DAGISelMatcherGen.cpp 660 return II.mayLoad || II.mayStore;
706 && (II.hasCtrlDep || II.mayLoad || II.mayStore || II.canFoldAsLoad ||
    [all...]
CodeGenInstruction.cpp 318 mayStore = R->getValueAsBitOrUnset("mayStore", mayStore_Unset);
InstrInfoEmitter.cpp 466 if (Inst.mayStore) OS << "|(1<<MCID::MayStore)";
  /external/llvm/lib/CodeGen/
StackColoring.cpp 575 bool TouchesMemory = I->mayLoad() || I->mayStore();
614 if (!I->mayLoad() && !I->mayStore())
TargetInstrInfo.cpp 369 NewMI->mayStore()) &&
463 if (MI->isNotDuplicable() || MI->mayStore() ||
ScheduleDAGInstrs.cpp 506 if (!MIa->mayStore() && !MIb->mayStore())
794 unsigned TrueMemOrderLatency = MI->mayStore() ? 1 : 0;
    [all...]
PeepholeOptimizer.cpp 523 if (MI->mayStore() || MI->isCall())
MachineCSE.cpp 322 if (MI->mayStore() || MI->isCall() || MI->isTerminator() ||
MachineInstr.cpp     [all...]
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 228 if (candidate->mayStore()) {
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 475 /// mayStore - Return true if this instruction could possibly modify memory.
479 bool mayStore(QueryType Type = AnyInBundle) const {
485 return hasProperty(MCID::MayStore, Type);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]

Completed in 914 milliseconds

1 2