HomeSort by relevance Sort by last modified time
    Searched refs:BinopPrecedence (Results 1 - 17 of 17) sorted by null

  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 144 /// BinopPrecedence - This holds the precedence for each binary operator that is
146 static std::map<char, int> BinopPrecedence;
154 int TokPrec = BinopPrecedence[CurTok];
378 BinopPrecedence['<'] = 10;
379 BinopPrecedence['+'] = 20;
380 BinopPrecedence['-'] = 20;
381 BinopPrecedence['*'] = 40; // highest.
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 164 /// BinopPrecedence - This holds the precedence for each binary operator that is
166 static std::map<char, int> BinopPrecedence;
174 int TokPrec = BinopPrecedence[CurTok];
546 BinopPrecedence['<'] = 10;
547 BinopPrecedence['+'] = 20;
548 BinopPrecedence['-'] = 20;
549 BinopPrecedence['*'] = 40; // highest.
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 251 /// BinopPrecedence - This holds the precedence for each binary operator that is
253 static std::map<char, int> BinopPrecedence;
261 int TokPrec = BinopPrecedence[CurTok];
881 BinopPrecedence[Proto->getOperatorName()] = Proto->getBinaryPrecedence();
904 BinopPrecedence.erase(Proto->getOperatorName());
1008 BinopPrecedence['<'] = 10;
1009 BinopPrecedence['+'] = 20;
1010 BinopPrecedence['-'] = 20;
1011 BinopPrecedence['*'] = 40; // highest.
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 262 /// BinopPrecedence - This holds the precedence for each binary operator that is
264 static std::map<char, int> BinopPrecedence;
272 int TokPrec = BinopPrecedence[CurTok];
994 BinopPrecedence[Proto->getOperatorName()] = Proto->getBinaryPrecedence();
1020 BinopPrecedence.erase(Proto->getOperatorName());
    [all...]
toy.cpp 269 /// BinopPrecedence - This holds the precedence for each binary operator that is
271 static std::map<char, int> BinopPrecedence;
279 int TokPrec = BinopPrecedence[CurTok];
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 246 /// BinopPrecedence - This holds the precedence for each binary operator that is
248 static std::map<char, int> BinopPrecedence;
256 int TokPrec = BinopPrecedence[CurTok];
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 247 /// BinopPrecedence - This holds the precedence for each binary operator that is
249 static std::map<char, int> BinopPrecedence;
257 int TokPrec = BinopPrecedence[CurTok];
976 BinopPrecedence[Proto->getOperatorName()] = Proto->getBinaryPrecedence();
1002 BinopPrecedence.erase(Proto->getOperatorName());
1111 BinopPrecedence['='] = 2;
1112 BinopPrecedence['<'] = 10;
1113 BinopPrecedence['+'] = 20;
1114 BinopPrecedence['-'] = 20;
1115 BinopPrecedence['/'] = 40
    [all...]
toy.cpp 248 /// BinopPrecedence - This holds the precedence for each binary operator that is
250 static std::map<char, int> BinopPrecedence;
258 int TokPrec = BinopPrecedence[CurTok];
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 180 /// BinopPrecedence - This holds the precedence for each binary operator that is
182 static std::map<char, int> BinopPrecedence;
190 int TokPrec = BinopPrecedence[CurTok];
847 BinopPrecedence['<'] = 10;
848 BinopPrecedence['+'] = 20;
849 BinopPrecedence['-'] = 20;
850 BinopPrecedence['*'] = 40; // highest.
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 220 /// BinopPrecedence - This holds the precedence for each binary operator that is
222 static std::map<char, int> BinopPrecedence;
230 int TokPrec = BinopPrecedence[CurTok];
887 BinopPrecedence['<'] = 10;
888 BinopPrecedence['+'] = 20;
889 BinopPrecedence['-'] = 20;
890 BinopPrecedence['*'] = 40; // highest.
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 271 /// BinopPrecedence - This holds the precedence for each binary operator that is
273 static std::map<char, int> BinopPrecedence;
281 int TokPrec = BinopPrecedence[CurTok];
1051 BinopPrecedence[Proto->getOperatorName()] = Proto->getBinaryPrecedence();
1077 BinopPrecedence.erase(Proto->getOperatorName());
1181 BinopPrecedence['='] = 2;
1182 BinopPrecedence['<'] = 10;
1183 BinopPrecedence['+'] = 20;
1184 BinopPrecedence['-'] = 20;
1185 BinopPrecedence['*'] = 40; // highest
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 413 /// BinopPrecedence - This holds the precedence for each binary operator that is
415 static std::map<char, int> BinopPrecedence;
423 int TokPrec = BinopPrecedence[CurTok];
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 288 /// BinopPrecedence - This holds the precedence for each binary operator that is
290 static std::map<char, int> BinopPrecedence;
298 int TokPrec = BinopPrecedence[CurTok];
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 263 /// BinopPrecedence - This holds the precedence for each binary operator that is
265 static std::map<char, int> BinopPrecedence;
273 int TokPrec = BinopPrecedence[CurTok];
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 262 /// BinopPrecedence - This holds the precedence for each binary operator that is
264 static std::map<char, int> BinopPrecedence;
272 int TokPrec = BinopPrecedence[CurTok];
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 262 /// BinopPrecedence - This holds the precedence for each binary operator that is
264 static std::map<char, int> BinopPrecedence;
272 int TokPrec = BinopPrecedence[CurTok];
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 262 /// BinopPrecedence - This holds the precedence for each binary operator that is
264 static std::map<char, int> BinopPrecedence;
272 int TokPrec = BinopPrecedence[CurTok];
    [all...]

Completed in 334 milliseconds