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

References

lib/CodeGen/SelectionDAG/DAGCombiner.cpp
16062   switch (CFP->getSimpleValueType(0).SimpleTy) {
16074       Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
16075                             bitcastToAPInt().getZExtValue(), SDLoc(CFP),
16086       Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
16087                             getZExtValue(), SDLoc(CFP), MVT::i64);
16097       uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
16098       SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, SDLoc(CFP), MVT::i32);
16099       SDValue Hi = DAG.getConstant(Val >> 32, SDLoc(CFP), MVT::i32);