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

1 2

  /external/llvm/lib/Target/ARM/
ARMHazardRecognizer.cpp 50 !(STI.isCortexA9() && (LastMI->mayLoad() || LastMI->mayStore())) &&
Thumb1RegisterInfo.cpp 673 if (MI.mayLoad()) {
Thumb2SizeReduction.cpp 537 if (MI->mayLoad() || MI->mayStore())
    [all...]
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 113 MayLoad,
321 /// mayLoad - Return true if this instruction could possibly read memory.
324 bool mayLoad() const {
325 return Flags & (1 << MCID::MayLoad);
343 /// 2. Memory accesses. Use mayLoad/mayStore.
  /external/llvm/lib/CodeGen/
TargetInstrInfoImpl.cpp 315 NewMI->mayLoad()) &&
416 if (MI->mayLoad() && !MI->isInvariantLoad(AA))
566 if (DefMI->mayLoad())
580 return MI->mayLoad() ? 2 : 1;
ScheduleDAGInstrs.cpp 267 (UseMI->mayLoad() || UseMI->mayStore()) &&
506 (!MI->mayLoad() || !MI->isInvariantLoad(AA))))
670 unsigned Latency = ((*I)->getInstr()->mayLoad()) ? LatencyToLoad : 0;
    [all...]
MachineInstr.cpp     [all...]
PeepholeOptimizer.cpp 413 if (!MI->canFoldAsLoad() || !MI->mayLoad())
EarlyIfConversion.cpp 215 if (I->mayLoad()) {
MachineCSE.cpp 310 if (MI->mayLoad()) {
MachineLICM.cpp     [all...]
MachineVerifier.cpp 759 if ((*I)->isLoad() && !MI->mayLoad())
760 report("Missing mayLoad flag", MI);
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.cpp 96 isLoad = MCID.mayLoad();
  /external/llvm/lib/Target/X86/
X86InstrBuilder.h 154 if (MCID.mayLoad())
  /external/llvm/lib/Target/MBlaze/
MBlazeDelaySlotFiller.cpp 123 bool a_is_memory = candidate->mayLoad() || candidate->mayStore();
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 196 if (candidate->mayLoad()) {
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 197 if (candidate->mayLoad()) {
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 229 bool mayLoad;
CodeGenDAGPatterns.cpp     [all...]
InstrInfoEmitter.cpp 327 if (Inst.mayLoad) OS << "|(1<<MCID::MayLoad)";
DAGISelMatcherGen.cpp 650 return II.mayLoad || II.mayStore;
696 && (II.hasCtrlDep || II.mayLoad || II.mayStore || II.canFoldAsLoad ||
    [all...]
CodeGenInstruction.cpp 316 mayLoad = R->getValueAsBitOrUnset("mayLoad", mayLoad_Unset);
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 459 /// mayLoad - Return true if this instruction could possibly read memory.
462 bool mayLoad(QueryType Type = AnyInBundle) const {
463 return hasProperty(MCID::MayLoad, Type);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]
ScheduleDAGSDNodes.cpp 300 if (MCID.mayLoad())
    [all...]

Completed in 513 milliseconds

1 2