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

1 2 3

  /external/llvm/lib/Target/R600/
SITypeRewriter.cpp 49 void visitBitCast(BitCastInst &I);
146 void SITypeRewriter::visitBitCast(BitCastInst &I) {
152 if (BitCastInst *Op = dyn_cast<BitCastInst>(I.getOperand(0))) {
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 274 Args[0] = new BitCastInst(Args[0], I8XX, "", Store);
276 Args[1] = new BitCastInst(Args[1], I8X, "", Store);
471 Replacement = new BitCastInst(Replacement, UseTy, "",
487 Replacement = new BitCastInst(Replacement, UseTy, "",
495 if (const BitCastInst *BI = dyn_cast<BitCastInst>(Arg))
ObjCARC.h 270 return isa<BitCastInst>(I) ||
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 171 void RewriteBitCast(BitCastInst *BC, AllocaInst *AI, uint64_t Offset,
497 if (BitCastInst *BCI = dyn_cast<BitCastInst>(UI)) {
604 if (BitCastInst *CI = dyn_cast<BitCastInst>(User)) {
    [all...]
Reg2Mem.cpp 86 new BitCastInst(Constant::getNullValue(Type::getInt32Ty(F.getContext())),
LoadCombine.cpp 96 while (isa<BitCastInst>(POP.Pointer) || isa<GetElementPtrInst>(POP.Pointer)) {
106 } else if (auto *BC = dyn_cast<BitCastInst>(POP.Pointer))
  /external/lldb/source/Expression/
IRDynamicChecks.cpp 379 BitCastInst *bit_cast = new BitCastInst(dereferenced_ptr,
476 BitCastInst *bit_cast = new BitCastInst(target_object,
  /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/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 261 Op = new BitCastInst(Op, PointerType::get(dyn_cast<PointerType>(
289 NewPtr = new BitCastInst(OrigPtr, NewPtrType, "prop_cast", Load);
341 ParamPtr = new BitCastInst(ParamPtr,
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 261 Op = new BitCastInst(Op, PointerType::get(dyn_cast<PointerType>(
289 NewPtr = new BitCastInst(OrigPtr, NewPtrType, "prop_cast", Load);
341 ParamPtr = new BitCastInst(ParamPtr,
  /external/llvm/include/llvm/Analysis/
PtrUseVisitor.h 238 void visitBitCastInst(BitCastInst &BC) {
  /external/llvm/lib/Transforms/Utils/
GlobalStatus.cpp 121 } else if (isa<BitCastInst>(I)) {
  /external/llvm/unittests/IR/
MetadataTest.cpp 119 Instruction *I = new BitCastInst(C, Type::getInt32Ty(getGlobalContext()));
ValueHandleTest.cpp 24 std::auto_ptr<BitCastInst> BitcastV;
28 BitcastV(new BitCastInst(ConstantV, Type::getInt32Ty(getGlobalContext()))) {
ValueMapTest.cpp 26 std::unique_ptr<BitCastInst> BitcastV;
31 BitcastV(new BitCastInst(ConstantV, Type::getInt32Ty(getGlobalContext()))),
InstructionsTest.cpp 326 CastInst *BTC0 = new BitCastInst(Gep0, V2xi8PTy);
327 CastInst *BTC1 = new BitCastInst(Gep1, V2xi8PTy);
328 CastInst *BTC2 = new BitCastInst(Gep2, V2xi8PTy);
329 CastInst *BTC3 = new BitCastInst(Gep3, V2xi8PTy);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 72 if (isa<BitCastInst>(I) || isa<AddrSpaceCastInst>(I)) {
255 return new BitCastInst(EntryAI, AI.getType());
353 return new BitCastInst(NewLoad, LI.getType());
643 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) {
710 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy()));
774 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) {
    [all...]
InstCombineCasts.cpp 81 Instruction *InstCombiner::PromoteCastOfAllocation(BitCastInst &CI,
    [all...]
InstructionCombining.cpp 699 if (BitCastInst *BC = dyn_cast<BitCastInst>(&Op)) {
    [all...]
  /external/llvm/lib/CodeGen/
StackProtector.cpp 177 } else if (const BitCastInst *BI = dyn_cast<BitCastInst>(U)) {
StackColoring.cpp 488 BitCastInst *Cast = new BitCastInst(Inst, From->getType());
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 167 void visitBitCastInst(BitCastInst &I);
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 634 } else if (const BitCastInst *CI = dyn_cast<BitCastInst>(U)) {
772 isa<BitCastInst>(GlobalUser) ||
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 162 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))

Completed in 1374 milliseconds

1 2 3