Home
last modified time | relevance | path

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

/external/llvm/include/llvm/IR/
DInstruction.h90 bool isBinaryOp() const { return isBinaryOp(getOpcode()); } in isBinaryOp() function
100 static inline bool isBinaryOp(unsigned Opcode) { in isBinaryOp() function
DInstrTypes.h363 return I->isBinaryOp();
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp192 bool isBinaryOp() const { return isOperator && Args.size() == 2; } in isBinaryOp() function in __anon6ff389fb0111::PrototypeAST
195 assert(isUnaryOp() || isBinaryOp()); in getOperatorName()
810 if (Proto->isBinaryOp()) in Codegen()
833 if (Proto->isBinaryOp()) in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp211 bool isBinaryOp() const { return isOperator && Args.size() == 2; } in isBinaryOp() function in PrototypeAST
214 assert(isUnaryOp() || isBinaryOp()); in getOperatorName()
976 if (Proto->isBinaryOp()) in Codegen()
1002 if (Proto->isBinaryOp()) in Codegen()
Dtoy.cpp211 bool isBinaryOp() const { return isOperator && Args.size() == 2; } in isBinaryOp() function in PrototypeAST
214 assert(isUnaryOp() || isBinaryOp()); in getOperatorName()
1263 if (Proto->isBinaryOp()) in Codegen()
1286 if (Proto->isBinaryOp()) in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp226 bool isBinaryOp() const { return isOperator && Args.size() == 2; } in isBinaryOp() function in PrototypeAST
229 assert(isUnaryOp() || isBinaryOp()); in getOperatorName()
994 if (Proto->isBinaryOp()) in Codegen()
1020 if (Proto->isBinaryOp()) in Codegen()
Dtoy.cpp232 bool isBinaryOp() const { return isOperator && Args.size() == 2; } in isBinaryOp() function in PrototypeAST
235 assert(isUnaryOp() || isBinaryOp()); in getOperatorName()
1365 if (Proto->isBinaryOp()) in Codegen()
1388 if (Proto->isBinaryOp()) in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp208 bool isBinaryOp() const { return isOperator && Args.size() == 2; } in isBinaryOp() function in __anone46ffafc0111::PrototypeAST
211 assert(isUnaryOp() || isBinaryOp()); in getOperatorName()
970 if (Proto->isBinaryOp()) in Codegen()
996 if (Proto->isBinaryOp()) in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
Dtoy.cpp209 bool isBinaryOp() const { return isOperator && Args.size() == 2; } in isBinaryOp() function in PrototypeAST
212 assert(isUnaryOp() || isBinaryOp()); in getOperatorName()
1223 if (Proto->isBinaryOp()) in Codegen()
1246 if (Proto->isBinaryOp()) in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
Dtoy.cpp256 bool isBinaryOp() const { return isOperator && Args.size() == 2; } in isBinaryOp() function in PrototypeAST
259 assert(isUnaryOp() || isBinaryOp()); in getOperatorName()
1546 if (Proto->isBinaryOp()) in Codegen()
1573 if (Proto->isBinaryOp()) in Codegen()
/external/llvm/lib/Target/NVPTX/
DNVPTXGenericToNVVM.cpp348 if (Instruction::isBinaryOp(Opcode)) { in remapConstantExpr()
/external/llvm/docs/tutorial/
DLangImpl6.rst140 bool isBinaryOp() const { return isOperator && Args.size() == 2; }
143 assert(isUnaryOp() || isBinaryOp());
274 if (Proto->isBinaryOp())
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
DAMDILPeepholeOptimizer.cpp448 if (!inst->isBinaryOp()) { in optimizeBitInsert()
688 if (!inst->isBinaryOp()) { in optimizeBitExtract()
/external/mesa3d/src/gallium/drivers/radeon/
DAMDILPeepholeOptimizer.cpp448 if (!inst->isBinaryOp()) { in optimizeBitInsert()
688 if (!inst->isBinaryOp()) { in optimizeBitExtract()
/external/llvm/lib/Transforms/Scalar/
DLoopRerollPass.cpp412 if (!C->isBinaryOp()) in add()
/external/llvm/lib/Analysis/
DConstantFolding.cpp1014 if (Instruction::isBinaryOp(Opcode)) { in ConstantFoldInstOperands()
/external/llvm/lib/Transforms/Vectorize/
DBBVectorize.cpp893 } else if (!(I->isBinaryOp() || isa<ShuffleVectorInst>(I) || in isInstVectorizable()