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; }
69 lltok::Kind LexToken();
73 lltok::Kind ReadString(lltok::Kind kind);
76 lltok::Kind LexIdentifier();
77 lltok::Kind LexDigitOrNegative();
78 lltok::Kind LexPositive();
79 lltok::Kind LexAt()
    [all...]
LLParser.cpp 224 case lltok::Eof: return false;
225 case lltok::kw_declare: if (ParseDeclare()) return true; break;
226 case lltok::kw_define: if (ParseDefine()) return true; break;
227 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
228 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
229 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
230 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
231 case lltok::LocalVar: if (ParseNamedType()) return true; break;
232 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
233 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break
    [all...]
LLLexer.cpp 187 lltok::Kind LLLexer::LexToken() {
197 return lltok::Error;
198 case EOF: return lltok::Eof;
214 return lltok::LabelStr;
218 return lltok::dotdotdot;
220 return lltok::Error;
225 return lltok::LabelStr;
227 return lltok::Error;
237 case '=': return lltok::equal;
238 case '[': return lltok::lsquare
    [all...]
LLParser.h 156 bool ParseToken(lltok::Kind T, const char *ErrMsg);
157 bool EatIfPresent(lltok::Kind T) {
167 case lltok::kw_fast: FMF.setUnsafeAlgebra(); Lex.Lex(); continue;
168 case lltok::kw_nnan: FMF.setNoNaNs(); Lex.Lex(); continue;
169 case lltok::kw_ninf: FMF.setNoInfs(); Lex.Lex(); continue;
170 case lltok::kw_nsz: FMF.setNoSignedZeros(); Lex.Lex(); continue;
171 case lltok::kw_arcp: FMF.setAllowReciprocal(); Lex.Lex(); continue;
177 bool ParseOptionalToken(lltok::Kind T, bool &Present, LocTy *Loc = 0) {
LLToken.h 18 namespace lltok { namespace in namespace:llvm
178 } // end namespace lltok

Completed in 32 milliseconds