Searched refs:EltPtr (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DSmallVector.h498 T *EltPtr = &Elt; local
499 if (I <= EltPtr && EltPtr < this->EndX)
500 ++EltPtr;
502 *I = ::std::move(*EltPtr);
527 const T *EltPtr = &Elt; local
528 if (I <= EltPtr && EltPtr < this->EndX)
529 ++EltPtr;
531 *I = *EltPtr;
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp2240 Value *EltPtr = NewElts[i]; local
2241 Type *EltTy = cast<PointerType>(EltPtr->getType())->getElementType();
2249 new StoreInst(Elt, EltPtr, MI);
2252 Value *Elt = new LoadInst(EltPtr, "tmp", MI);
2293 new StoreInst(StoreVal, EltPtr, MI);
2308 Builder.CreateMemSet(EltPtr, MI->getArgOperand(1), EltSize,
2312 Value *Dst = SROADest ? EltPtr : OtherElt; // Dest ptr
2313 Value *Src = SROADest ? OtherElt : EltPtr; // Src ptr
/external/llvm/lib/IR/
H A DConstants.cpp2519 const char *EltPtr = getElementPointer(Elt); local
2526 return *const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(EltPtr));
2528 return *const_cast<uint16_t *>(reinterpret_cast<const uint16_t *>(EltPtr));
2530 return *const_cast<uint32_t *>(reinterpret_cast<const uint32_t *>(EltPtr));
2532 return *const_cast<uint64_t *>(reinterpret_cast<const uint64_t *>(EltPtr));
2539 const char *EltPtr = getElementPointer(Elt); local
2545 const float *FloatPrt = reinterpret_cast<const float *>(EltPtr);
2549 const double *DoublePtr = reinterpret_cast<const double *>(EltPtr);
2560 const float *EltPtr = reinterpret_cast<const float *>(getElementPointer(Elt)); local
2561 return *const_cast<float *>(EltPtr);
2569 const double *EltPtr = local
[all...]
/external/clang/lib/CodeGen/
H A DCGCall.cpp816 llvm::Value *EltPtr = CGF.Builder.CreateConstGEP2_32(DestPtr, 0, i); local
818 llvm::StoreInst *SI = CGF.Builder.CreateStore(Elt, EltPtr,
1541 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(Ptr, 0, i); local
1542 Builder.CreateStore(AI++, EltPtr);
1553 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(TempV, 0, i); local
1554 Builder.CreateStore(AI++, EltPtr);
2829 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(SrcPtr, 0, i); local
2830 llvm::LoadInst *LI = Builder.CreateLoad(EltPtr);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp880 SDValue EltPtr = GetVectorElementPointer(StackPtr, EltVT, Idx); local
884 Store = DAG.getTruncStore(Store, dl, Elt, EltPtr, MachinePointerInfo(), EltVT,

Completed in 226 milliseconds