reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/MC/MCParser/MCAsmParser.h
  238   bool check(bool P, SMLoc Loc, const Twine &Msg);

References

include/llvm/MC/MCParser/MCAsmParserExtension.h
  106     return getParser().check(P, Loc, Msg);
lib/MC/MCParser/AsmParser.cpp
 3011        check(OffsetValue < 0, OffsetLoc, "expression is negative")) ||
 3012       (check(Offset->getKind() != llvm::MCExpr::Constant &&
 3502       check(FileNumber < 1 && Ctx.getDwarfVersion() < 5, Loc,
 3504       check(!getContext().isValidDwarfFileNumber(FileNumber), Loc,
 3606       check(FileNumber < 1, FileNumberLoc, "file number less than one") ||
 3641          check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc,
 3650          check(FileNumber < 1, Loc, "file number less than one in '" +
 3652          check(!getCVContext().isValidFileNumber(FileNumber), Loc,
 3812       parseTokenLoc(Loc) || check(parseIdentifier(FnStartName), Loc,
 3816       parseTokenLoc(Loc) || check(parseIdentifier(FnEndName), Loc,
 3838       check(SourceFileId <= 0, Loc,
 3844       check(SourceLineNum < 0, Loc,
 3846       parseTokenLoc(Loc) || check(parseIdentifier(FnStartName), Loc,
 3848       parseTokenLoc(Loc) || check(parseIdentifier(FnEndName), Loc,
 4639       check(parseIdentifier(Name), Loc,
 4665       check(AlignSizePow2 < 0 || AlignSizePow2 > 30, ExprLoc,
 4688     if (check(parseIdentifier(Option), Loc, kInvalidOptionError) ||
 4689         check(Option != "align_to_end", Loc, kInvalidOptionError) ||
 4986       check(enterIncludeFile(Filename), IncludeLoc,
 5025   if (check(Skip < 0, SkipLoc, "skip is negative"))
 5570   if (check(Count < 0, CountLoc, "Count is negative") ||
lib/MC/MCParser/MCAsmParser.cpp
   74   return check(P, getTok().getLoc(), Msg);