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

  /external/clang/include/clang/Lex/
ScratchBuffer.h 37 SourceLocation getToken(const char *Buf, unsigned Len, const char *&DestPtr);
  /external/clang/lib/Lex/
ScratchBuffer.cpp 34 const char *&DestPtr) {
43 DestPtr = CurBuffer+BytesUsed;
Preprocessor.cpp 429 const char *DestPtr;
430 SourceLocation Loc = ScratchBuf->getToken(Str.data(), Str.size(), DestPtr);
439 Tok.setRawIdentifierData(DestPtr);
441 Tok.setLiteralData(DestPtr);
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 74 /// then loads the result into DestPtr.
77 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
86 void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
205 /// then loads the result into DestPtr.
235 /// \brief Perform the final move to DestPtr if for some reason
260 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
268 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
374 void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
381 // DestPtr is an array*. Construct an elementType* by drilling
386 Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin")
    [all...]
CodeGenFunction.cpp     [all...]
CGObjCRuntime.h 262 llvm::Value *DestPtr,
CGCall.cpp 768 llvm::Value *DestPtr, bool DestIsVolatile,
774 llvm::Value *EltPtr = CGF.Builder.CreateConstGEP2_32(DestPtr, 0, i);
782 llvm::StoreInst *SI = CGF.Builder.CreateStore(Val, DestPtr, DestIsVolatile);
    [all...]
CGBuiltin.cpp 88 llvm::Value *DestPtr = CGF.EmitScalarExpr(E->getArg(0));
89 unsigned AddrSpace = DestPtr->getType()->getPointerAddressSpace();
97 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
122 llvm::Value *DestPtr = CGF.EmitScalarExpr(E->getArg(0));
123 unsigned AddrSpace = DestPtr->getType()->getPointerAddressSpace();
134 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
    [all...]
CGClass.cpp 826 void emitMemcpyIR(llvm::Value *DestPtr, llvm::Value *SrcPtr,
828 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
831 DestPtr = CGF.Builder.CreateBitCast(DestPtr, DBP);
838 CGF.Builder.CreateMemCpy(DestPtr, SrcPtr, Size.getQuantity(),
    [all...]
CGExprCXX.cpp 399 llvm::Value *DestPtr,
404 DestPtr = CGF.EmitCastToVoidPtr(DestPtr);
430 CGF.Builder.CreateMemCpy(DestPtr, SrcPtr, SizeVal, Align.getQuantity());
437 CGF.Builder.CreateMemSet(DestPtr, CGF.Builder.getInt8(0), SizeVal,
    [all...]
CodeGenFunction.h     [all...]
CGObjCGNU.cpp 551 llvm::Value *DestPtr,
    [all...]
CGObjCMac.cpp     [all...]
CGExpr.cpp 717 llvm::Value *DestPtr = CreateMemTemp(Ty, "undef.agg.tmp");
718 return RValue::getAggregate(DestPtr);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 153 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
    [all...]

Completed in 78 milliseconds