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