Searched defs:AsmParser (Results 1 - 3 of 3) sorted by relevance

/external/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp604 /// The tablegen AsmParser record.
605 Record *AsmParser; member in class:__anon26561::AsmMatcherInfo
659 AsmMatcherInfo(Record *AsmParser,
855 if (!Info.AsmParser->getValueAsBit("MnemonicContainsDot")) {
1279 : Records(records), AsmParser(asmParser), Target(target) {
2068 OS << " return " << Info.Target.getName() << "AsmParser::Match_"
2183 static void emitMatchRegisterName(CodeGenTarget &Target, Record *AsmParser,
2291 Info.AsmParser->getValueAsString("AsmParserClassName");
2641 Record *AsmParser = Target.getAsmParser();
2642 std::string ClassName = AsmParser
[all...]
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp1 //===- AsmParser.cpp - Parser for Assembly Files --------------------------===//
121 class AsmParser : public MCAsmParser { class in namespace:__anon25885
122 AsmParser(const AsmParser &) LLVM_DELETED_FUNCTION;
123 void operator=(const AsmParser &) LLVM_DELETED_FUNCTION;
184 AsmParser(SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
186 virtual ~AsmParser();
491 AsmParser::AsmParser(SourceMgr &_SM, MCContext &_Ctx, MCStreamer &_Out, function in class:AsmParser
524 AsmParser
[all...]
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp341 : MCParsedAsmOperand(), Kind(K), AsmParser(Parser) {}
345 MipsAsmParser &AsmParser; member in class:__anon26038::MipsOperand
400 AsmParser.WarnIfAssemblerTemporary(RegIdx.Index, StartLoc);
419 AsmParser.Warning(StartLoc, "Float register should be even.");
575 if (!AsmParser.allowOddSPReg() && RegIdx.Index & 1)
576 AsmParser.Error(StartLoc, "-mno-odd-spreg prohibits the use of odd FPU "
826 if (!AsmParser.hasEightFccRegisters())

Completed in 251 milliseconds