Lines Matching refs:Nd
1210 LoadSDNode &Nd = *cast<LoadSDNode>(Op); in lowerLOAD() local
1212 if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore) in lowerLOAD()
1217 SDValue Ptr = Nd.getBasePtr(), Chain = Nd.getChain(); in lowerLOAD()
1222 MachinePointerInfo(), Nd.isVolatile(), in lowerLOAD()
1223 Nd.isNonTemporal(), Nd.isInvariant(), in lowerLOAD()
1224 Nd.getAlignment()); in lowerLOAD()
1229 MachinePointerInfo(), Nd.isVolatile(), in lowerLOAD()
1230 Nd.isNonTemporal(), Nd.isInvariant(), in lowerLOAD()
1231 std::min(Nd.getAlignment(), 4U)); in lowerLOAD()
1242 StoreSDNode &Nd = *cast<StoreSDNode>(Op); in lowerSTORE() local
1244 if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore) in lowerSTORE()
1249 SDValue Val = Nd.getValue(), Ptr = Nd.getBasePtr(), Chain = Nd.getChain(); in lowerSTORE()
1261 Nd.isVolatile(), Nd.isNonTemporal(), Nd.getAlignment(), in lowerSTORE()
1262 Nd.getAAInfo()); in lowerSTORE()
1267 Nd.isVolatile(), Nd.isNonTemporal(), in lowerSTORE()
1268 std::min(Nd.getAlignment(), 4U), Nd.getAAInfo()); in lowerSTORE()