Lines Matching refs:Nd
1198 LoadSDNode &Nd = *cast<LoadSDNode>(Op); in lowerLOAD() local
1200 if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore) in lowerLOAD()
1205 SDValue Ptr = Nd.getBasePtr(), Chain = Nd.getChain(); in lowerLOAD()
1210 MachinePointerInfo(), Nd.isVolatile(), in lowerLOAD()
1211 Nd.isNonTemporal(), Nd.isInvariant(), in lowerLOAD()
1212 Nd.getAlignment()); in lowerLOAD()
1217 MachinePointerInfo(), Nd.isVolatile(), in lowerLOAD()
1218 Nd.isNonTemporal(), Nd.isInvariant(), in lowerLOAD()
1219 std::min(Nd.getAlignment(), 4U)); in lowerLOAD()
1230 StoreSDNode &Nd = *cast<StoreSDNode>(Op); in lowerSTORE() local
1232 if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore) in lowerSTORE()
1237 SDValue Val = Nd.getValue(), Ptr = Nd.getBasePtr(), Chain = Nd.getChain(); in lowerSTORE()
1249 Nd.isVolatile(), Nd.isNonTemporal(), Nd.getAlignment(), in lowerSTORE()
1250 Nd.getAAInfo()); in lowerSTORE()
1255 Nd.isVolatile(), Nd.isNonTemporal(), in lowerSTORE()
1256 std::min(Nd.getAlignment(), 4U), Nd.getAAInfo()); in lowerSTORE()