/external/llvm/examples/Kaleidoscope/Chapter2/ |
H A D | toy.cpp | 154 int TokPrec = BinopPrecedence[CurTok]; local 155 if (TokPrec <= 0) return -1; 156 return TokPrec; 236 int TokPrec = GetTokPrecedence(); local 240 if (TokPrec < ExprPrec) 254 if (TokPrec < NextPrec) { 255 RHS = ParseBinOpRHS(TokPrec+1, RHS);
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
H A D | toy.cpp | 174 int TokPrec = BinopPrecedence[CurTok]; local 175 if (TokPrec <= 0) return -1; 176 return TokPrec; 257 int TokPrec = GetTokPrecedence(); local 261 if (TokPrec < ExprPrec) 275 if (TokPrec < NextPrec) { 276 RHS = ParseBinOpRHS(TokPrec+1, RHS);
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
H A D | toy.cpp | 190 int TokPrec = BinopPrecedence[CurTok]; local 191 if (TokPrec <= 0) 193 return TokPrec; 290 int TokPrec = GetTokPrecedence(); local 294 if (TokPrec < ExprPrec) 309 if (TokPrec < NextPrec) { 310 RHS = ParseBinOpRHS(TokPrec + 1, RHS);
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
H A D | toy.cpp | 230 int TokPrec = BinopPrecedence[CurTok]; local 231 if (TokPrec <= 0) 233 return TokPrec; 410 int TokPrec = GetTokPrecedence(); local 414 if (TokPrec < ExprPrec) 429 if (TokPrec < NextPrec) { 430 RHS = ParseBinOpRHS(TokPrec + 1, RHS);
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
H A D | toy.cpp | 261 int TokPrec = BinopPrecedence[CurTok]; local 262 if (TokPrec <= 0) 264 return TokPrec; 457 int TokPrec = GetTokPrecedence(); local 461 if (TokPrec < ExprPrec) 476 if (TokPrec < NextPrec) { 477 RHS = ParseBinOpRHS(TokPrec + 1, RHS);
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
H A D | toy.cpp | 281 int TokPrec = BinopPrecedence[CurTok]; local 282 if (TokPrec <= 0) 284 return TokPrec; 528 int TokPrec = GetTokPrecedence(); local 532 if (TokPrec < ExprPrec) 547 if (TokPrec < NextPrec) { 548 RHS = ParseBinOpRHS(TokPrec + 1, RHS);
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
H A D | toy.cpp | 423 int TokPrec = BinopPrecedence[CurTok]; local 424 if (TokPrec <= 0) 426 return TokPrec; 674 int TokPrec = GetTokPrecedence(); local 678 if (TokPrec < ExprPrec) 694 if (TokPrec < NextPrec) { 695 RHS = ParseBinOpRHS(TokPrec + 1, RHS);
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
H A D | toy-jit.cpp | 272 int TokPrec = BinopPrecedence[CurTok]; local 273 if (TokPrec <= 0) return -1; 274 return TokPrec; 490 int TokPrec = GetTokPrecedence(); local 494 if (TokPrec < ExprPrec) 508 if (TokPrec < NextPrec) { 509 RHS = ParseBinOpRHS(TokPrec+1, RHS);
|
H A D | toy.cpp | 279 int TokPrec = BinopPrecedence[CurTok]; local 280 if (TokPrec <= 0) return -1; 281 return TokPrec; 497 int TokPrec = GetTokPrecedence(); local 501 if (TokPrec < ExprPrec) 515 if (TokPrec < NextPrec) { 516 RHS = ParseBinOpRHS(TokPrec+1, RHS);
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
H A D | toy.cpp | 256 int TokPrec = BinopPrecedence[CurTok]; local 257 if (TokPrec <= 0) return -1; 258 return TokPrec; 474 int TokPrec = GetTokPrecedence(); local 478 if (TokPrec < ExprPrec) 492 if (TokPrec < NextPrec) { 493 RHS = ParseBinOpRHS(TokPrec+1, RHS);
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
H A D | toy-jit.cpp | 257 int TokPrec = BinopPrecedence[CurTok]; local 258 if (TokPrec <= 0) return -1; 259 return TokPrec; 475 int TokPrec = GetTokPrecedence(); local 479 if (TokPrec < ExprPrec) 493 if (TokPrec < NextPrec) { 494 RHS = ParseBinOpRHS(TokPrec+1, RHS);
|
H A D | toy.cpp | 258 int TokPrec = BinopPrecedence[CurTok]; local 259 if (TokPrec <= 0) return -1; 260 return TokPrec; 476 int TokPrec = GetTokPrecedence(); local 480 if (TokPrec < ExprPrec) 494 if (TokPrec < NextPrec) { 495 RHS = ParseBinOpRHS(TokPrec+1, RHS);
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
H A D | toy.cpp | 298 int TokPrec = BinopPrecedence[CurTok]; local 299 if (TokPrec <= 0) return -1; 300 return TokPrec; 516 int TokPrec = GetTokPrecedence(); local 520 if (TokPrec < ExprPrec) 534 if (TokPrec < NextPrec) { 535 RHS = ParseBinOpRHS(TokPrec+1, RHS);
|
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
H A D | toy.cpp | 273 int TokPrec = BinopPrecedence[CurTok]; local 274 if (TokPrec <= 0) return -1; 275 return TokPrec; 511 int TokPrec = GetTokPrecedence(); local 515 if (TokPrec < ExprPrec) 530 if (TokPrec < NextPrec) { 531 RHS = ParseBinOpRHS(TokPrec+1, std::move(RHS));
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
H A D | toy.cpp | 272 int TokPrec = BinopPrecedence[CurTok]; local 273 if (TokPrec <= 0) return -1; 274 return TokPrec; 510 int TokPrec = GetTokPrecedence(); local 514 if (TokPrec < ExprPrec) 529 if (TokPrec < NextPrec) { 530 RHS = ParseBinOpRHS(TokPrec+1, std::move(RHS));
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
H A D | toy.cpp | 272 int TokPrec = BinopPrecedence[CurTok]; local 273 if (TokPrec <= 0) return -1; 274 return TokPrec; 510 int TokPrec = GetTokPrecedence(); local 514 if (TokPrec < ExprPrec) 529 if (TokPrec < NextPrec) { 530 RHS = ParseBinOpRHS(TokPrec+1, std::move(RHS));
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
H A D | toy.cpp | 272 int TokPrec = BinopPrecedence[CurTok]; local 273 if (TokPrec <= 0) return -1; 274 return TokPrec; 510 int TokPrec = GetTokPrecedence(); local 514 if (TokPrec < ExprPrec) 529 if (TokPrec < NextPrec) { 530 RHS = ParseBinOpRHS(TokPrec+1, std::move(RHS));
|
/external/llvm/lib/MC/MCParser/ |
H A D | AsmParser.cpp | 1149 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind); local 1153 if (TokPrec < Precedence) 1167 if (TokPrec < NextTokPrec && parseBinOpRHS(TokPrec + 1, RHS, EndLoc))
|