Searched refs:DestPtr (Results 1 - 20 of 20) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DScratchBuffer.h36 SourceLocation getToken(const char *Buf, unsigned Len, const char *&DestPtr);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DScratchBuffer.cpp34 const char *&DestPtr) {
51 DestPtr = CurBuffer+BytesUsed;
33 getToken(const char *Buf, unsigned Len, const char *&DestPtr) argument
H A DPreprocessor.cpp486 const char *DestPtr; local
487 SourceLocation Loc = ScratchBuf->getToken(Str.data(), Str.size(), DestPtr);
496 Tok.setRawIdentifierData(DestPtr);
498 Tok.setLiteralData(DestPtr);
511 const char *DestPtr; local
513 ScratchBuf->getToken(Buffer.data() + LocInfo.second, Length, DestPtr);
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprAgg.cpp72 /// then loads the result into DestPtr.
80 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
90 void EmitArrayInit(Address DestPtr, llvm::ArrayType *AType,
224 /// then loads the result into DestPtr.
314 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
321 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
473 void AggExprEmitter::EmitArrayInit(Address DestPtr, llvm::ArrayType *AType, argument
483 // DestPtr is an array*. Construct an elementType* by drilling
488 Builder.CreateInBoundsGEP(DestPtr.getPointer(), indices, "arrayinit.begin");
492 DestPtr
2051 Address DestPtr = Dest.getAddress(*this); local
[all...]
H A DCodeGenFunction.cpp1876 CodeGenFunction::EmitNullInitialization(Address DestPtr, QualType Ty) { argument
1886 if (DestPtr.getElementType() != Int8Ty)
1887 DestPtr = Builder.CreateElementBitCast(DestPtr, Int8Ty);
1930 CharUnits NullAlign = DestPtr.getAlignment();
1935 if (vla) return emitNonZeroVLAInit(*this, Ty, DestPtr, SrcPtr, SizeVal);
1938 Builder.CreateMemCpy(DestPtr, SrcPtr, SizeVal, false);
1945 Builder.CreateMemSet(DestPtr, Builder.getInt8(0), SizeVal, false);
H A DCGObjCRuntime.h312 Address DestPtr,
H A DCGExprCXX.cpp497 Address DestPtr,
502 DestPtr = CGF.Builder.CreateElementBitCast(DestPtr, CGF.Int8Ty);
552 DestPtr.getAlignment());
563 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset),
577 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset),
496 EmitNullBaseClassInitialization(CodeGenFunction &CGF, Address DestPtr, const CXXRecordDecl *Base) argument
H A DCGStmt.cpp2340 llvm::Value *DestPtr = Dest.getPointer(*this); local
2350 DestPtr = Builder.CreateBitCast(DestPtr, DestAddrTy);
2353 Args.push_back(DestPtr);
H A DCGCall.cpp5431 Address DestPtr = ReturnValue.getValue();
5434 if (!DestPtr.isValid()) {
5435 DestPtr = CreateMemTemp(RetTy, "agg.tmp");
5438 EmitAggregateStore(CI, DestPtr, DestIsVolatile);
5439 return RValue::getAggregate(DestPtr);
5453 Address DestPtr = ReturnValue.getValue();
5456 if (!DestPtr.isValid()) {
5457 DestPtr = CreateMemTemp(RetTy, "coerce");
5462 Address StorePtr = emitAddressAtOffset(*this, DestPtr, RetAI);
5465 return convertTempToRValue(DestPtr, RetT
[all...]
H A DCGClass.cpp1001 void emitMemcpyIR(Address DestPtr, Address SrcPtr, CharUnits Size) { argument
1002 llvm::PointerType *DPT = DestPtr.getType();
1005 DestPtr = CGF.Builder.CreateBitCast(DestPtr, DBP);
1012 CGF.Builder.CreateMemCpy(DestPtr, SrcPtr, Size.getQuantity());
H A DCGObjCGNU.cpp646 void EmitGCMemmoveCollectable(CodeGenFunction &CGF, Address DestPtr,
4027 Address DestPtr,
4031 DestPtr = EnforceType(B, DestPtr, PtrTy);
4034 B.CreateCall(MemMoveFn, {DestPtr.getPointer(), SrcPtr.getPointer(), Size});
4026 EmitGCMemmoveCollectable(CodeGenFunction &CGF, Address DestPtr, Address SrcPtr, llvm::Value *Size) argument
H A DCGObjCMac.cpp5073 Address DestPtr,
5077 DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy);
5078 llvm::Value *args[] = { DestPtr.getPointer(), SrcPtr.getPointer(), size };
7728 Address DestPtr,
7732 DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy);
7733 llvm::Value *args[] = { DestPtr.getPointer(), SrcPtr.getPointer(), Size };
5072 EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF, Address DestPtr, Address SrcPtr, llvm::Value *size) argument
7726 EmitGCMemmoveCollectable( CodeGen::CodeGenFunction &CGF, Address DestPtr, Address SrcPtr, llvm::Value *Size) argument
H A DCGBuiltin.cpp148 llvm::Value *DestPtr = CGF.EmitScalarExpr(E->getArg(0)); local
149 unsigned AddrSpace = DestPtr->getType()->getPointerAddressSpace();
157 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
209 llvm::Value *DestPtr = CGF.EmitScalarExpr(E->getArg(0)); local
210 unsigned AddrSpace = DestPtr->getType()->getPointerAddressSpace();
221 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
251 llvm::Value *DestPtr = CGF.EmitScalarExpr(E->getArg(0)); local
252 unsigned AddrSpace = DestPtr->getType()->getPointerAddressSpace();
259 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
5190 Address DestPtr
[all...]
H A DCGExpr.cpp1202 Address DestPtr = CreateMemTemp(Ty, "undef.agg.tmp"); local
1203 return RValue::getAggregate(DestPtr);
H A DCodeGenFunction.h2693 void EmitNullInitialization(Address DestPtr, QualType Ty);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp219 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
226 bool processLoopStoreOfLoopLoad(Value *DestPtr, Value *SourcePtr,
1030 Value *DestPtr, unsigned StoreSize, MaybeAlign StoreAlignment,
1046 unsigned DestAS = DestPtr->getType()->getPointerAddressSpace();
1053 Type *IntIdxTy = DL->getIndexType(DestPtr->getType());
1189 Value *DestPtr, Value *SourcePtr, unsigned StoreSize, MaybeAlign StoreAlign,
1204 unsigned StrAS = DestPtr->getType()->getPointerAddressSpace();
1029 processLoopStridedStore( Value *DestPtr, unsigned StoreSize, MaybeAlign StoreAlignment, Value *StoredVal, Instruction *TheStore, SmallPtrSetImpl<Instruction *> &Stores, const SCEVAddRecExpr *Ev, const SCEV *BECount, bool NegStride, bool IsLoopMemset) argument
1188 processLoopStoreOfLoopLoad( Value *DestPtr, Value *SourcePtr, unsigned StoreSize, MaybeAlign StoreAlign, MaybeAlign LoadAlign, Instruction *TheStore, Instruction *TheLoad, const SCEVAddRecExpr *StoreEv, const SCEVAddRecExpr *LoadEv, const SCEV *BECount) argument
H A DSROA.cpp2998 Value *DestPtr, *SrcPtr;
3002 DestPtr = OurPtr;
3007 DestPtr = OtherPtr;
3012 CallInst *New = IRB.CreateMemCpy(DestPtr, DestAlign, SrcPtr, SrcAlign,
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCast.cpp2586 const Type *DestPtr, *SrcPtr; local
2589 DestPtr = Self.getASTContext().getCanonicalType(DestType.getTypePtr()),
2592 while (isa<PointerType>(DestPtr) && isa<PointerType>(SrcPtr)) {
2593 const PointerType *DestPPtr = cast<PointerType>(DestPtr);
2608 DestPtr = DestPPtr->getPointeeType().getTypePtr();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPInt.cpp452 uint64_t *DestPtr = Result.isSingleWord() ? &Result.U.VAL : Result.U.pVal;
457 DestPtr[word] = (w0 >> loBit) | (w1 << (APINT_BITS_PER_WORD - loBit));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp1018 SDValue DestPtr = Op.getOperand(1); local
1025 return DAG.getMemcpy(Chain, DL, DestPtr, SrcPtr,

Completed in 595 milliseconds