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

References

lib/Transforms/Scalar/EarlyCSE.cpp
 1050     if (MemInst.isValid() && MemInst.isLoad()) {
 1050     if (MemInst.isValid() && MemInst.isLoad()) {
 1053       if (MemInst.isVolatile() || !MemInst.isUnordered()) {
 1053       if (MemInst.isVolatile() || !MemInst.isUnordered()) {
 1058       if (MemInst.isInvariantLoad()) {
 1076       LoadValue InVal = AvailableLoads.lookup(MemInst.getPointerOperand());
 1078           InVal.MatchingId == MemInst.getMatchingId() &&
 1080           !MemInst.isVolatile() && MemInst.isUnordered() &&
 1080           !MemInst.isVolatile() && MemInst.isUnordered() &&
 1082           InVal.IsAtomic >= MemInst.isAtomic() &&
 1106           MemInst.getPointerOperand(),
 1107           LoadValue(Inst, CurrentGeneration, MemInst.getMatchingId(),
 1108                     MemInst.isAtomic()));
 1120         !(MemInst.isValid() && !MemInst.mayReadFromMemory()))
 1120         !(MemInst.isValid() && !MemInst.mayReadFromMemory()))
 1168     if (MemInst.isValid() && MemInst.isStore()) {
 1168     if (MemInst.isValid() && MemInst.isStore()) {
 1169       LoadValue InVal = AvailableLoads.lookup(MemInst.getPointerOperand());
 1172           InVal.MatchingId == MemInst.getMatchingId() &&
 1174           !MemInst.isVolatile() && MemInst.isUnordered() &&
 1174           !MemInst.isVolatile() && MemInst.isUnordered() &&
 1184                     MemInst.getPointerOperand() ||
 1208       if (MemInst.isValid() && MemInst.isStore()) {
 1208       if (MemInst.isValid() && MemInst.isStore()) {
 1221           if (LastStoreMemInst.isMatchingMemLoc(MemInst)) {
 1243             MemInst.getPointerOperand(),
 1244             LoadValue(Inst, CurrentGeneration, MemInst.getMatchingId(),
 1245                       MemInst.isAtomic()));
 1254         if (MemInst.isUnordered() && !MemInst.isVolatile())
 1254         if (MemInst.isUnordered() && !MemInst.isVolatile())