Lines Matching defs:Semantics
279 /// Parse a floating point expression using the float \p Semantics
281 bool parseRealValue(const fltSemantics &Semantics, APInt &Res);
3253 bool AsmParser::parseRealValue(const fltSemantics &Semantics, APInt &Res) {
3270 APFloat Value(Semantics);
3275 Value = APFloat::getInf(Semantics);
3277 Value = APFloat::getNaN(Semantics, false, ~0);
3298 const fltSemantics &Semantics) {
3301 if (checkForValidSection() || parseRealValue(Semantics, AsInt))
4938 bool AsmParser::parseDirectiveRealDCB(StringRef IDVal, const fltSemantics &Semantics) {
4953 if (parseRealValue(Semantics, AsInt) || parseEOL())