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

1 2

  /external/swiftshader/third_party/LLVM/lib/Analysis/
MemoryBuiltins.cpp 70 static bool isBitCastOfMallocCall(const BitCastInst *BCI) {
71 if (!BCI)
74 return isMallocCall(dyn_cast<CallInst>(BCI->getOperand(0)));
80 BitCastInst *BCI = dyn_cast<BitCastInst>(I);
81 return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
86 const BitCastInst *BCI = dyn_cast<BitCastInst>(I);
87 return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
145 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(*UI++))
    [all...]
InlineCost.cpp 212 } else if (BitCastInst *BCI = dyn_cast<BitCastInst>(I)) {
214 Reduction += CountCodeReductionForAlloca(BCI);
ValueTracking.cpp     [all...]
  /external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
insert_iter_iter.pass.cpp 55 typedef input_iterator<CI> BCI;
58 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()));
89 typedef bidirectional_iterator<CI> BCI;
92 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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/swiftshader/third_party/LLVM/lib/VMCore/
IRBuilder.cpp 49 BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
50 BB->getInstList().insert(InsertPt, BCI);
51 SetInstDebugLocation(BCI);
52 return BCI;
  /external/llvm/lib/Target/NVPTX/
NVPTXFavorNonGenericAddrSpaces.cpp 206 if (BitCastInst *BCI = dyn_cast<BitCastInst>(BC)) {
207 Value *NewCast = new BitCastInst(Src, TypeOfNewCast, "", BCI);
208 NewBC = new AddrSpaceCastInst(NewCast, BC->getType(), "", BCI);
  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 490 bool Scalarizer::visitBitCastInst(BitCastInst &BCI) {
491 VectorType *DstVT = dyn_cast<VectorType>(BCI.getDestTy());
492 VectorType *SrcVT = dyn_cast<VectorType>(BCI.getSrcTy());
498 IRBuilder<> Builder(&BCI);
499 Scatterer Op0 = scatter(&BCI, BCI.getOperand(0));
506 BCI.getName() + ".i" + Twine(I));
522 Scatterer Mid = scatter(&BCI, V);
535 BCI.getName() + ".i" + Twine(ResI)
538 BCI.getName() + ".i" + Twine(ResI))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
InstCombineVectorOps.cpp 177 if (BitCastInst *BCI = dyn_cast<BitCastInst>(EI.getOperand(0))) {
179 dyn_cast<VectorType>(BCI->getOperand(0)->getType()))
181 if (Value *Elt = FindScalarElement(BCI->getOperand(0), IndexVal))
  /prebuilts/ndk/r11/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/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 441 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
442 if (!onlyUsedByLifetimeMarkers(BCI))
444 if (!CanConvertToScalar(BCI, Offset))
    [all...]
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 367 if (auto *BCI = dyn_cast<BitCastInst>(Ptr)) {
368 if (Seen.insert(BCI->getOperand(0)).second) {
369 LoadOperandsQueue.push_back(BCI->getOperand(0));
378 if (auto *BCI = dyn_cast<BitCastInst>(U)) {
379 if (Seen.insert(BCI).second) {
380 LoadOperandsQueue.push_back(BCI);
    [all...]
MemoryBuiltins.cpp 260 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(*UI++)) {
261 MallocType = cast<PointerType>(BCI->getDestTy());
  /external/llvm/lib/CodeGen/
StackColoring.cpp 826 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Use.get()))
827 if (BCI->isUsedByMetadata())
828 ValueAsMetadata::handleRAUW(BCI, UndefValue::get(BCI->getType()));
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 817 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
818 if (BCI->getType() == NewGV->getType()) {
819 BCI->replaceAllUsesWith(NewGV);
820 BCI->eraseFromParent();
822 BCI->setOperand(0, NewGV);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 230 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
231 Address = BCI->getOperand(0);
  /external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
GlobalsModRef.cpp 262 } else if (BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
263 if (AnalyzeUsesOfPointer(BCI, Readers, Writers, OkayStoreDest))
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 123 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
124 Address = BCI->getOperand(0);
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 590 if (BitCastInst *BCI = dyn_cast<BitCastInst>(V)) {
593 V = BCI->getOperand(0);
594 NewBC = BCI->clone();
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/swiftshader/third_party/LLVM/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp 104 } else if (const BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
105 if (BCI->getType() != Type::getInt8PtrTy(U->getContext()))
107 if (!onlyUsedByLifetimeMarkers(BCI))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 183 if (BitCastInst *BCI = dyn_cast<BitCastInst>(EI.getOperand(0))) {
184 if (VectorType *VT = dyn_cast<VectorType>(BCI->getOperand(0)->getType()))
186 if (Value *Elt = findScalarElement(BCI->getOperand(0), IndexVal))
    [all...]

Completed in 1405 milliseconds

1 2