HomeSort by relevance Sort by last modified time
    Searched refs:CreateAnd (Results 1 - 25 of 33) sorted by null

1 2

  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 192 Tmp3 = Builder.CreateAnd(Tmp3,
195 Tmp2 = Builder.CreateAnd(Tmp2,
223 Tmp7 = Builder.CreateAnd(Tmp7,
227 Tmp6 = Builder.CreateAnd(Tmp6,
231 Tmp5 = Builder.CreateAnd(Tmp5,
235 Tmp4 = Builder.CreateAnd(Tmp4,
239 Tmp3 = Builder.CreateAnd(Tmp3,
243 Tmp2 = Builder.CreateAnd(Tmp2,
282 Value *LHS = Builder.CreateAnd(PartValue, MaskCst, "cppop.and1");
286 Value *RHS = Builder.CreateAnd(VShift, MaskCst, "cppop.and2")
    [all...]
  /external/mesa3d/src/pixelflinger2/
llvm_texture.cpp 50 Value * b = builder.CreateAnd(texel, builder.getInt32(0x1f));
54 Value * g = builder.CreateAnd(texel, builder.getInt32(0x7e0));
57 g = builder.CreateAnd(g, builder.getInt32(0xff00));
59 Value * r = builder.CreateAnd(texel, builder.getInt32(0xF800));
62 r = builder.CreateAnd(r, builder.getInt32(0xff0000));
91 Value * alpha = builder.CreateAnd(texel, builder.getInt32(0xff00));
92 texel = builder.CreateAnd(texel, builder.getInt32(0xff));
119 // channels = builder.CreateAnd(channels, constIntVec(builder, 0xff, 0xff, 0xff, 0xff));
124 // channels = builder.CreateAnd(channels, constIntVec(builder, 0xff00, 0xff00, 0xff00, 0xff00));
128 channels = builder.CreateAnd(channels, constIntVec(builder, 0xff, 0xff, 0xff, 0xff))
    [all...]
llvm_scanline.cpp 219 src = builder.CreateAnd(src, constIntVec(builder, 0xf8, 0xfc, 0xf8, 0));
246 dst = builder.CreateAnd(dst, constIntVec(builder, 0xff, 0xff, 0xff, 0xff));
249 dst = builder.CreateAnd(dst, constIntVec(builder, 0xf800, 0x7e0, 0x1f, 0));
310 // channels = builder.CreateAnd(channels, constIntVec(builder,0xff, 0xff, 0xff, 0xff));
550 s = builder.CreateAnd(s, sMask);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 144 Value *And = Builder->CreateAnd(X, AndRHS);
155 return BinaryOperator::CreateAnd(Or, AndRHS);
164 Value *And = Builder->CreateAnd(X, Together);
196 Value *NewAnd = Builder->CreateAnd(X, AndRHS);
261 return BinaryOperator::CreateAnd(ShVal, AndRHS, TheAnd.getName());
649 Value* newAnd = Builder->CreateAnd(A, newOr);
660 Value* newAnd = Builder->CreateAnd(A, newOr);
666 Value* newAnd1 = Builder->CreateAnd(B, D);
667 Value* newAnd = Builder->CreateAnd(A, newAnd1);
703 Value *newAnd = Builder->CreateAnd(A, newOr1)
    [all...]
InstCombineShifts.cpp 47 Value *Rem = Builder->CreateAnd(A, ConstantInt::get(I.getType(), *B-1),
235 V = IC.Builder->CreateAnd(BO->getOperand(0),
275 V = IC.Builder->CreateAnd(I->getOperand(0),
394 Value *And = Builder->CreateAnd(NSh,
425 return BinaryOperator::CreateAnd(X, ConstantInt::get(I.getContext(),
440 Value *XM = Builder->CreateAnd(V1, ConstantExpr::getShl(CC, Op1),
458 return BinaryOperator::CreateAnd(X, ConstantInt::get(I.getContext(),
472 Value *XM = Builder->CreateAnd(V1, ConstantExpr::getShl(CC, Op1),
574 return BinaryOperator::CreateAnd(X,
610 return BinaryOperator::CreateAnd(Shift
    [all...]
InstCombineMulDivRem.cpp 220 return BinaryOperator::CreateAnd(Op0, Op1);
248 return BinaryOperator::CreateAnd(V, OtherOp);
638 return BinaryOperator::CreateAnd(Op0,
646 return BinaryOperator::CreateAnd(Op0, Add);
654 Value *TrueAnd = Builder->CreateAnd(Op0, *C1-1, Op1->getName()+".t");
655 Value *FalseAnd = Builder->CreateAnd(Op0, *C2-1, Op1->getName()+".f");
InstCombineCasts.cpp 458 Src = Builder->CreateAnd(Src, One);
492 return BinaryOperator::CreateAnd(NewTrunc,
605 Result = Builder->CreateAnd(Result,
784 return BinaryOperator::CreateAnd(Res, C);
806 Value *And = Builder->CreateAnd(A, AndConst, CSrc->getName()+".mask")
    [all...]
InstCombineSelect.cpp 479 Value *And = Builder->CreateAnd(AShr, C2->getValue()-C1->getValue());
673 return BinaryOperator::CreateAnd(NotCond, FalseVal);
677 return BinaryOperator::CreateAnd(CondVal, TrueVal);
689 return BinaryOperator::CreateAnd(CondVal, TrueVal);
694 return BinaryOperator::CreateAnd(TrueVal, FalseVal);
    [all...]
InstCombineCompares.cpp 412 return BinaryOperator::CreateAnd(C1, C2);
458 V = Builder->CreateAnd(ConstantInt::get(Ty, 1), V);
    [all...]
InstCombineAddSub.cpp 264 return BinaryOperator::CreateAnd(NewAdd, C2);
582 return BinaryOperator::CreateAnd(Op0,
InstCombineSimplifyDemanded.cpp 324 Instruction *And = BinaryOperator::CreateAnd(I->getOperand(0), AndC);
349 Instruction *NewAnd = BinaryOperator::CreateAnd(I->getOperand(0), AndC);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 59 Res = Builder.CreateAnd(Orig, Val);
62 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val));
  /frameworks/compile/libbcc/lib/AndroidBitcode/ARM/
ARMABCExpandVAArg.cpp 64 addr_as_int = builder.CreateAnd(addr_as_int,
  /frameworks/compile/libbcc/lib/AndroidBitcode/Mips/
MipsABCExpandVAArg.cpp 62 llvm::Value *and_v = builder.CreateAnd(add_v, mask);
  /external/llvm/include/llvm/Support/
NoFolder.h 137 Instruction *CreateAnd(Constant *LHS, Constant *RHS) const {
138 return BinaryOperator::CreateAnd(LHS, RHS);
ConstantFolder.h 87 Constant *CreateAnd(Constant *LHS, Constant *RHS) const {
TargetFolder.h 99 Constant *CreateAnd(Constant *LHS, Constant *RHS) const {
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 163 Value *AndV = MainBuilder.CreateAnd(OrV, BitMask);
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 252 IsVirtual = Builder.CreateAnd(RawAdj, ptrdiff_1);
254 IsVirtual = Builder.CreateAnd(FnAsInt, ptrdiff_1);
627 llvm::Value *OrAdjAnd1 = Builder.CreateAnd(OrAdj, One);
665 llvm::Value *VirtualBit = Builder.CreateAnd(Adj, One, "memptr.virtualbit");
    [all...]
CGExpr.cpp 593 Cond = Cond ? Builder.CreateAnd(Cond, LargeEnough) : LargeEnough;
597 Builder.CreateAnd(Builder.CreatePtrToInt(Address, IntPtrTy),
599 Cond = Builder.CreateAnd(Cond,
    [all...]
CGExprScalar.cpp 430 return Builder.CreateAnd(Ops.LHS, Ops.RHS, "and");
743 Mask = Builder.CreateAnd(Mask, MaskBits, "mask");
    [all...]
CGBuiltin.cpp 327 Value *Result = Builder.CreateAnd(Tmp, llvm::ConstantInt::get(ArgType, 1));
493 V = Builder.CreateAnd(Eq, IsLessThanInf, "and");
494 V = Builder.CreateAnd(V, IsNormal, "and");
507 V = Builder.CreateAnd(Eq, IsNotInf, "and");
    [all...]
  /external/llvm/include/llvm/
IRBuilder.h 712 Value *CreateAnd(Value *LHS, Value *RHS, const Twine &Name = "") {
717 return Insert(Folder.CreateAnd(LC, RC), Name);
719 return Insert(BinaryOperator::CreateAnd(LHS, RHS), Name);
721 Value *CreateAnd(Value *LHS, const APInt &RHS, const Twine &Name = "") {
722 return CreateAnd(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
724 Value *CreateAnd(Value *LHS, uint64_t RHS, const Twine &Name = "") {
725 return CreateAnd(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 353 static const MCBinaryExpr *CreateAnd(const MCExpr *LHS, const MCExpr *RHS,
  /external/mesa3d/src/glsl/
ir_to_llvm.cpp 641 return bld.CreateAnd(ops[0], ops[1]);
760 return bld.CreateAnd(ops[0], ops[1]);
834 return bld.CreateAnd(ops[0], ops[1], "bmin");
    [all...]

Completed in 1377 milliseconds

1 2