Searched refs:CreateAShr (Results 1 - 17 of 17) sorted by relevance

/external/llvm/include/llvm/Support/
H A DNoFolder.h131 Instruction *CreateAShr(Constant *LHS, Constant *RHS, function in class:llvm::NoFolder
134 return BinaryOperator::CreateAShr(LHS, RHS);
H A DConstantFolder.h83 Constant *CreateAShr(Constant *LHS, Constant *RHS, function in class:llvm::ConstantFolder
H A DTargetFolder.h96 Constant *CreateAShr(Constant *LHS, Constant *RHS, bool isExact = false)const{ function in class:llvm::TargetFolder
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp894 Value *In = Builder->CreateAShr(Op0, Sh, Op0->getName()+".lobit");
948 In = Builder->CreateAShr(In, ConstantInt::get(In->getType(),
967 Value *In = Builder->CreateAShr(Op0, VSh, Op0->getName()+".lobit");
1079 return BinaryOperator::CreateAShr(Builder->CreateShl(Res, ShAmt, "sext"),
1093 return BinaryOperator::CreateAShr(Res, ShAmt);
1123 return BinaryOperator::CreateAShr(A, ShAmtV);
H A DInstCombineAddSub.cpp137 return BinaryOperator::CreateAShr(NewShl, ShAmt);
534 return BinaryOperator::CreateAShr(X, CI);
H A DInstCombineSelect.cpp473 Value *AShr = Builder->CreateAShr(CmpLHS, Ty->getBitWidth()-1);
H A DInstCombineAndOrXor.cpp2092 return BinaryOperator::CreateAShr(Op0NotVal, Op0I->getOperand(1));
/external/mesa3d/src/pixelflinger2/
H A Dllvm_texture.cpp185 h0 = builder.CreateAShr(h0, constIntVec(builder, SHIFT, SHIFT, SHIFT, SHIFT));
189 h1 = builder.CreateAShr(h1, constIntVec(builder, SHIFT, SHIFT, SHIFT, SHIFT));
194 sample = builder.CreateAShr(sample, constIntVec(builder, SHIFT, SHIFT, SHIFT, SHIFT));
H A Dllvm_scanline.cpp290 // src = builder.CreateAShr(src, constIntVec(builder,8,8,8,8));
319 // src = builder.CreateAShr(src, constIntVec(builder,8,8,8,8));
414 res = builder.CreateAShr(res, constIntVec(builder,8,8,8,8));
/external/llvm/include/llvm/
H A DIRBuilder.h694 Value *CreateAShr(Value *LHS, Value *RHS, const Twine &Name = "", function in class:llvm::IRBuilder
698 return Insert(Folder.CreateAShr(LC, RC, isExact), Name);
700 return Insert(BinaryOperator::CreateAShr(LHS, RHS), Name);
703 Value *CreateAShr(Value *LHS, const APInt &RHS, const Twine &Name = "", function in class:llvm::IRBuilder
705 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
707 Value *CreateAShr(Value *LHS, uint64_t RHS, const Twine &Name = "", function in class:llvm::IRBuilder
709 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
/external/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp237 Adj = Builder.CreateAShr(Adj, ptrdiff_1, "memptr.adj.shifted");
H A DCGBuiltin.cpp2195 return Builder.CreateAShr(Ops[0], Ops[1], "vshr_n");
2212 Ops[1] = Builder.CreateAShr(Ops[1], Ops[2], "vsra_n");
H A DCGExpr.cpp1224 Res = Builder.CreateAShr(Builder.CreateShl(Res, ExtraBits),
1384 ReloadVal = Builder.CreateAShr(Builder.CreateShl(ReloadVal, ExtraBits),
H A DCGExprScalar.cpp2141 return Builder.CreateAShr(Ops.LHS, RHS, "shr");
/external/mesa3d/src/glsl/
H A Dir_to_llvm.cpp887 return bld.CreateAShr(ops[0], ops[1]);
/external/llvm/lib/VMCore/
H A DCore.cpp1962 return wrap(unwrap(B)->CreateAShr(unwrap(LHS), unwrap(RHS), Name));
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli1978 See the method [llvm::LLVMBuilder::CreateAShr]. *)

Completed in 1290 milliseconds