[Git][ghc/ghc][wip/adjustor-pool] rts/AdjustorPool: Use ExecPage abstraction
Ben Gamari (@bgamari)
gitlab at gitlab.haskell.org
Mon Feb 19 23:25:32 UTC 2024
Ben Gamari pushed to branch wip/adjustor-pool at Glasgow Haskell Compiler / GHC
Commits:
ea97cb20 by Ben Gamari at 2024-02-19T18:25:20-05:00
rts/AdjustorPool: Use ExecPage abstraction
This is just a minor cleanup I found while reviewing the implementation.
- - - - -
1 changed file:
- rts/adjustor/AdjustorPool.c
Changes:
=====================================
rts/adjustor/AdjustorPool.c
=====================================
@@ -291,12 +291,13 @@ free_adjustor(void *adjustor, void *context) {
/* Must hold owner->lock */
static struct AdjustorChunk *
alloc_adjustor_chunk(struct AdjustorPool *owner) {
- size_t pg_sz = getPageSize();
- struct AdjustorExecPage *exec_page = mmapAnonForLinker(pg_sz);
+ ExecPage *exec_page = allocateExecPage();
if (exec_page == NULL) {
barf("alloc_adjustor_chunk: failed to allocate");
}
- exec_page->magic = ADJUSTOR_EXEC_PAGE_MAGIC;
+
+ struct AdjustorExecPage *adj_page = (struct AdjustorExecPage *) exec_page;
+ adj_page->magic = ADJUSTOR_EXEC_PAGE_MAGIC;
// N.B. pad bitmap to ensure that .contexts is aligned.
size_t bitmap_sz = ROUND_UP(owner->chunk_slots, 8*sizeof(void*)) / 8;
@@ -307,7 +308,7 @@ alloc_adjustor_chunk(struct AdjustorPool *owner) {
chunk->first_free = 0;
chunk->contexts = (struct AdjustorContext *) (chunk->slot_bitmap + bitmap_sz);
chunk->free_list_next = NULL;
- chunk->exec_page = exec_page;
+ chunk->exec_page = adj_page;
chunk->exec_page->owner = chunk;
// initialize the slot bitmap
@@ -317,13 +318,13 @@ alloc_adjustor_chunk(struct AdjustorPool *owner) {
size_t code_sz = owner->adjustor_code_size;
for (size_t i = 0; i < owner->chunk_slots; i++) {
owner->make_code(
- &exec_page->adjustor_code[i*code_sz],
+ &adj_page->adjustor_code[i*code_sz],
get_context(chunk, i),
owner->user_data);
}
// Remap the executable page as executable
- mprotectForLinker(exec_page, pg_sz, MEM_READ_EXECUTE);
+ freezeExecPage(exec_page);
return chunk;
}
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/ea97cb20e0f5fe7ad2d88e2146400abc90f1e291
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/ea97cb20e0f5fe7ad2d88e2146400abc90f1e291
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20240219/f781028d/attachment-0001.html>
More information about the ghc-commits
mailing list