Lines Matching defs:Semantics
279 /// Parse a floating point expression using the float \p Semantics
281 bool parseRealValue(const fltSemantics &Semantics, APInt &Res);
3271 bool AsmParser::parseRealValue(const fltSemantics &Semantics, APInt &Res) {
3288 APFloat Value(Semantics);
3293 Value = APFloat::getInf(Semantics);
3295 Value = APFloat::getNaN(Semantics, false, ~0);
3316 const fltSemantics &Semantics) {
3319 if (checkForValidSection() || parseRealValue(Semantics, AsInt))
4979 bool AsmParser::parseDirectiveRealDCB(StringRef IDVal, const fltSemantics &Semantics) {
4994 if (parseRealValue(Semantics, AsInt) || parseEOL())