HomeSort by relevance Sort by last modified time
    Searched refs:BCI (Results 1 - 17 of 17) sorted by null

  /external/llvm/lib/CodeGen/
MachineBlockPlacement.cpp     [all...]
  /external/llvm/lib/IR/
IRBuilder.cpp 49 BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
50 BB->getInstList().insert(InsertPt, BCI);
51 SetInstDebugLocation(BCI);
52 return BCI;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/deque/deque.modifiers/
insert_iter_iter.pass.cpp 49 typedef bidirectional_iterator<CI> BCI;
51 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
InstCombineVectorOps.cpp 146 if (BitCastInst *BCI = dyn_cast<BitCastInst>(EI.getOperand(0))) {
147 if (VectorType *VT = dyn_cast<VectorType>(BCI->getOperand(0)->getType()))
149 if (Value *Elt = FindScalarElement(BCI->getOperand(0), IndexVal))
InstCombineLoadStoreAlloca.cpp 63 if (BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
65 if (!isOnlyCopiedFromConstantGlobal(BCI, TheCopy, ToDelete, IsOffset))
InstCombineCalls.cpp 728 if (CallInst *BCI = dyn_cast<CallInst>(BI)) {
729 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(BCI)) {
    [all...]
InstCombineCompares.cpp 584 if (BitCastInst *BCI = dyn_cast<BitCastInst>(RHS))
585 RHS = BCI->getOperand(0);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 495 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
496 if (!onlyUsedByLifetimeMarkers(BCI))
498 if (!CanConvertToScalar(BCI, Offset, NonConstantIdx))
    [all...]
CodeGenPrepare.cpp 714 BitCastInst *BCI = 0;
717 BCI = dyn_cast<BitCastInst>(V);
718 if (BCI)
719 V = BCI->getOperand(0);
742 if (&*BI == BCI)
    [all...]
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 665 if (BitCastInst *BCI = dyn_cast<BitCastInst>(V)) {
668 V = BCI->getOperand(0);
669 NewBC = BCI->clone();
PromoteMemoryToRegister.cpp 106 } else if (const BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
107 if (BCI->getType() != Type::getInt8PtrTy(U->getContext()))
109 if (!onlyUsedByLifetimeMarkers(BCI))
    [all...]
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 263 } else if (BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
264 if (AnalyzeUsesOfPointer(BCI, Readers, Writers, OkayStoreDest))
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 125 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
126 Address = BCI->getOperand(0);
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 255 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(*UI++)) {
256 MallocType = cast<PointerType>(BCI->getDestTy());

Completed in 1148 milliseconds