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

1 2 3

  /external/clang/lib/CodeGen/
CGBuiltin.cpp 98 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
135 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
225 ArgValue = Builder.CreateBitCast(ArgValue, DestType,
238 DstPtr = Builder.CreateBitCast(DstPtr, Type);
239 SrcPtr = Builder.CreateBitCast(SrcPtr, Type);
    [all...]
CGStmtOpenMP.cpp 43 Builder.CreateBitCast(OutlinedFn,
CGObjC.cpp 86 return Builder.CreateBitCast(result.getScalarVal(),
201 return Builder.CreateBitCast(result.getScalarVal(),
243 return RValue::get(CGF.Builder.CreateBitCast(Result.getScalarVal(),
424 newSelf = Builder.CreateBitCast(newSelf, selfTy);
529 llvm::Value *dest = CGF.Builder.CreateBitCast(CGF.ReturnValue, CGF.VoidPtrTy);
532 src = CGF.Builder.CreateBitCast(src, CGF.VoidPtrTy);
799 ivarAddr = CGF.Builder.CreateBitCast(ivarAddr, CGF.Int8PtrTy);
    [all...]
CGObjCRuntime.cpp 95 llvm::Value *V = CGF.Builder.CreateBitCast(BaseValue, CGF.Int8PtrTy);
99 V = CGF.Builder.CreateBitCast(V, llvm::PointerType::getUnqual(LTy));
139 V = CGF.Builder.CreateBitCast(V,
255 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
328 lock = CGF.Builder.CreateBitCast(lock, CGF.VoidPtrTy);
CGBlocks.cpp 796 src = Builder.CreateBitCast(src, VoidPtrTy);
    [all...]
CGCall.cpp 705 return CGF.Builder.CreateBitCast(Val, Ty, "coerce.val");
785 CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty));
796 llvm::Value *Casted = CGF.Builder.CreateBitCast(Tmp, I8PtrTy);
797 llvm::Value *SrcCasted = CGF.Builder.CreateBitCast(SrcPtr, I8PtrTy);
    [all...]
CGObjCMac.cpp     [all...]
MicrosoftCXXABI.cpp 634 Value = CGF.Builder.CreateBitCast(Value, CGF.Int8PtrTy);
677 return CGF.Builder.CreateBitCast(
716 return CGF.Builder.CreateBitCast(Value, DestLTy);
    [all...]
TargetInfo.cpp     [all...]
CGClass.cpp 104 V = Builder.CreateBitCast(V, Int8PtrTy);
107 V = Builder.CreateBitCast(V, ConvertType(Base)->getPointerTo());
132 ptr = CGF.Builder.CreateBitCast(ptr, CGF.Int8PtrTy);
182 return Builder.CreateBitCast(Value, BasePtrTy);
213 Value = Builder.CreateBitCast(Value, BasePtrTy);
247 return Builder.CreateBitCast(Value, DerivedPtrTy);
265 Value = Builder.CreateBitCast(Value, Int8PtrTy);
270 Value = Builder.CreateBitCast(Value, DerivedPtrTy);
619 llvm::Value *BaseAddrPtr = Builder.CreateBitCast(LHS.getAddress(),
861 DestPtr = CGF.Builder.CreateBitCast(DestPtr, DBP)
    [all...]
CGAtomic.cpp 749 Ptr = Builder.CreateBitCast(Ptr, IPtrTy);
750 if (Val1) Val1 = Builder.CreateBitCast(Val1, IPtrTy);
751 if (Val2) Val2 = Builder.CreateBitCast(Val2, IPtrTy);
752 if (Dest && !E->isCmpXChg()) Dest = Builder.CreateBitCast(Dest, IPtrTy);
    [all...]
CGExprCXX.cpp 783 CurPtr = Builder.CreateBitCast(CurPtr, AllocPtrTy);
805 Builder.CreateStore(Builder.CreateBitCast(CurPtr, BeginPtr->getType()),
    [all...]
CGException.cpp 368 llvm::Value *typedAddr = CGF.Builder.CreateBitCast(addr, ty);
    [all...]
CodeGenFunction.cpp     [all...]
ItaniumCXXABI.cpp 404 llvm::Value *Ptr = Builder.CreateBitCast(This, Builder.getInt8PtrTy());
406 This = Builder.CreateBitCast(Ptr, This->getType(), "this.adjusted");
437 VTable = Builder.CreateBitCast(VTable, FTy->getPointerTo()->getPointerTo());
467 Base = Builder.CreateBitCast(Base, Builder.getInt8Ty()->getPointerTo(AS));
476 return Builder.CreateBitCast(Addr, PType);
    [all...]
  /external/llvm/lib/Target/R600/
SITypeRewriter.cpp 87 Value *BitCast = Builder.CreateBitCast(Ptr,
95 Value *BitCastLoad = Builder.CreateBitCast(Load, I.getType());
112 Args.push_back(Builder.CreateBitCast(Arg, v4i32));
AMDGPUPromoteAlloca.cpp 206 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
216 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
  /art/compiler/jni/portable/
jni_compiler.cc 159 ::llvm::Value* handle_scope_field_addr = irb_.CreateBitCast(irb_.CreateGEP(shadow_frame_, gep_index),
163 this_object_or_class_object = irb_.CreateBitCast(handle_scope_field_addr, irb_.getJObjectTy());
170 ::llvm::Value* handle_scope_field_addr = irb_.CreateBitCast(irb_.CreateGEP(shadow_frame_, gep_index),
179 irb_.CreateBitCast(handle_scope_field_addr, irb_.getJObjectTy()));
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerAggrCopies.cpp 52 srcAddr = builder.CreateBitCast(srcAddr, Type::getInt8PtrTy(Context, srcAS));
53 dstAddr = builder.CreateBitCast(dstAddr, Type::getInt8PtrTy(Context, dstAS));
88 builder.CreateBitCast(dstAddr, PointerType::get(val->getType(), dstAS));
NVPTXGenericToNVVM.cpp 175 CVTA = Builder.CreateBitCast(GV, DestTy, "cvta");
189 CVTA = Builder.CreateBitCast(CVTA, DestTy, "cvta");
  /external/llvm/lib/IR/
AutoUpgrade.cpp 280 Value *BC = Builder.CreateBitCast(Arg0,
346 Value *Cast = Builder.CreateBitCast(CI->getArgOperand(0),
458 Builder.CreateBitCast(Arg0,
462 Builder.CreateBitCast(Arg1,
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 664 Value *Fn = IRB.CreateBitCast(Fn0, MS.AnyFunctionPtrTy);
669 IRB.CreateBitCast(MS.MsandrModuleStart, MS.AnyFunctionPtrTy);
670 Value *End = IRB.CreateBitCast(MS.MsandrModuleEnd, MS.AnyFunctionPtrTy);
685 Value *NewFn = IRB.CreateBitCast(
692 Value *NewFn = IRB.CreateBitCast(
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 140 Value *Src = Builder->CreateBitCast(MI->getArgOperand(1), NewSrcPtrTy);
141 Value *Dest = Builder->CreateBitCast(MI->getArgOperand(0), NewDstPtrTy);
180 Dest = Builder->CreateBitCast(Dest, NewDstPtrTy);
525 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0),
536 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy);
547 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), OpPtrTy);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 710 SrcPtr = Builder.CreateBitCast(SrcPtr, AIPTy);
727 Value *DstPtr = Builder.CreateBitCast(MTI->getDest(), AIPTy);
778 return Builder.CreateBitCast(FromVal, ToType);
800 V = Builder.CreateBitCast(V, ToType)
    [all...]
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 227 Builder.CreateBitCast(PersonalityFn, Builder.getInt8PtrTy()),
436 Value *SetjmpArg = Builder.CreateBitCast(JBufPtr, Builder.getInt8PtrTy());
441 Value *FuncCtxArg = Builder.CreateBitCast(FuncCtx, Builder.getInt8PtrTy());

Completed in 508 milliseconds

1 2 3