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

1 2

  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 180 V = Builder.CreateOr(Tmp1, Tmp2, "bswap.i16");
198 Tmp4 = Builder.CreateOr(Tmp4, Tmp3, "bswap.or1");
199 Tmp2 = Builder.CreateOr(Tmp2, Tmp1, "bswap.or2");
200 V = Builder.CreateOr(Tmp4, Tmp2, "bswap.i32");
247 Tmp8 = Builder.CreateOr(Tmp8, Tmp7, "bswap.or1");
248 Tmp6 = Builder.CreateOr(Tmp6, Tmp5, "bswap.or2");
249 Tmp4 = Builder.CreateOr(Tmp4, Tmp3, "bswap.or3");
250 Tmp2 = Builder.CreateOr(Tmp2, Tmp1, "bswap.or4");
251 Tmp8 = Builder.CreateOr(Tmp8, Tmp6, "bswap.or5");
252 Tmp4 = Builder.CreateOr(Tmp4, Tmp2, "bswap.or6")
    [all...]
  /external/mesa3d/src/pixelflinger2/
llvm_texture.cpp 42 texel = builder.CreateOr(texel, builder.getInt32(0xff000000));
52 b = builder.CreateOr(b, builder.CreateLShr(b, builder.getInt32(5)));
56 g = builder.CreateOr(g, builder.CreateLShr(g, builder.getInt32(6)));
61 r = builder.CreateOr(r, builder.CreateLShr(r, builder.getInt32(5)));
64 texel = builder.CreateOr(r, builder.CreateOr(g, b));
65 texel = builder.CreateOr(texel, builder.getInt32(0xff000000), name("texel"));
81 texel = builder.CreateOr(texel, builder.CreateShl(texel, 8));
82 texel = builder.CreateOr(texel, builder.CreateShl(texel, 8));
83 texel = builder.CreateOr(texel, builder.getInt32(0xff000000))
    [all...]
llvm_scanline.cpp 214 comps[0] = builder.CreateOr(comps[0], comps[1]);
215 comps[0] = builder.CreateOr(comps[0], comps[2]);
216 comps[0] = builder.CreateOr(comps[0], comps[3]);
228 comps[0] = builder.CreateOr(comps[0], comps[1]);
229 comps[0] = builder.CreateOr(comps[0], comps[2]);
252 dst = builder.CreateOr(dst, constIntVec(builder, 0, 0, 0, 0xff));
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 153 Value *Or = Builder->CreateOr(X, Together);
166 return BinaryOperator::CreateOr(And, OpRHS);
648 Value* newOr = Builder->CreateOr(B, D);
659 Value* newOr = Builder->CreateOr(B, D);
701 Value *newOr1 = Builder->CreateOr(B, D);
742 Value *NewOr = Builder->CreateOr(Val, Val2);
748 Value *NewOr = Builder->CreateOr(Val, Val2);
    [all...]
InstCombineSelect.cpp 471 return ReplaceInstUsesWith(SI, Builder->CreateOr(AShr, C1));
663 return BinaryOperator::CreateOr(CondVal, FalseVal);
675 return BinaryOperator::CreateOr(NotCond, TrueVal);
681 return BinaryOperator::CreateOr(CondVal, FalseVal);
690 return BinaryOperator::CreateOr(TrueVal, FalseVal);
    [all...]
InstCombineSimplifyDemanded.cpp 310 BinaryOperator::CreateOr(I->getOperand(0), I->getOperand(1),
509 BinaryOperator::CreateOr(I->getOperand(0), I->getOperand(1),
    [all...]
InstCombineAddSub.cpp 214 return BinaryOperator::CreateOr(LHS, RHS);
InstCombineCompares.cpp 391 return BinaryOperator::CreateOr(C1, C2);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 65 Res = Builder.CreateOr(Orig, Val);
GVN.cpp     [all...]
ScalarReplAggregates.cpp     [all...]
  /external/llvm/include/llvm/Support/
NoFolder.h 140 Instruction *CreateOr(Constant *LHS, Constant *RHS) const {
141 return BinaryOperator::CreateOr(LHS, RHS);
ConstantFolder.h 90 Constant *CreateOr(Constant *LHS, Constant *RHS) const {
TargetFolder.h 102 Constant *CreateOr(Constant *LHS, Constant *RHS) const {
IRBuilder.h 713 Value *CreateOr(Value *LHS, Value *RHS, const Twine &Name = "") {
718 return Insert(Folder.CreateOr(LC, RC), Name);
720 return Insert(BinaryOperator::CreateOr(LHS, RHS), Name);
722 Value *CreateOr(Value *LHS, const APInt &RHS, const Twine &Name = "") {
723 return CreateOr(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
725 Value *CreateOr(Value *LHS, uint64_t RHS, const Twine &Name = "") {
726 return CreateOr(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
    [all...]
  /external/llvm/examples/BrainF/
BrainF.cpp 257 CreateOr(test_0, test_1, testreg);
  /external/llvm/include/llvm/MC/
MCExpr.h 396 static const MCBinaryExpr *CreateOr(const MCExpr *LHS, const MCExpr *RHS,
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 679 hasOverflow = CGF.Builder.CreateOr(hasOverflow,
705 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
744 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
    [all...]
ItaniumCXXABI.cpp 626 llvm::Value *OrAdj = Builder.CreateOr(LAdj, RAdj, "or.adj");
668 Result = Builder.CreateOr(Result, IsVirtual);
    [all...]
CGExprScalar.cpp 438 return Builder.CreateOr(Ops.LHS, Ops.RHS, "or");
672 return Builder.CreateOr(Src.first, Src.second, "tobool");
    [all...]
CGExpr.cpp     [all...]
  /external/mesa3d/src/glsl/
ir_to_llvm.cpp 757 return bld.CreateOr(ops[0], ops[1]);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 243 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy,
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]

Completed in 391 milliseconds

1 2