Home
last modified time | relevance | path

Searched refs:GetTokPrecedence (Results 1 – 19 of 19) sorted by relevance

/llvm-project/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp174 static int GetTokPrecedence() { in GetTokPrecedence() function
276 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
294 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp200 static int GetTokPrecedence() { in GetTokPrecedence() function
303 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
321 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp213 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
214 static int GetTokPrecedence() { in GetTokPrecedence() function
317 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
335 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp258 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
259 static int GetTokPrecedence() { in GetTokPrecedence() function
444 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
462 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl02.rst368 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
369 static int GetTokPrecedence() {
391 reader). The ``GetTokPrecedence`` function returns the precedence for
396 ``GetTokPrecedence`` function. (Or just use a fixed-size array).
448 int TokPrec = GetTokPrecedence();
488 int NextPrec = GetTokPrecedence();
527 int NextPrec = GetTokPrecedence();
/llvm-project/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp252 static int GetTokPrecedence() { in GetTokPrecedence() function
475 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
492 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
H A Dtoy.cpp253 static int GetTokPrecedence() { in GetTokPrecedence() function
476 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
493 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp267 static int GetTokPrecedence() { in GetTokPrecedence() function
490 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
507 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
H A Dtoy.cpp274 static int GetTokPrecedence() { in GetTokPrecedence() function
497 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
514 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp292 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
293 static int GetTokPrecedence() { in GetTokPrecedence() function
494 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
512 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp288 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
289 static int GetTokPrecedence() { in GetTokPrecedence() function
541 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
559 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp314 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
315 static int GetTokPrecedence() { in GetTokPrecedence() function
567 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
585 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp311 static int GetTokPrecedence() { in GetTokPrecedence() function
563 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
581 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp305 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
306 static int GetTokPrecedence() { in GetTokPrecedence() function
558 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
576 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp305 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
306 static int GetTokPrecedence() { in GetTokPrecedence() function
558 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
576 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp305 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
306 static int GetTokPrecedence() { in GetTokPrecedence() function
558 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
576 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp251 static int GetTokPrecedence() { in GetTokPrecedence() function
474 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
491 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp419 static int GetTokPrecedence() { in GetTokPrecedence() function
675 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
694 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()
/llvm-project/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp293 static int GetTokPrecedence() { in GetTokPrecedence() function
516 int TokPrec = GetTokPrecedence(); in ParseBinOpRHS()
533 int NextPrec = GetTokPrecedence(); in ParseBinOpRHS()