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

  /external/llvm/lib/AsmParser/
LLLexer.h 38 lltok::Kind CurKind;
49 lltok::Kind Lex() {
55 lltok::Kind getKind() const { return CurKind; }
70 lltok::Kind LexToken();
74 lltok::Kind ReadString(lltok::Kind kind);
77 lltok::Kind LexIdentifier();
78 lltok::Kind LexDigitOrNegative();
79 lltok::Kind LexPositive();
80 lltok::Kind LexAt()
    [all...]
LLParser.cpp 175 case lltok::Eof: return false;
176 case lltok::kw_declare: if (ParseDeclare()) return true; break;
177 case lltok::kw_define: if (ParseDefine()) return true; break;
178 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
179 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
180 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
181 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
182 case lltok::LocalVar: if (ParseNamedType()) return true; break;
183 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
184 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break
    [all...]
LLLexer.cpp 189 lltok::Kind LLLexer::LexToken() {
199 return lltok::Error;
200 case EOF: return lltok::Eof;
217 return lltok::LabelStr;
221 return lltok::dotdotdot;
223 return lltok::Error;
233 case '=': return lltok::equal;
234 case '[': return lltok::lsquare;
235 case ']': return lltok::rsquare;
236 case '{': return lltok::lbrace
    [all...]
LLParser.h 165 bool ParseToken(lltok::Kind T, const char *ErrMsg);
166 bool EatIfPresent(lltok::Kind T) {
176 case lltok::kw_fast: FMF.setUnsafeAlgebra(); Lex.Lex(); continue;
177 case lltok::kw_nnan: FMF.setNoNaNs(); Lex.Lex(); continue;
178 case lltok::kw_ninf: FMF.setNoInfs(); Lex.Lex(); continue;
179 case lltok::kw_nsz: FMF.setNoSignedZeros(); Lex.Lex(); continue;
180 case lltok::kw_arcp: FMF.setAllowReciprocal(); Lex.Lex(); continue;
186 bool ParseOptionalToken(lltok::Kind T, bool &Present,
213 return ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr);
226 bool ParseOptionalDerefAttrBytes(lltok::Kind AttrKind, uint64_t &Bytes)
    [all...]
LLToken.h 18 namespace lltok { namespace in namespace:llvm
216 } // end namespace lltok
  /external/llvm/docs/
ExtendingLLVM.rst 308 modify ``lltok::Kind LLLexer::LexIdentifier()`` to add ability to

Completed in 2658 milliseconds