Home | History | Annotate | Download | only in llvm-mc

Lines Matching refs:Parser

202   // Get the target specific parser.
328 static int fillCommandLineSymbols(MCAsmParser &Parser){
340 auto &Context = Parser.getContext();
342 Parser.getStreamer().EmitAssignment(Symbol,
352 std::unique_ptr<MCAsmParser> Parser(
355 TheTarget->createMCAsmParser(STI, *Parser, MCII, MCOptions));
363 int SymbolResult = fillCommandLineSymbols(*Parser);
366 Parser->setShowParsedOperands(ShowInstOperands);
367 Parser->setTargetParser(*TAP);
369 int Res = Parser->Run(NoInitialTextSection);
414 // Tell SrcMgr about this buffer, which is what the parser will pick up.