HomeSort by relevance Sort by last modified time
    Searched full:asmtoken (Results 26 - 47 of 47) sorted by null

12

  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 56 bool ParseDirective(AsmToken DirectiveID) override;
77 bool matchRegisterName(const AsmToken &Tok, unsigned &RegNo,
595 const AsmToken &Tok = Parser.getTok();
599 if (getLexer().getKind() != AsmToken::Percent)
624 if (getLexer().isNot(AsmToken::EndOfStatement)) {
626 if (getLexer().is(AsmToken::Comma)) {
639 while (getLexer().is(AsmToken::Comma) || getLexer().is(AsmToken::Plus)) {
640 if (getLexer().is(AsmToken::Plus)) {
653 if (getLexer().isNot(AsmToken::EndOfStatement))
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/MCParser/
MCAsmParser.h 16 class AsmToken;
84 /// Lex - Get the next AsmToken in the stream, possibly handling file
86 virtual const AsmToken &Lex() = 0;
88 /// getTok - Get the current AsmToken from the stream.
89 const AsmToken &getTok();
MCAsmParserExtension.h 69 const AsmToken &Lex() { return getParser().Lex(); }
71 const AsmToken &getTok() { return getParser().getTok(); }
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
EDToken.cpp 93 SmallVector<AsmToken, 10> asmTokens;
104 SmallVectorImpl<AsmToken>::iterator tokenIterator;
143 case AsmToken::Identifier:
160 case AsmToken::Integer:
175 case AsmToken::Register:
EDDisassembler.cpp 350 SmallVectorImpl<AsmToken> &tokens,
384 AsmToken OpcodeToken = genericParser->Lex();
385 AsmToken NextToken = genericParser->Lex(); // consume next token, because specificParser expects us to
387 if (OpcodeToken.is(AsmToken::Identifier)) {
391 if (NextToken.isNot(AsmToken::Eof) &&
404 SpecificAsmLexer->isNot(AsmToken::Eof) &&
405 SpecificAsmLexer->isNot(AsmToken::EndOfStatement)) {
406 if (SpecificAsmLexer->is(AsmToken::Error)) {
EDDisassembler.h 33 class AsmToken;
261 llvm::SmallVectorImpl<llvm::AsmToken> &tokens,
  /external/swiftshader/third_party/LLVM/lib/Target/X86/AsmParser/
X86AsmParser.cpp 93 virtual bool ParseDirective(AsmToken DirectiveID);
395 const AsmToken &TokPercent = Parser.getTok();
396 assert(TokPercent.is(AsmToken::Percent) && "Invalid token kind!");
400 const AsmToken &Tok = Parser.getTok();
401 if (Tok.isNot(AsmToken::Identifier))
431 if (getLexer().isNot(AsmToken::LParen))
436 const AsmToken &IntTok = Parser.getTok();
437 if (IntTok.isNot(AsmToken::Integer))
451 if (getParser().Lex().isNot(AsmToken::RParen))
494 case AsmToken::Percent:
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 81 const AsmToken &Lex() { return getParser().Lex(); }
83 const AsmToken &getTok() { return getParser().getTok(); }
MCAsmParser.h 141 /// \brief Get the next AsmToken in the stream, possibly handling file
143 virtual const AsmToken &Lex() = 0;
145 /// \brief Get the current AsmToken from the stream.
146 const AsmToken &getTok() const;
MCTargetAsmParser.h 19 class AsmToken;
160 AsmToken Token, OperandVector &Operands) {
174 virtual bool ParseDirective(AsmToken DirectiveID) = 0;
211 virtual bool isLabel(AsmToken &Token) { return true; };
  /external/llvm/lib/Target/Hexagon/AsmParser/
HexagonAsmParser.cpp 90 bool isLabel(AsmToken &Token) override;
166 AsmToken ID, OperandVector &Operands) override;
168 virtual bool ParseDirective(AsmToken DirectiveID) override;
732 if (!Parser.getTok().is(AsmToken::Colon))
862 bool HexagonAsmParser::ParseDirective(AsmToken DirectiveID) {
884 assert((getLexer().isNot(AsmToken::EndOfStatement)) &&
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 231 bool ParseDirective(AsmToken DirectiveID);
    [all...]
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 402 bool ParseDirective(AsmToken DirectiveID) override;
502 if (Parser.getTok().isNot(AsmToken::Percent))
507 if (Parser.getTok().isNot(AsmToken::Identifier))
562 if (Parser.getTok().isNot(AsmToken::Percent))
591 if (getLexer().is(AsmToken::LParen)) {
594 if (getLexer().is(AsmToken::Percent)) {
608 if (getLexer().is(AsmToken::Comma))
621 if (getLexer().is(AsmToken::Comma)) {
630 if (getLexer().isNot(AsmToken::RParen))
683 bool SystemZAsmParser::ParseDirective(AsmToken DirectiveID)
    [all...]
  /external/llvm/lib/Target/Lanai/AsmParser/
LanaiAsmParser.cpp 46 bool ParseDirective(AsmToken DirectiveID) override;
630 bool LanaiAsmParser::ParseDirective(AsmToken DirectiveId) { return true; }
677 if (Lexer.getKind() == AsmToken::Percent)
679 if (Lexer.getKind() == AsmToken::Identifier) {
703 if (Lexer.getKind() != AsmToken::Identifier)
719 if (Lexer.getKind() != AsmToken::LParen) {
731 if (Lexer.getKind() == AsmToken::Plus && Parser.parseExpression(RHS))
736 if (Lexer.getKind() != AsmToken::RParen) {
761 case AsmToken::Identifier:
763 case AsmToken::Plus
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 135 bool ParseDirective(AsmToken DirectiveID) override;
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 392 bool ParseDirective(AsmToken DirectiveID) override;
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 149 bool ParseDirective(AsmToken DirectiveID) override;
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCTargetAsmParser.h 19 class AsmToken;
80 virtual bool ParseDirective(AsmToken DirectiveID) = 0;
  /external/llvm/lib/MC/MCParser/
MCAsmParser.cpp 32 const AsmToken &MCAsmParser::getTok() const {
  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
MCAsmParser.cpp 32 const AsmToken &MCAsmParser::getTok() {
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 254 bool MatchRegisterName(const AsmToken &Tok,
306 bool ParseDirective(AsmToken DirectiveID) override;
    [all...]
  /external/llvm/lib/Target/AMDGPU/Utils/
AMDKernelCodeTUtils.cpp 107 if (MCParser.getLexer().isNot(AsmToken::Equal)) {

Completed in 1598 milliseconds

12