Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:isMustAlias

72         /// isMustAlias - True if both sides of the dependence are known to
74 bool isMustAlias : 1;
96 bool isNormalMemory = false, bool isMustAlias = false,
106 assert(!isMustAlias && "isMustAlias only applies with SDep::Order!");
113 Contents.Order.isMustAlias = isMustAlias;
129 Contents.Order.isMustAlias == Other.Contents.Order.isMustAlias &&
180 /// isMustAlias - Test if this is an Order dependence that is marked
183 bool isMustAlias() const {
184 return getKind() == Order && Contents.Order.isMustAlias;