| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | RegisterBankInfo.cpp | 688 unsigned NumVal) const { in getNewVRegsEnd() 689 return const_cast<OperandsMapper *>(this)->getNewVRegsEnd(StartIdx, NumVal); in getNewVRegsEnd() 693 unsigned NumVal) { in getNewVRegsEnd() argument 694 assert((NewVRegs.size() == StartIdx + NumVal || in getNewVRegsEnd() 695 NewVRegs.size() > StartIdx + NumVal) && in getNewVRegsEnd() 697 return NewVRegs.size() <= StartIdx + NumVal ? NewVRegs.end() in getNewVRegsEnd() 698 : &NewVRegs[StartIdx + NumVal]; in getNewVRegsEnd()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter2/ |
| H A D | toy.cpp | 29 static double NumVal; // Filled in if tok_number variable 58 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 199 auto Result = std::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
| H A D | toy-jit.cpp | 49 static double NumVal; // Filled in if tok_number variable 84 NumVal = strtod(NumStr.c_str(), 0); in gettok() 305 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 551 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 553 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| H A D | toy.cpp | 50 static double NumVal; // Filled in if tok_number variable 85 NumVal = strtod(NumStr.c_str(), 0); in gettok() 306 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 552 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 554 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter6/ |
| H A D | toy.cpp | 64 static double NumVal; // Filled in if tok_number variable 107 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 315 auto Result = std::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 570 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 572 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/cached/ |
| H A D | toy-jit.cpp | 64 static double NumVal; // Filled in if tok_number variable 99 NumVal = strtod(NumStr.c_str(), 0); in gettok() 320 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 566 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 568 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| H A D | toy.cpp | 71 static double NumVal; // Filled in if tok_number variable 106 NumVal = strtod(NumStr.c_str(), 0); in gettok() 327 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 573 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 575 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| /openbsd-src/gnu/llvm/llvm/docs/tutorial/MyFirstLanguageFrontend/ |
| H A D | LangImpl01.rst | 85 static double NumVal; // Filled in if tok_number 91 the current token is a numeric literal (like 1.0), ``NumVal`` holds its 146 NumVal = strtod(NumStr.c_str(), 0); 152 convert it to a numeric value that we store in ``NumVal``. Note that
|
| H A D | LangImpl06.rst | 197 if (NumVal < 1 || NumVal > 100) 199 BinaryPrecedence = (unsigned)NumVal;
|
| H A D | LangImpl02.rst | 211 auto Result = std::make_unique<NumberExprAST>(NumVal);
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
| H A D | toy.cpp | 64 static double NumVal; // Filled in if tok_number variable 109 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 315 auto Result = std::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 621 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 623 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter7/ |
| H A D | toy.cpp | 69 static double NumVal; // Filled in if tok_number variable 114 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 337 auto Result = std::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 643 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 645 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
| H A D | toy.cpp | 64 static double NumVal; // Filled in if tok_number variable 109 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 332 auto Result = std::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 638 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 640 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter8/ |
| H A D | toy.cpp | 69 static double NumVal; // Filled in if tok_number variable 114 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 337 auto Result = std::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 643 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 645 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
| H A D | toy.cpp | 64 static double NumVal; // Filled in if tok_number variable 109 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 332 auto Result = std::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 638 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 640 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
| H A D | toy.cpp | 64 static double NumVal; // Filled in if tok_number variable 109 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 332 auto Result = std::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 638 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 640 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter3/ |
| H A D | toy.cpp | 42 static double NumVal; // Filled in if tok_number variable 71 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 226 auto Result = std::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/initial/ |
| H A D | toy.cpp | 48 static double NumVal; // Filled in if tok_number variable 83 NumVal = strtod(NumStr.c_str(), 0); in gettok() 304 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 550 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 552 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter4/ |
| H A D | toy.cpp | 52 static double NumVal; // Filled in if tok_number variable 81 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 236 auto Result = std::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | RegisterBankInfo.h | 314 getNewVRegsEnd(unsigned StartIdx, unsigned NumVal) const; 316 unsigned NumVal);
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/complete/ |
| H A D | toy.cpp | 90 static double NumVal; // Filled in if tok_number variable 125 NumVal = strtod(NumStr.c_str(), 0); in gettok() 346 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 592 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 594 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter9/ |
| H A D | toy.cpp | 120 static double NumVal; // Filled in if tok_number variable 167 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 445 auto Result = std::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 758 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 760 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter5/ |
| H A D | toy.cpp | 60 static double NumVal; // Filled in if tok_number variable 99 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 281 auto Result = std::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr()
|