HomeSort by relevance Sort by last modified time
    Searched refs:lltok (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/AsmParser/
LLLexer.h 38 lltok::Kind CurKind;
50 lltok::Kind Lex() {
56 lltok::Kind getKind() const { return CurKind; }
73 lltok::Kind LexToken();
77 lltok::Kind ReadString(lltok::Kind kind);
80 lltok::Kind LexIdentifier();
81 lltok::Kind LexDigitOrNegative();
82 lltok::Kind LexPositive();
83 lltok::Kind LexAt()
    [all...]
LLParser.cpp 236 case lltok::Eof: return false;
237 case lltok::kw_declare: if (ParseDeclare()) return true; break;
238 case lltok::kw_define: if (ParseDefine()) return true; break;
239 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
240 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
241 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
242 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
243 case lltok::LocalVar: if (ParseNamedType()) return true; break;
244 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
245 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break
    [all...]
LLLexer.cpp 191 lltok::Kind LLLexer::LexToken() {
201 return lltok::Error;
202 case EOF: return lltok::Eof;
219 return lltok::LabelStr;
223 return lltok::dotdotdot;
225 return lltok::Error;
235 case '=': return lltok::equal;
236 case '[': return lltok::lsquare;
237 case ']': return lltok::rsquare;
238 case '{': return lltok::lbrace
    [all...]
LLParser.h 166 bool ParseToken(lltok::Kind T, const char *ErrMsg);
167 bool EatIfPresent(lltok::Kind T) {
177 case lltok::kw_fast: FMF.setUnsafeAlgebra(); Lex.Lex(); continue;
178 case lltok::kw_nnan: FMF.setNoNaNs(); Lex.Lex(); continue;
179 case lltok::kw_ninf: FMF.setNoInfs(); Lex.Lex(); continue;
180 case lltok::kw_nsz: FMF.setNoSignedZeros(); Lex.Lex(); continue;
181 case lltok::kw_arcp: FMF.setAllowReciprocal(); Lex.Lex(); continue;
187 bool ParseOptionalToken(lltok::Kind T, bool &Present,
209 return ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr);
LLToken.h 18 namespace lltok { namespace in namespace:llvm
203 } // end namespace lltok

Completed in 34 milliseconds