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.cpp192 int64_t AbsValue; in emitValueImpl() local
193 if (Value->evaluateAsAbsolute(AbsValue, getAssemblerPtr())) { in emitValueImpl()
194 if (!isUIntN(8 * Size, AbsValue) && !isIntN(8 * Size, AbsValue)) { in emitValueImpl()
196 Loc, "value evaluated as " + Twine(AbsValue) + " is out of range."); in emitValueImpl()
199 emitIntValue(AbsValue, Size); in emitValueImpl()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1649 SDValue AbsValue = DAG.getNode(ISD::FABS, DL, FloatVT, Mag); in ExpandFCOPYSIGN() local
1650 SDValue NegValue = DAG.getNode(ISD::FNEG, DL, FloatVT, AbsValue); in ExpandFCOPYSIGN()
1653 return DAG.getSelect(DL, FloatVT, Cond, NegValue, AbsValue); in ExpandFCOPYSIGN()