reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/lib/CodeGen/CodeGenFunction.h
 2246   Address CreateMemTemp(QualType T, CharUnits Align, const Twine &Name = "tmp",

References

tools/clang/lib/CodeGen/CGAtomic.cpp
  290   Address TempAlloca = CGF.CreateMemTemp(
tools/clang/lib/CodeGen/CGBlocks.cpp
 1624       CreateMemTemp(variable->getType(), align, "block.captured-const");
tools/clang/lib/CodeGen/CGCUDANV.cpp
  295       CGF.CreateMemTemp(Dim3Ty, CharUnits::fromQuantity(8), "grid_dim");
  297       CGF.CreateMemTemp(Dim3Ty, CharUnits::fromQuantity(8), "block_dim");
tools/clang/lib/CodeGen/CGCall.cpp
 2425             CreateMemTemp(pointeeTy, getPointerAlign(), "swifterror.temp");
 2456       Address Alloca = CreateMemTemp(Ty, getContext().getDeclAlign(Arg),
 2514       Address alloca = CreateMemTemp(Ty, getContext().getDeclAlign(Arg));
 2538       Address Alloca = CreateMemTemp(Ty, getContext().getDeclAlign(Arg));
 4056             CreateMemTemp(pointeeTy, getPointerAlign(), "swifterror.temp");
tools/clang/lib/CodeGen/CGDecl.cpp
 2421       DeclPtr = CreateMemTemp(Ty, getContext().getDeclAlign(&D),
tools/clang/lib/CodeGen/CGExpr.cpp
  142   return CreateMemTemp(Ty, getContext().getTypeAlignInChars(Ty), Name, Alloca);