Home
last modified time | relevance | path

Searched refs:isBinaryOp (Results 1 – 5 of 5) sorted by relevance

/external/llvm/include/llvm/
DInstruction.h86 bool isBinaryOp() const { return isBinaryOp(getOpcode()); } in isBinaryOp() function
96 static inline bool isBinaryOp(unsigned Opcode) { in isBinaryOp() function
DInstrTypes.h366 return I->isBinaryOp();
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp191 bool isBinaryOp() const { return isOperator && Args.size() == 2; } in isBinaryOp() function in PrototypeAST
194 assert(isUnaryOp() || isBinaryOp()); in getOperatorName()
808 if (Proto->isBinaryOp()) in Codegen()
831 if (Proto->isBinaryOp()) in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp207 bool isBinaryOp() const { return isOperator && Args.size() == 2; } in isBinaryOp() function in PrototypeAST
210 assert(isUnaryOp() || isBinaryOp()); in getOperatorName()
968 if (Proto->isBinaryOp()) in Codegen()
994 if (Proto->isBinaryOp()) in Codegen()
/external/llvm/lib/Analysis/
DConstantFolding.cpp818 if (Instruction::isBinaryOp(Opcode)) { in ConstantFoldInstOperands()