mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
Add macros to make AllocSetContextCreate() calls simpler and safer.
I found that half a dozen (nearly 5%) of our AllocSetContextCreate calls had typos in the context-sizing parameters. While none of these led to especially significant problems, they did create minor inefficiencies, and it's now clear that expecting people to copy-and-paste those calls accurately is not a great idea. Let's reduce the risk of future errors by introducing single macros that encapsulate the common use-cases. Three such macros are enough to cover all but two special-purpose contexts; those two calls can be left as-is, I think. While this patch doesn't in itself improve matters for third-party extensions, it doesn't break anything for them either, and they can gradually adopt the simplified notation over time. In passing, change TopMemoryContext to use the default allocation parameters. Formerly it could only be extended 8K at a time. That was probably reasonable when this code was written; but nowadays we create many more contexts than we did then, so that it's not unusual to have a couple hundred K in TopMemoryContext, even without considering various dubious code that sticks other things there. There seems no good reason not to let it use growing blocks like most other contexts. Back-patch to 9.6, mostly because that's still close enough to HEAD that it's easy to do so, and keeping the branches in sync can be expected to avoid some future back-patching pain. The bugs fixed by these changes don't seem to be significant enough to justify fixing them further back. Discussion: <21072.1472321324@sss.pgh.pa.us>
This commit is contained in:
@@ -165,9 +165,7 @@ brininsert(Relation idxRel, Datum *values, bool *nulls,
|
||||
bdesc = brin_build_desc(idxRel);
|
||||
tupcxt = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"brininsert cxt",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
oldcxt = MemoryContextSwitchTo(tupcxt);
|
||||
}
|
||||
|
||||
@@ -347,9 +345,7 @@ bringetbitmap(IndexScanDesc scan, TIDBitmap *tbm)
|
||||
*/
|
||||
perRangeCxt = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"bringetbitmap cxt",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
oldcxt = MemoryContextSwitchTo(perRangeCxt);
|
||||
|
||||
/*
|
||||
@@ -856,9 +852,7 @@ brin_build_desc(Relation rel)
|
||||
|
||||
cxt = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"brin desc cxt",
|
||||
ALLOCSET_SMALL_INITSIZE,
|
||||
ALLOCSET_SMALL_MINSIZE,
|
||||
ALLOCSET_SMALL_MAXSIZE);
|
||||
ALLOCSET_SMALL_SIZES);
|
||||
oldcxt = MemoryContextSwitchTo(cxt);
|
||||
tupdesc = RelationGetDescr(rel);
|
||||
|
||||
@@ -1169,9 +1163,7 @@ union_tuples(BrinDesc *bdesc, BrinMemTuple *a, BrinTuple *b)
|
||||
/* Use our own memory context to avoid retail pfree */
|
||||
cxt = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"brin union",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
oldcxt = MemoryContextSwitchTo(cxt);
|
||||
db = brin_deform_tuple(bdesc, b);
|
||||
MemoryContextSwitchTo(oldcxt);
|
||||
|
||||
@@ -367,9 +367,7 @@ brin_new_memtuple(BrinDesc *brdesc)
|
||||
|
||||
dtup->bt_context = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"brin dtuple",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
return dtup;
|
||||
}
|
||||
|
||||
|
||||
@@ -135,9 +135,7 @@ printtup_startup(DestReceiver *self, int operation, TupleDesc typeinfo)
|
||||
*/
|
||||
myState->tmpcontext = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"printtup",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
|
||||
if (PG_PROTOCOL_MAJOR(FrontendProtocol) < 3)
|
||||
{
|
||||
|
||||
@@ -348,9 +348,7 @@ ginPlaceToPage(GinBtree btree, GinBtreeStack *stack,
|
||||
*/
|
||||
tmpCxt = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"ginPlaceToPage temporary context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
oldCxt = MemoryContextSwitchTo(tmpCxt);
|
||||
|
||||
if (GinPageIsData(page))
|
||||
|
||||
@@ -808,9 +808,7 @@ ginInsertCleanup(GinState *ginstate, bool full_clean,
|
||||
*/
|
||||
opCtx = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"GIN insert cleanup temporary context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
|
||||
oldCtx = MemoryContextSwitchTo(opCtx);
|
||||
|
||||
|
||||
@@ -372,9 +372,7 @@ ginbuild(Relation heap, Relation index, IndexInfo *indexInfo)
|
||||
*/
|
||||
buildstate.tmpCtx = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"Gin build temporary context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
|
||||
/*
|
||||
* create a temporary memory context that is used for calling
|
||||
@@ -382,9 +380,7 @@ ginbuild(Relation heap, Relation index, IndexInfo *indexInfo)
|
||||
*/
|
||||
buildstate.funcCtx = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"Gin build temporary context for user-defined function",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
|
||||
buildstate.accum.ginstate = &buildstate.ginstate;
|
||||
ginInitBA(&buildstate.accum);
|
||||
@@ -495,9 +491,7 @@ gininsert(Relation index, Datum *values, bool *isnull,
|
||||
|
||||
insertCtx = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"Gin insert temporary context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
|
||||
oldCtx = MemoryContextSwitchTo(insertCtx);
|
||||
|
||||
|
||||
@@ -38,14 +38,10 @@ ginbeginscan(Relation rel, int nkeys, int norderbys)
|
||||
so->nkeys = 0;
|
||||
so->tempCtx = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"Gin scan temporary context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
so->keyCtx = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"Gin scan key context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
initGinState(&so->ginstate, scan->indexRelation);
|
||||
|
||||
scan->opaque = so;
|
||||
|
||||
@@ -526,9 +526,7 @@ ginbulkdelete(IndexVacuumInfo *info, IndexBulkDeleteResult *stats,
|
||||
|
||||
gvs.tmpCxt = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"Gin vacuum temporary context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
gvs.index = index;
|
||||
gvs.callback = callback;
|
||||
gvs.callback_state = callback_state;
|
||||
|
||||
@@ -749,13 +749,12 @@ gin_xlog_startup(void)
|
||||
{
|
||||
opCtx = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"GIN recovery temporary context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
}
|
||||
|
||||
void
|
||||
gin_xlog_cleanup(void)
|
||||
{
|
||||
MemoryContextDelete(opCtx);
|
||||
opCtx = NULL;
|
||||
}
|
||||
|
||||
@@ -105,9 +105,7 @@ createTempGistContext(void)
|
||||
{
|
||||
return AllocSetContextCreate(CurrentMemoryContext,
|
||||
"GiST temporary context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -1411,9 +1409,7 @@ initGISTstate(Relation index)
|
||||
/* Create the memory context that will hold the GISTSTATE */
|
||||
scanCxt = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"GiST scan context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
oldCxt = MemoryContextSwitchTo(scanCxt);
|
||||
|
||||
/* Create and fill in the GISTSTATE */
|
||||
|
||||
@@ -140,9 +140,7 @@ gistrescan(IndexScanDesc scan, ScanKey key, int nkeys,
|
||||
/* second time through */
|
||||
so->queueCxt = AllocSetContextCreate(so->giststate->scanCxt,
|
||||
"GiST queue context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
first_time = false;
|
||||
}
|
||||
else
|
||||
@@ -180,9 +178,7 @@ gistrescan(IndexScanDesc scan, ScanKey key, int nkeys,
|
||||
|
||||
so->pageDataCxt = AllocSetContextCreate(so->giststate->scanCxt,
|
||||
"GiST page data context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
}
|
||||
|
||||
/* create new, empty RBTree for search queue */
|
||||
|
||||
@@ -258,9 +258,7 @@ begin_heap_rewrite(Relation old_heap, Relation new_heap, TransactionId oldest_xm
|
||||
*/
|
||||
rw_cxt = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"Table rewrite",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
old_cxt = MemoryContextSwitchTo(rw_cxt);
|
||||
|
||||
/* Create and fill in the state struct */
|
||||
|
||||
@@ -763,9 +763,7 @@ btvacuumscan(IndexVacuumInfo *info, IndexBulkDeleteResult *stats,
|
||||
/* Create a temporary memory context to run _bt_pagedel in */
|
||||
vstate.pagedelcontext = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"_bt_pagedel",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
|
||||
/*
|
||||
* The outer loop iterates over all index pages except the metapage, in
|
||||
|
||||
@@ -232,10 +232,8 @@ _bt_preprocess_array_keys(IndexScanDesc scan)
|
||||
*/
|
||||
if (so->arrayContext == NULL)
|
||||
so->arrayContext = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"BTree Array Context",
|
||||
ALLOCSET_SMALL_MINSIZE,
|
||||
ALLOCSET_SMALL_INITSIZE,
|
||||
ALLOCSET_SMALL_MAXSIZE);
|
||||
"BTree array context",
|
||||
ALLOCSET_SMALL_SIZES);
|
||||
else
|
||||
MemoryContextReset(so->arrayContext);
|
||||
|
||||
|
||||
@@ -134,9 +134,7 @@ spgbuild(Relation heap, Relation index, IndexInfo *indexInfo)
|
||||
|
||||
buildstate.tmpCtx = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"SP-GiST build temporary context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
|
||||
reltuples = IndexBuildHeapScan(heap, index, indexInfo, true,
|
||||
spgistBuildCallback, (void *) &buildstate);
|
||||
@@ -213,9 +211,7 @@ spginsert(Relation index, Datum *values, bool *isnull,
|
||||
|
||||
insertCtx = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"SP-GiST insert temporary context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
oldCtx = MemoryContextSwitchTo(insertCtx);
|
||||
|
||||
initSpGistState(&spgstate, index);
|
||||
|
||||
@@ -193,9 +193,7 @@ spgbeginscan(Relation rel, int keysz, int orderbysz)
|
||||
initSpGistState(&so->state, scan->indexRelation);
|
||||
so->tempCxt = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"SP-GiST search temporary context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
|
||||
/* Set up indexTupDesc and xs_itupdesc in case it's an index-only scan */
|
||||
so->indexTupDesc = scan->xs_itupdesc = RelationGetDescr(rel);
|
||||
|
||||
@@ -1014,9 +1014,7 @@ spg_xlog_startup(void)
|
||||
{
|
||||
opCtx = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"SP-GiST temporary context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
@@ -1570,10 +1570,8 @@ mXactCachePut(MultiXactId multi, int nmembers, MultiXactMember *members)
|
||||
/* The cache only lives as long as the current transaction */
|
||||
debug_elog2(DEBUG2, "CachePut: initializing memory context");
|
||||
MXactContext = AllocSetContextCreate(TopTransactionContext,
|
||||
"MultiXact Cache Context",
|
||||
ALLOCSET_SMALL_MINSIZE,
|
||||
ALLOCSET_SMALL_INITSIZE,
|
||||
ALLOCSET_SMALL_MAXSIZE);
|
||||
"MultiXact cache context",
|
||||
ALLOCSET_SMALL_SIZES);
|
||||
}
|
||||
|
||||
entry = (mXactCacheEnt *)
|
||||
|
||||
@@ -722,10 +722,8 @@ HandleParallelMessages(void)
|
||||
*/
|
||||
if (hpm_context == NULL) /* first time through? */
|
||||
hpm_context = AllocSetContextCreate(TopMemoryContext,
|
||||
"HandleParallelMessages context",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
"HandleParallelMessages",
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
else
|
||||
MemoryContextReset(hpm_context);
|
||||
|
||||
@@ -962,10 +960,8 @@ ParallelWorkerMain(Datum main_arg)
|
||||
Assert(CurrentResourceOwner == NULL);
|
||||
CurrentResourceOwner = ResourceOwnerCreate(NULL, "parallel toplevel");
|
||||
CurrentMemoryContext = AllocSetContextCreate(TopMemoryContext,
|
||||
"parallel worker",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
"Parallel worker",
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
|
||||
/*
|
||||
* Now that we have a resource owner, we can attach to the dynamic shared
|
||||
|
||||
@@ -1018,9 +1018,7 @@ AtStart_Memory(void)
|
||||
TopTransactionContext =
|
||||
AllocSetContextCreate(TopMemoryContext,
|
||||
"TopTransactionContext",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
|
||||
/*
|
||||
* In a top-level transaction, CurTransactionContext is the same as
|
||||
@@ -1078,9 +1076,7 @@ AtSubStart_Memory(void)
|
||||
*/
|
||||
CurTransactionContext = AllocSetContextCreate(CurTransactionContext,
|
||||
"CurTransactionContext",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
s->curTransactionContext = CurTransactionContext;
|
||||
|
||||
/* Make the CurTransactionContext active. */
|
||||
|
||||
@@ -4663,9 +4663,7 @@ XLOGShmemInit(void)
|
||||
{
|
||||
walDebugCxt = AllocSetContextCreate(TopMemoryContext,
|
||||
"WAL Debug",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
MemoryContextAllowInCriticalSection(walDebugCxt, true);
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -997,9 +997,7 @@ InitXLogInsert(void)
|
||||
{
|
||||
xloginsert_cxt = AllocSetContextCreate(TopMemoryContext,
|
||||
"WAL record construction",
|
||||
ALLOCSET_DEFAULT_MINSIZE,
|
||||
ALLOCSET_DEFAULT_INITSIZE,
|
||||
ALLOCSET_DEFAULT_MAXSIZE);
|
||||
ALLOCSET_DEFAULT_SIZES);
|
||||
}
|
||||
|
||||
if (registered_buffers == NULL)
|
||||
|
||||
Reference in New Issue
Block a user