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

References

lib/CodeGen/SelectionDAG/SelectionDAG.cpp
 4359       V.changeSign();
 4360       return getConstantFP(V, DL, VT);
 4362       V.clearSign();
 4363       return getConstantFP(V, DL, VT);
 4365       APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardPositive);
 4367         return getConstantFP(V, DL, VT);
 4371       APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardZero);
 4373         return getConstantFP(V, DL, VT);
 4377       APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardNegative);
 4379         return getConstantFP(V, DL, VT);
 4386       (void)V.convert(EVTToAPFloatSemantics(VT),
 4388       return getConstantFP(V, DL, VT);
 4396           V.convertToInteger(IntVal, APFloat::rmTowardZero, &ignored);
 4403         return getConstant((uint16_t)V.bitcastToAPInt().getZExtValue(), DL, VT);
 4405         return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), DL, VT);
 4407         return getConstant(V.bitcastToAPInt().getZExtValue(), DL, VT);
 4413       (void)V.convert(APFloat::IEEEhalf(),
 4415       return getConstant(V.bitcastToAPInt(), DL, VT);