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

1 2 3

  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 300 Args[0] = new BitCastInst(Args[0], I8XX, "", Store);
302 Args[1] = new BitCastInst(Args[1], I8X, "", Store);
491 Replacement = new BitCastInst(Replacement, UseTy, "",
507 Replacement = new BitCastInst(Replacement, UseTy, "",
515 if (const BitCastInst *BI = dyn_cast<BitCastInst>(Arg))
ObjCARC.h 264 return isa<BitCastInst>(I) ||
  /external/llvm/unittests/IR/
InstructionsTest.cpp 175 CastInst *BTC0 = new BitCastInst(Gep0, V2xi8PTy);
176 CastInst *BTC1 = new BitCastInst(Gep1, V2xi8PTy);
177 CastInst *BTC2 = new BitCastInst(Gep2, V2xi8PTy);
178 CastInst *BTC3 = new BitCastInst(Gep3, V2xi8PTy);
MetadataTest.cpp 119 Instruction *I = new BitCastInst(C, Type::getInt32Ty(getGlobalContext()));
ValueMapTest.cpp 27 OwningPtr<BitCastInst> BitcastV;
32 BitcastV(new BitCastInst(ConstantV, Type::getInt32Ty(getGlobalContext()))),
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 170 void RewriteBitCast(BitCastInst *BC, AllocaInst *AI, uint64_t Offset,
495 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
602 if (BitCastInst *CI = dyn_cast<BitCastInst>(User)) {
    [all...]
Reg2Mem.cpp 86 new BitCastInst(Constant::getNullValue(Type::getInt32Ty(F.getContext())),
  /external/llvm/lib/CodeGen/
StackProtector.cpp 182 } else if (const BitCastInst *BI = dyn_cast<BitCastInst>(U)) {
  /external/llvm/lib/IR/
IRBuilder.cpp 49 BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
Instructions.cpp 430 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
437 Result = new BitCastInst(MCall, AllocPtrType, Name);
499 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
503 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 79 Instruction *InstCombiner::PromoteCastOfAllocation(BitCastInst &CI,
    [all...]
InstCombineLoadStoreAlloca.cpp 63 if (BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
242 return new BitCastInst(EntryAI, AI.getType());
330 return new BitCastInst(NewLoad, LI.getType());
608 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) {
675 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy()));
739 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) {
InstCombine.h 180 Instruction *visitBitCast(BitCastInst &CI);
371 Instruction *PromoteCastOfAllocation(BitCastInst &CI, AllocaInst &AI);
InstructionCombining.cpp 597 if (BitCastInst *BC = dyn_cast<BitCastInst>(&Op)) {
    [all...]
InstCombineVectorOps.cpp 146 if (BitCastInst *BCI = dyn_cast<BitCastInst>(EI.getOperand(0))) {
150 return new BitCastInst(Elt, EI.getType());
  /external/llvm/include/llvm/Analysis/
PtrUseVisitor.h 238 void visitBitCastInst(BitCastInst &BC) {
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 309 CastInst *NC = new BitCastInst(
489 JmpBufPtr = new BitCastInst(JmpBufPtr,
542 Idx[0] = new BitCastInst(Idx[0],
BasicBlockUtils.cpp 665 if (BitCastInst *BCI = dyn_cast<BitCastInst>(V)) {
  /external/llvm/unittests/Support/
ValueHandleTest.cpp 25 std::auto_ptr<BitCastInst> BitcastV;
29 BitcastV(new BitCastInst(ConstantV, Type::getInt32Ty(getGlobalContext()))) {
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 167 void visitBitCastInst(BitCastInst &I);
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 262 } else if (isa<BitCastInst>(I)) {
    [all...]
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 263 } else if (BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 125 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
  /external/llvm/include/llvm/
InstVisitor.h 193 RetTy visitBitCastInst(BitCastInst &I) { DELEGATE(CastInst);}
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]

Completed in 1244 milliseconds

1 2 3