This is an archive of the discontinued LLVM Phabricator instance.

[AST] Store some data of CXXNewExpr as trailing objects
ClosedPublic

Authored by riccibruno on Dec 28 2018, 11:24 AM.

Details

Summary

Store the optional array size expression, optional initialization expression and optional
placement new arguments in a trailing array. Additionally store the range for the parenthesized
type-id in a trailing object if needed since in the vast majority of cases the type is not parenthesized
(not a single new expression in the translation unit of SemaDecl.cpp has a parenthesized type-id).

This saves 2 pointers per CXXNewExpr in all cases, and 2 pointers + 8 bytes per CXXNewExpr
in the common case where the type is not parenthesized.

Diff Detail

Repository
rL LLVM

Event Timeline

riccibruno created this revision.Dec 28 2018, 11:24 AM

LGTM.

include/clang/AST/ExprCXX.h
1950 ↗(On Diff #179639)

If you ever want a somewhat bigger refactoring project that might provide major wins on C++ code, one idea I've had for awhile is to largely eliminate TypeSourceInfo from the AST in favor of storing a TypeLoc in most places. A TSI is basically a TL that stores the location data in a trailing array; it was convenient as a way to retrofit type-location information into the AST without massive changes, and it saves a pointer (at the cost of an extra indirection) when the TSI can be shared between parent nodes. But I think the TSI can rarely be shared between parent nodes (pretty much just template instantiation of a non-dependent type), and the structure forces the location data to be copied when the type changes (e.g. during template instantiation) even if the location data would be the same. It also means we can't use a preallocated zero buffer in getTrivialTypeSourceInfo with a null SourceLocation, and instead we have to allocate and initialize an appropriately-sized zero'ed trailing array.

The win wouldn't be as large as it could be because FunctionProtoTypeLoc includes ParmVarDecls, which get cloned during template instantiation and therefore would always require a new type-location buffer when e.g. instantiating a function temploid. But it might still be quite significant.

rjmccall accepted this revision.Dec 31 2018, 1:35 PM
This revision is now accepted and ready to land.Dec 31 2018, 1:35 PM
riccibruno marked an inline comment as done.Jan 6 2019, 3:05 PM
riccibruno added inline comments.
include/clang/AST/ExprCXX.h
1950 ↗(On Diff #179639)

Thanks for the pointer; this type of hint is very useful. I will have to dig into this
a bit before commenting on it, but I will definitely keep this in mind.

If you have some time there are two last patches which deal with
CXXDependentScopeMemberExpr and OverloadExpr, but I don't
want to spam you (with arguably pretty boring patches).

This revision was automatically updated to reflect the committed changes.