HomeSort by relevance Sort by last modified time
    Searched defs:isBinaryOp (Results 1 - 14 of 14) sorted by null

  /external/llvm/include/llvm/IR/
Instruction.h 109 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
120 static inline bool isBinaryOp(unsigned Opcode) {
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 224 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
227 assert(isUnaryOp() || isBinaryOp());
884 if (P.isBinaryOp())
912 if (P.isBinaryOp())
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 243 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
246 assert(isUnaryOp() || isBinaryOp());
1042 if (P.isBinaryOp())
1078 if (P.isBinaryOp())
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 225 bool isBinaryOp() const { return isOperator && Args.size() == 2; }
228 assert(isUnaryOp() || isBinaryOp());
993 if (Proto->isBinaryOp())
1019 if (Proto->isBinaryOp())
    [all...]
toy.cpp 232 bool isBinaryOp() const { return isOperator && Args.size() == 2; }
235 assert(isUnaryOp() || isBinaryOp());
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 210 bool isBinaryOp() const { return isOperator && Args.size() == 2; }
213 assert(isUnaryOp() || isBinaryOp());
975 if (Proto->isBinaryOp())
1001 if (Proto->isBinaryOp())
    [all...]
toy.cpp 211 bool isBinaryOp() const { return isOperator && Args.size() == 2; }
214 assert(isUnaryOp() || isBinaryOp());
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 373 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
376 assert(isUnaryOp() || isBinaryOp());
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 251 bool isBinaryOp() const { return isOperator && Args.size() == 2; }
254 assert(isUnaryOp() || isBinaryOp());
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 209 bool isBinaryOp() const { return isOperator && Args.size() == 2; }
212 assert(isUnaryOp() || isBinaryOp());
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 226 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
229 assert(isUnaryOp() || isBinaryOp());
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 225 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
228 assert(isUnaryOp() || isBinaryOp());
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 225 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
228 assert(isUnaryOp() || isBinaryOp());
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 225 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
228 assert(isUnaryOp() || isBinaryOp());
    [all...]

Completed in 4219 milliseconds