Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:MFI

93 bool PseudoSourceValue::isAliased(const MachineFrameInfo *MFI) const {
103 bool PseudoSourceValue::mayAlias(const MachineFrameInfo *MFI) const {
111 bool FixedStackPseudoSourceValue::isConstant(const MachineFrameInfo *MFI) const{
112 return MFI && MFI->isImmutableObjectIndex(FI);
115 bool FixedStackPseudoSourceValue::isAliased(const MachineFrameInfo *MFI) const {
119 if (!MFI)
122 return !MFI->isFixedObjectIndex(FI) && !MFI->isSpillSlotObjectIndex(FI);
125 bool FixedStackPseudoSourceValue::mayAlias(const MachineFrameInfo *MFI) const {
126 if (!MFI)
129 return !MFI->isSpillSlotObjectIndex(FI);