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

1 2 3

  /external/llvm/lib/Target/AMDGPU/
SITypeRewriter.cpp 50 void visitBitCast(BitCastInst &I);
139 void SITypeRewriter::visitBitCast(BitCastInst &I) {
145 if (BitCastInst *Op = dyn_cast<BitCastInst>(I.getOperand(0))) {
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 381 Args[0] = new BitCastInst(Args[0], I8XX, "", Store);
383 Args[1] = new BitCastInst(Args[1], I8X, "", Store);
578 Replacement = new BitCastInst(Replacement, UseTy, "",
594 Replacement = new BitCastInst(Replacement, UseTy, "",
602 if (const BitCastInst *BI = dyn_cast<BitCastInst>(Arg))
ObjCARCOpts.cpp 57 if (const BitCastInst *BC = dyn_cast<BitCastInst>(Arg))
654 if (isa<BitCastInst>(U))
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerAlloca.cpp 102 auto BI = dyn_cast<BitCastInst>(AllocaUse.getUser());
NVPTXFavorNonGenericAddrSpaces.cpp 203 if (BitCastInst *BCI = dyn_cast<BitCastInst>(BC)) {
204 Value *NewCast = new BitCastInst(Src, TypeOfNewCast, "", BCI);
  /frameworks/compile/libbcc/lib/Renderscript/
RSInvariant.cpp 122 if (auto BitCast = llvm::dyn_cast<llvm::BitCastInst>(Inst)) {
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 173 void RewriteBitCast(BitCastInst *BC, AllocaInst *AI, uint64_t Offset,
503 if (BitCastInst *BCI = dyn_cast<BitCastInst>(UI)) {
610 if (BitCastInst *CI = dyn_cast<BitCastInst>(User)) {
    [all...]
Reg2Mem.cpp 85 CastInst *AllocaInsertionPoint = new BitCastInst(
LoadCombine.cpp 93 while (isa<BitCastInst>(POP.Pointer) || isa<GetElementPtrInst>(POP.Pointer)) {
104 } else if (auto *BC = dyn_cast<BitCastInst>(POP.Pointer))
  /external/llvm/lib/Target/PowerPC/
PPCLoopPreIncPrep.cpp 125 while (BitCastInst *BC = dyn_cast<BitCastInst>(StrippedBasePtr))
365 NewBasePtr = new BitCastInst(PtrInc, BasePtr->getType(),
414 ReplNewPtr = new BitCastInst(RealNewPtr, Ptr->getType(),
  /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/
ObjCARCAnalysisUtils.h 133 return isa<BitCastInst>(I) ||
PtrUseVisitor.h 238 void visitBitCastInst(BitCastInst &BC) {
  /external/llvm/lib/CodeGen/
StackProtector.cpp 179 } else if (const BitCastInst *BI = dyn_cast<BitCastInst>(U)) {
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 75 if (isa<BitCastInst>(I) || isa<AddrSpaceCastInst>(I)) {
271 return new BitCastInst(EntryAI, AI.getType());
    [all...]
InstCombineVectorOps.cpp 168 if (BitCastInst *BCI = dyn_cast<BitCastInst>(EI.getOperand(0))) {
172 return new BitCastInst(Elt, EI.getType());
    [all...]
InstCombineCasts.cpp 81 Instruction *InstCombiner::PromoteCastOfAllocation(BitCastInst &CI,
    [all...]
  /external/llvm/unittests/IR/
ValueHandleTest.cpp 24 std::unique_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 328 CastInst *BTC0 = new BitCastInst(Gep0, V2xi8PTy);
329 CastInst *BTC1 = new BitCastInst(Gep1, V2xi8PTy);
330 CastInst *BTC2 = new BitCastInst(Gep2, V2xi8PTy);
331 CastInst *BTC3 = new BitCastInst(Gep3, V2xi8PTy);
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 168 void visitBitCastInst(BitCastInst &I);
  /external/llvm/lib/Transforms/Utils/
GlobalStatus.cpp 128 } else if (isa<BitCastInst>(I)) {
  /external/llvm/lib/IR/
Instructions.cpp 443 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
450 Result = new BitCastInst(MCall, AllocPtrType, Name);
512 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
516 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 640 } else if (const BitCastInst *CI = dyn_cast<BitCastInst>(U)) {
778 isa<BitCastInst>(GlobalUser) ||
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 193 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))

Completed in 3005 milliseconds

1 2 3