Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectStreamer.cpp231 int64_t AbsValue; in emitValueImpl() local
232 if (Value->evaluateAsAbsolute(AbsValue, getAssemblerPtr())) { in emitValueImpl()
233 if (!isUIntN(8 * Size, AbsValue) && !isIntN(8 * Size, AbsValue)) { in emitValueImpl()
235 Loc, "value evaluated as " + Twine(AbsValue) + " is out of range."); in emitValueImpl()
238 emitIntValue(AbsValue, Size); in emitValueImpl()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1574 SDValue AbsValue = DAG.getNode(ISD::FABS, DL, FloatVT, Mag); in ExpandFCOPYSIGN() local
1575 SDValue NegValue = DAG.getNode(ISD::FNEG, DL, FloatVT, AbsValue); in ExpandFCOPYSIGN()
1578 return DAG.getSelect(DL, FloatVT, Cond, NegValue, AbsValue); in ExpandFCOPYSIGN()