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 386 const char *DestPtr;
387 SourceLocation Loc = ScratchBuf->getToken(Buf, Len, DestPtr);
396 Tok.setRawIdentifierData(DestPtr);
398 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 EmitStdInitializerList(llvm::Value *DestPtr, InitListExpr *InitList);
87 void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
201 /// then loads the result into DestPtr.
224 /// \brief Perform the final move to DestPtr if for some reason
249 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
257 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
323 void AggExprEmitter::EmitStdInitializerList(llvm::Value *destPtr,
354 LValue DestLV = CGF.MakeNaturalAlignAddrLValue(destPtr, initList->getType())
    [all...]
CodeGenFunction.cpp 807 CodeGenFunction::EmitNullInitialization(llvm::Value *DestPtr, QualType Ty) {
818 cast<llvm::PointerType>(DestPtr->getType())->getAddressSpace();
820 if (DestPtr->getType() != BP)
821 DestPtr = Builder.CreateBitCast(DestPtr, BP);
873 if (vla) return emitNonZeroVLAInit(*this, Ty, DestPtr, SrcPtr, SizeVal);
876 Builder.CreateMemCpy(DestPtr, SrcPtr, SizeVal, Align.getQuantity(), false);
    [all...]
CGCall.cpp 706 llvm::Value *DestPtr, bool DestIsVolatile,
712 llvm::Value *EltPtr = CGF.Builder.CreateConstGEP2_32(DestPtr, 0, i);
720 llvm::StoreInst *SI = CGF.Builder.CreateStore(Val, DestPtr, DestIsVolatile);
    [all...]
CGObjCRuntime.h 259 llvm::Value *DestPtr,
CGBuiltin.cpp 88 llvm::Value *DestPtr = CGF.EmitScalarExpr(E->getArg(0));
90 cast<llvm::PointerType>(DestPtr->getType())->getAddressSpace();
98 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
123 llvm::Value *DestPtr = CGF.EmitScalarExpr(E->getArg(0));
125 cast<llvm::PointerType>(DestPtr->getType())->getAddressSpace();
136 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
    [all...]
CGExprCXX.cpp 396 llvm::Value *DestPtr,
401 DestPtr = CGF.EmitCastToVoidPtr(DestPtr);
427 CGF.Builder.CreateMemCpy(DestPtr, SrcPtr, SizeVal, Align.getQuantity());
434 CGF.Builder.CreateMemSet(DestPtr, CGF.Builder.getInt8(0), SizeVal,
    [all...]
CGObjCGNU.cpp 501 llvm::Value *DestPtr,
    [all...]
CodeGenFunction.h     [all...]
CGObjCMac.cpp     [all...]
CGExpr.cpp 661 llvm::Value *DestPtr = CreateMemTemp(Ty, "undef.agg.tmp");
662 return RValue::getAggregate(DestPtr);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 85 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
442 processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
484 unsigned AddrSpace = cast<PointerType>(DestPtr->getType())->getAddressSpace();
503 Type *IntPtr = TD->getIntPtrType(DestPtr->getContext());
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 370 milliseconds