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

  /external/llvm/lib/CodeGen/
MachineBlockPlacement.cpp     [all...]
CodeGenPrepare.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;
  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 476 bool Scalarizer::visitBitCastInst(BitCastInst &BCI) {
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.getName() + ".i" + Twine(ResI
    [all...]
ScalarReplAggregates.cpp 497 if (BitCastInst *BCI = dyn_cast<BitCastInst>(UI)) {
498 if (!onlyUsedByLifetimeMarkers(BCI))
500 if (!CanConvertToScalar(BCI, Offset, NonConstantIdx))
    [all...]
SROA.cpp     [all...]
  /external/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()));
  /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/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 162 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
163 Address = BCI->getOperand(0);
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
InstCombineVectorOps.cpp 217 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))
    [all...]
InstCombineCasts.cpp     [all...]
InstCombineCalls.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 628 if (BitCastInst *BCI = dyn_cast<BitCastInst>(V)) {
631 V = BCI->getOperand(0);
632 NewBC = BCI->clone();
    [all...]
PromoteMemoryToRegister.cpp 83 } else if (const BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
84 if (BCI->getType() != Type::getInt8PtrTy(U->getContext(), AS))
86 if (!onlyUsedByLifetimeMarkers(BCI))
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 267 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(*UI++)) {
268 MallocType = cast<PointerType>(BCI->getDestTy());

Completed in 255 milliseconds