HomeSort by relevance Sort by last modified time
    Searched refs:BCI (Results 1 - 17 of 17) 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()));
71 typedef forward_iterator<CI> BCI;
74 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
88 typedef bidirectional_iterator<CI> BCI;
91 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
  /external/llvm/lib/Target/NVPTX/
NVPTXFavorNonGenericAddrSpaces.cpp 203 if (BitCastInst *BCI = dyn_cast<BitCastInst>(BC)) {
204 Value *NewCast = new BitCastInst(Src, TypeOfNewCast, "", BCI);
205 NewBC = new AddrSpaceCastInst(NewCast, BC->getType(), "", BCI);
  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 487 bool Scalarizer::visitBitCastInst(BitCastInst &BCI) {
488 VectorType *DstVT = dyn_cast<VectorType>(BCI.getDestTy());
489 VectorType *SrcVT = dyn_cast<VectorType>(BCI.getSrcTy());
495 IRBuilder<> Builder(&BCI);
496 Scatterer Op0 = scatter(&BCI, BCI.getOperand(0));
503 BCI.getName() + ".i" + Twine(I));
519 Scatterer Mid = scatter(&BCI, V);
532 BCI.getName() + ".i" + Twine(ResI)
535 BCI.getName() + ".i" + Twine(ResI))
    [all...]
ScalarReplAggregates.cpp 503 if (BitCastInst *BCI = dyn_cast<BitCastInst>(UI)) {
504 if (!onlyUsedByLifetimeMarkers(BCI))
506 if (!CanConvertToScalar(BCI, Offset, NonConstantIdx))
    [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 53 BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
54 BB->getInstList().insert(InsertPt, BCI);
55 SetInstDebugLocation(BCI);
56 return BCI;
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 418 if (auto *BCI = dyn_cast<BitCastInst>(Ptr)) {
419 if (!Seen.count(BCI->getOperand(0))) {
420 LoadOperandsQueue.push_back(BCI->getOperand(0));
421 Seen.insert(BCI->getOperand(0));
430 if (auto *BCI = dyn_cast<BitCastInst>(U)) {
431 if (!Seen.count(BCI)) {
432 LoadOperandsQueue.push_back(BCI);
433 Seen.insert(BCI);
    [all...]
MemoryBuiltins.cpp 253 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(*UI++)) {
254 MallocType = cast<PointerType>(BCI->getDestTy());
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 193 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
194 Address = BCI->getOperand(0);
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 661 if (BitCastInst *BCI = dyn_cast<BitCastInst>(V)) {
664 V = BCI->getOperand(0);
665 NewBC = BCI->clone();
    [all...]
PromoteMemoryToRegister.cpp 74 } else if (const BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
75 if (BCI->getType() != Type::getInt8PtrTy(U->getContext(), AS))
77 if (!onlyUsedByLifetimeMarkers(BCI))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 168 if (BitCastInst *BCI = dyn_cast<BitCastInst>(EI.getOperand(0))) {
169 if (VectorType *VT = dyn_cast<VectorType>(BCI->getOperand(0)->getType()))
171 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/CodeGen/
CodeGenPrepare.cpp     [all...]

Completed in 934 milliseconds