reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
 3487         bool mayStore = MCID.mayStore();
lib/MC/MCParser/AsmParser.cpp
 5838       bool isOutput = (i == 1) && Desc.mayStore();
lib/MCA/InstrBuilder.cpp
  391   bool AssumeUsesOnly = MCDesc.mayStore() && !MCDesc.mayLoad() &&
  463   bool AssumeDefsOnly = !MCDesc.mayStore() && MCDesc.mayLoad() &&
  566   ID->MayStore = MCDesc.mayStore();
lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
 3020   if (!Desc.mayLoad() || !Desc.mayStore())
lib/Target/AMDGPU/SIISelLowering.cpp
10298   if (TII->isMIMG(Opcode) && !TII->get(Opcode).mayStore() &&
lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
  325       if (TII.get(Opc).mayStore() || !TII.get(Opc).mayLoad() || TII.isGather4(Opc))
lib/Target/AMDGPU/SIRegisterInfo.cpp
  631   bool IsStore = Desc.mayStore();
lib/Target/ARM/ARMBaseInstrInfo.cpp
 3643     if (Subtarget.isSwift() && (Desc.mayLoad() || Desc.mayStore()))
lib/Target/ARM/ARMISelDAGToDAG.cpp
  450     if (MCID.mayStore())
lib/Target/Hexagon/HexagonBitSimplify.cpp
  625   if (D.mayStore()) {
lib/Target/Hexagon/HexagonConstExtenders.cpp
  874   if (D.mayLoad() || D.mayStore()) {
 1067   assert(D.mayLoad() || D.mayStore());
lib/Target/Hexagon/HexagonInstrInfo.cpp
 2015          !MI.getDesc().mayStore() &&
 2997   if (MI.getDesc().mayLoad() || MI.getDesc().mayStore()) {
 4242   if (MI.getDesc().mayLoad() || MI.getDesc().mayStore()) {
lib/Target/Hexagon/HexagonOptAddrMode.cpp
  128   if ((!MID.mayStore() && !MID.mayLoad()) || HII->isPredicated(MI))
  131   if (MID.mayStore()) {
  194     if ((!UseMID.mayLoad() && !UseMID.mayStore()) ||
  200     if (UseMID.mayStore() && UseMI.getOperand(2).isReg() &&
  357     if ((!MID.mayLoad() && !MID.mayStore()) ||
  444     if ((MID.mayLoad() || MID.mayStore())) {
  647     } else if (UseMID.mayStore()) {
  675   else if (MID.mayStore())
lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
  465         (Desc.mayStore() && std::get<1>(Producer) == 0)) {
lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp
  156     setStore(HexagonMCInstrInfo::getDesc(MCII, *id).mayStore());
  270       if (HexagonMCInstrInfo::getDesc(MCII, Inst).mayStore()) {
  387         assert(HexagonMCInstrInfo::getDesc(MCII, ID).mayStore());
  471     if (HexagonMCInstrInfo::getDesc(MCII, ID).mayStore()) {
lib/Target/Mips/AsmParser/MipsAsmParser.cpp
 2069   if ((MCID.mayLoad() || MCID.mayStore()) && !IsPCRelativeLoad) {
lib/Target/PowerPC/PPCHazardRecognizers.cpp
   40     if (!PredMCID || !PredMCID->mayStore())
  285   isStore = MCID.mayStore();
lib/Target/SystemZ/SystemZInstrBuilder.h
   34   if (MCID.mayStore())
lib/Target/X86/X86InstrBuilder.h
  206   if (MCID.mayStore())
tools/llvm-mca/Views/InstructionInfoView.cpp
   82     TempStream << (MCDesc.mayStore() ? " *     " : "       ");