Home
last modified time | relevance | path

Searched refs:AbsValue (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectStreamer.cpp257 int64_t AbsValue; in emitValueImpl() local
258 if (Value->evaluateAsAbsolute(AbsValue, getAssemblerPtr())) { in emitValueImpl()
259 if (!isUIntN(8 * Size, AbsValue) && !isIntN(8 * Size, AbsValue)) { in emitValueImpl()
261 Loc, "value evaluated as " + Twine(AbsValue) + " is out of range."); in emitValueImpl()
264 emitIntValue(AbsValue, Size); in emitValueImpl()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1639 SDValue AbsValue = DAG.getNode(ISD::FABS, DL, FloatVT, Mag); in ExpandFCOPYSIGN() local
1640 SDValue NegValue = DAG.getNode(ISD::FNEG, DL, FloatVT, AbsValue); in ExpandFCOPYSIGN()
1643 return DAG.getSelect(DL, FloatVT, Cond, NegValue, AbsValue); in ExpandFCOPYSIGN()