/external/llvm/include/llvm/IR/ |
D | Instruction.h | 90 bool isBinaryOp() const { return isBinaryOp(getOpcode()); } in isBinaryOp() function 100 static inline bool isBinaryOp(unsigned Opcode) { in isBinaryOp() function
|
D | InstrTypes.h | 363 return I->isBinaryOp();
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 192 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/ |
D | toy-jit.cpp | 211 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()
|
D | toy.cpp | 211 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/ |
D | toy-jit.cpp | 226 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()
|
D | toy.cpp | 232 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/ |
D | toy.cpp | 208 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/ |
D | toy.cpp | 209 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/ |
D | toy.cpp | 256 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/ |
D | NVPTXGenericToNVVM.cpp | 348 if (Instruction::isBinaryOp(Opcode)) { in remapConstantExpr()
|
/external/llvm/docs/tutorial/ |
D | LangImpl6.rst | 140 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/ |
D | AMDILPeepholeOptimizer.cpp | 448 if (!inst->isBinaryOp()) { in optimizeBitInsert() 688 if (!inst->isBinaryOp()) { in optimizeBitExtract()
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | AMDILPeepholeOptimizer.cpp | 448 if (!inst->isBinaryOp()) { in optimizeBitInsert() 688 if (!inst->isBinaryOp()) { in optimizeBitExtract()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopRerollPass.cpp | 412 if (!C->isBinaryOp()) in add()
|
/external/llvm/lib/Analysis/ |
D | ConstantFolding.cpp | 1014 if (Instruction::isBinaryOp(Opcode)) { in ConstantFoldInstOperands()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | BBVectorize.cpp | 893 } else if (!(I->isBinaryOp() || isa<ShuffleVectorInst>(I) || in isInstVectorizable()
|