Searched refs:AbsValue (Results 1 – 2 of 2) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/MC/ |
| H A D | MCObjectStreamer.cpp | 253 int64_t AbsValue; in emitValueImpl() local 254 if (Value->evaluateAsAbsolute(AbsValue, getAssemblerPtr())) { in emitValueImpl() 255 if (!isUIntN(8 * Size, AbsValue) && !isIntN(8 * Size, AbsValue)) { in emitValueImpl() 257 Loc, "value evaluated as " + Twine(AbsValue) + " is out of range."); in emitValueImpl() 260 emitIntValue(AbsValue, Size); in emitValueImpl()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeDAG.cpp | 1611 SDValue AbsValue = DAG.getNode(ISD::FABS, DL, FloatVT, Mag); in ExpandFCOPYSIGN() local 1612 SDValue NegValue = DAG.getNode(ISD::FNEG, DL, FloatVT, AbsValue); in ExpandFCOPYSIGN() 1615 return DAG.getSelect(DL, FloatVT, Cond, NegValue, AbsValue); in ExpandFCOPYSIGN()
|