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

  /external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
insert_iter_iter.pass.cpp 54 typedef input_iterator<CI> BCI;
57 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
72 typedef forward_iterator<CI> BCI;
75 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
90 typedef bidirectional_iterator<CI> BCI;
93 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 481 bool Scalarizer::visitBitCastInst(BitCastInst &BCI) {
482 VectorType *DstVT = dyn_cast<VectorType>(BCI.getDestTy());
483 VectorType *SrcVT = dyn_cast<VectorType>(BCI.getSrcTy());
489 IRBuilder<> Builder(BCI.getParent(), &BCI);
490 Scatterer Op0 = scatter(&BCI, BCI.getOperand(0));
497 BCI.getName() + ".i" + Twine(I));
513 Scatterer Mid = scatter(&BCI, V);
526 BCI.getName() + ".i" + Twine(ResI
    [all...]
ScalarReplAggregates.cpp 502 if (BitCastInst *BCI = dyn_cast<BitCastInst>(UI)) {
503 if (!onlyUsedByLifetimeMarkers(BCI))
505 if (!CanConvertToScalar(BCI, Offset, NonConstantIdx))
    [all...]
SROA.cpp     [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.modifiers/
insert_iter_iter.pass.cpp 51 typedef bidirectional_iterator<CI> BCI;
53 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
  /external/llvm/lib/IR/
IRBuilder.cpp 50 BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
51 BB->getInstList().insert(InsertPt, BCI);
52 SetInstDebugLocation(BCI);
53 return BCI;
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 653 if (BitCastInst *BCI = dyn_cast<BitCastInst>(V)) {
656 V = BCI->getOperand(0);
657 NewBC = BCI->clone();
    [all...]
PromoteMemoryToRegister.cpp 84 } else if (const BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
85 if (BCI->getType() != Type::getInt8PtrTy(U->getContext(), AS))
87 if (!onlyUsedByLifetimeMarkers(BCI))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 218 if (BitCastInst *BCI = dyn_cast<BitCastInst>(EI.getOperand(0))) {
219 if (VectorType *VT = dyn_cast<VectorType>(BCI->getOperand(0)->getType()))
221 if (Value *Elt = FindScalarElement(BCI->getOperand(0), IndexVal))
    [all...]
InstructionCombining.cpp     [all...]
InstCombineCalls.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 250 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(*UI++)) {
251 MallocType = cast<PointerType>(BCI->getDestTy());
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 212 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
213 Address = BCI->getOperand(0);
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]

Completed in 1282 milliseconds