HomeSort by relevance Sort by last modified time
    Searched defs:BitCast (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Target/R600/
SITypeRewriter.cpp 87 Value *BitCast = Builder.CreateBitCast(Ptr,
89 LoadInst *Load = Builder.CreateLoad(BitCast);
AMDGPUPromoteAlloca.cpp 140 case Instruction::BitCast:
206 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
207 Value *VecValue = Builder.CreateLoad(BitCast);
216 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
217 Value *VecValue = Builder.CreateLoad(BitCast);
221 Builder.CreateStore(NewVecValue, BitCast);
225 case Instruction::BitCast:
  /external/llvm/unittests/IR/
InstructionsTest.cpp 264 EXPECT_FALSE(CastInst::castIsValid(Instruction::BitCast,
267 EXPECT_FALSE(CastInst::castIsValid(Instruction::BitCast,
414 // Source and destination pointers have same size -> bitcast.
419 CastInst::BitCast);
422 // the intermediate int is the maximum pointer size -> bitcast
427 CastInst::BitCast);
437 // Middle pointer big enough -> bitcast.
442 CastInst::BitCast);
477 // Pass since the bitcast address spaces are the same
479 CastInst::BitCast,
    [all...]
  /external/chromium_org/v8/src/
utils.h 830 // will completely optimize BitCast away.
832 // There is an additional use for BitCast.
835 // you can use BitCast to cast one pointer type to another. This confuses gcc
839 // We need different implementations of BitCast for pointer and non-pointer
862 INLINE(Dest BitCast(const Source& source));
865 inline Dest BitCast(const Source& source) {
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 189 | BitCast
    [all...]

Completed in 84 milliseconds