HomeSort by: relevance | last modified time | path
    Searched defs:BinaryOperator (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
InstrTypes.h 187 // BinaryOperator Class
190 class BinaryOperator : public Instruction {
194 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
196 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
202 BinaryOperator *cloneImpl() const;
218 static BinaryOperator *Create(BinaryOps Op, Value *S1, Value *S2,
226 static BinaryOperator *Create(BinaryOps Op, Value *S1, Value *S2,
233 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
239 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
245 static BinaryOperator *Create##OPC(Value *V1, Value *V2,
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 47 if (auto *BO = dyn_cast<BinaryOperator>(E)) {
113 } else if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
160 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
1418 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) {
1997 StringRef BinaryOperator::getOpcodeStr(Opcode Op) {
2006 BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
2044 OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 659 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
662 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
2453 // BinaryOperator Class
2456 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
2460 OperandTraits<BinaryOperator>::op_begin(this),
2461 OperandTraits<BinaryOperator>::operands(this),
2469 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
2473 OperandTraits<BinaryOperator>::op_begin(this)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 3721 /// a C++ template, whether BinaryOperator or CXXOperatorCallExpr is
3724 /// operator resolves to a built-in operation, BinaryOperator will be
3729 class BinaryOperator : public Expr {
3753 BinaryOperator(const ASTContext &Ctx, Expr *lhs, Expr *rhs, Opcode opc,
3758 explicit BinaryOperator(EmptyShell Empty) : Expr(BinaryOperatorClass, Empty) {
3763 static BinaryOperator *CreateEmpty(const ASTContext &C, bool hasFPFeatures);
3765 static BinaryOperator *Create(const ASTContext &C, Expr *lhs, Expr *rhs,
3953 BinaryOperator(const ASTContext &Ctx, Expr *lhs, Expr *rhs, Opcode opc,
3958 /// Construct an empty BinaryOperator, SC is CompoundAssignOperator.
3959 BinaryOperator(StmtClass SC, EmptyShell Empty) : Expr(SC, Empty)
    [all...]

Completed in 37 milliseconds