Searched refs:BCI (Results 1 - 17 of 17) sorted by relevance

/external/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp819 for (BlockChain::iterator BCI = Chain.begin(), BCE = Chain.end();
820 BCI != BCE; ++BCI) {
821 assert(BlockToChain[*BCI] == &Chain);
822 for (MachineBasicBlock::pred_iterator PI = (*BCI)->pred_begin(),
823 PE = (*BCI)->pred_end();
847 for (BlockChain::iterator BCI = LoopChain.begin(), BCE = LoopChain.end();
848 BCI != BCE; ++BCI) {
849 dbgs() << " ... " << getBlockName(*BCI) << "\
[all...]
H A DCodeGenPrepare.cpp927 BitCastInst *BCI = nullptr; local
930 BCI = dyn_cast<BitCastInst>(V);
931 if (BCI)
932 V = BCI->getOperand(0);
955 if (&*BI == BCI)
/external/llvm/lib/IR/
H A DIRBuilder.cpp49 BitCastInst *BCI = new BitCastInst(Ptr, PT, ""); local
50 BB->getInstList().insert(InsertPt, BCI);
51 SetInstDebugLocation(BCI);
52 return BCI;
/external/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp476 bool Scalarizer::visitBitCastInst(BitCastInst &BCI) { argument
477 VectorType *DstVT = dyn_cast<VectorType>(BCI.getDestTy());
478 VectorType *SrcVT = dyn_cast<VectorType>(BCI.getSrcTy());
484 IRBuilder<> Builder(BCI.getParent(), &BCI);
485 Scatterer Op0 = scatter(&BCI, BCI.getOperand(0));
492 BCI.getName() + ".i" + Twine(I));
508 Scatterer Mid = scatter(&BCI, V);
521 BCI
[all...]
H A DScalarReplAggregates.cpp497 if (BitCastInst *BCI = dyn_cast<BitCastInst>(UI)) {
498 if (!onlyUsedByLifetimeMarkers(BCI))
500 if (!CanConvertToScalar(BCI, Offset, NonConstantIdx))
1297 if (BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
1298 if (onlyUsedByLifetimeMarkers(BCI)) {
1299 InstsToRewrite.insert(BCI);
1315 if (BitCastInst *BCI = dyn_cast<BitCastInst>(InstsToRewrite[i])) {
1317 for (BitCastInst::user_iterator I = BCI->user_begin(), E = BCI->user_end();
1320 BCI
1967 BitCastInst *BCI = new BitCastInst(NewAI, AI->getType(), "", NewAI); local
[all...]
H A DSROA.cpp853 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Ptr))
854 Ptr = BCI->getOperand(0);
/external/libcxx/test/containers/sequences/deque/deque.modifiers/
H A Dinsert_iter_iter.pass.cpp51 typedef bidirectional_iterator<CI> BCI; typedef
53 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp162 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
163 Address = BCI->getOperand(0);
H A DSelectionDAGBuilder.cpp4761 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
4762 Address = BCI->getOperand(0);
4863 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(V))
4864 V = BCI->getOperand(0);
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1678 if (BitCastInst *BCI = dyn_cast<BitCastInst>(PtrOp)) {
1679 Value *Operand = BCI->getOperand(0);
1694 if (Instruction *I = visitBitCast(*BCI)) {
1695 if (I != BCI) {
1696 I->takeName(BCI);
1697 BCI->getParent()->getInstList().insert(BCI, I);
1698 ReplaceInstUsesWith(*BCI, I);
H A DInstCombineVectorOps.cpp217 if (BitCastInst *BCI = dyn_cast<BitCastInst>(EI.getOperand(0))) {
218 if (VectorType *VT = dyn_cast<VectorType>(BCI->getOperand(0)->getType()))
220 if (Value *Elt = FindScalarElement(BCI->getOperand(0), IndexVal))
H A DInstCombineCasts.cpp1461 BitCastInst *BCI = dyn_cast<BitCastInst>(GEP->getOperand(0)); local
1463 BCI &&
1466 Value *OrigBase = BCI->getOperand(0);
H A DInstCombineCalls.cpp975 if (CallInst *BCI = dyn_cast<CallInst>(BI)) {
976 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(BCI)) {
/external/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp628 if (BitCastInst *BCI = dyn_cast<BitCastInst>(V)) {
631 V = BCI->getOperand(0);
632 NewBC = BCI->clone();
H A DPromoteMemoryToRegister.cpp83 } else if (const BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
84 if (BCI->getType() != Type::getInt8PtrTy(U->getContext(), AS))
86 if (!onlyUsedByLifetimeMarkers(BCI))
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp855 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
856 if (BCI->getType() == NewGV->getType()) {
857 BCI->replaceAllUsesWith(NewGV);
858 BCI->eraseFromParent();
860 BCI->setOperand(0, NewGV);
990 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
991 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
1548 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1549 CI = cast<CallInst>(BCI->getOperand(0));
/external/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp267 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(*UI++)) {
268 MallocType = cast<PointerType>(BCI->getDestTy());

Completed in 676 milliseconds