]> granicus.if.org Git - clang/commit
Optimize Declarator to avoid malloc/free traffic for the argument list of a
authorChris Lattner <sabre@nondot.org>
Tue, 20 Jan 2009 19:11:22 +0000 (19:11 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 20 Jan 2009 19:11:22 +0000 (19:11 +0000)
commit5af2f35c6ad1cb78b2aed3705d221954d1689b8a
treed1b84c94cc069b225b2d1c9c2beae4f0d8d2144e
parent4f0c90ff1fea80e4b1997b3cdcc02a0ee5a2110d
Optimize Declarator to avoid malloc/free traffic for the argument list of a
function DeclaratorChunk in common cases.  This uses a fixed array in
Declarator when it is small enough for the first function declarator chunk
in a declarator.

This eliminates all malloc/free traffic from DeclaratorChunk::getFunction
when running on Cocoa.h except for five functions: signal/bsd_signal/sigset,
which have multiple Function DeclChunk's, and
CFUUIDCreateWithBytes/CFUUIDGetConstantUUIDWithBytes, which take more than
16 arguments.

This patch was pair programmed with Steve.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62599 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/Parse/DeclSpec.h
lib/Parse/DeclSpec.cpp
lib/Parse/ParseDecl.cpp
lib/Parse/ParseExpr.cpp
lib/Sema/SemaDecl.cpp