/external/llvm/lib/Transforms/Utils/ |
IntegerDivision.cpp | 45 Value *DividendSign = Builder.CreateAShr(Dividend, ThirtyOne); 46 Value *DivisorSign = Builder.CreateAShr(Divisor, ThirtyOne); 105 Value *Tmp = Builder.CreateAShr(Dividend, ThirtyOne); 106 Value *Tmp1 = Builder.CreateAShr(Divisor, ThirtyOne); 273 Value *Tmp10 = Builder.CreateAShr(Tmp9, 31);
|
/external/llvm/include/llvm/Support/ |
NoFolder.h | 131 Instruction *CreateAShr(Constant *LHS, Constant *RHS, 134 return BinaryOperator::CreateAShr(LHS, RHS);
|
ConstantFolder.h | 83 Constant *CreateAShr(Constant *LHS, Constant *RHS,
|
TargetFolder.h | 96 Constant *CreateAShr(Constant *LHS, Constant *RHS, bool isExact = false)const{
|
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineCasts.cpp | [all...] |
InstCombineAddSub.cpp | 964 return BinaryOperator::CreateAShr(NewShl, ShAmt); [all...] |
InstCombineSelect.cpp | 540 Value *AShr = Builder->CreateAShr(CmpLHS, Ty->getBitWidth()-1); [all...] |
InstCombineSimplifyDemanded.cpp | [all...] |
InstCombineAndOrXor.cpp | [all...] |
/external/llvm/include/llvm/IR/ |
IRBuilder.h | 729 Value *CreateAShr(Value *LHS, Value *RHS, const Twine &Name = "", 733 return Insert(Folder.CreateAShr(LC, RC, isExact), Name); 735 return Insert(BinaryOperator::CreateAShr(LHS, RHS), Name); 738 Value *CreateAShr(Value *LHS, const APInt &RHS, const Twine &Name = "", 740 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact); 742 Value *CreateAShr(Value *LHS, uint64_t RHS, const Twine &Name = "", 744 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact); [all...] |
/external/clang/lib/CodeGen/ |
ItaniumCXXABI.cpp | 294 Adj = Builder.CreateAShr(Adj, ptrdiff_1, "memptr.adj.shifted"); [all...] |
CGExpr.cpp | [all...] |
CGBuiltin.cpp | [all...] |
CGExprScalar.cpp | [all...] |
/art/compiler/dex/portable/ |
mir_to_gbc.cc | 384 case kOpAsr: res = irb_->CreateAShr(src1, src2); break; [all...] |
/art/compiler/llvm/ |
gbc_expander.cc | [all...] |
/external/llvm/lib/IR/ |
Core.cpp | [all...] |
/external/llvm/bindings/ocaml/llvm/ |
llvm.mli | [all...] |