Home
last modified time | relevance | path

Searched refs:execAlloc (Results 1 – 25 of 36) sorted by relevance

12

/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/gdb/tests/
H A Dtest-ExecutableAllocator.cpp10 ExecutableAllocator execAlloc(cx->runtime()); in FRAGMENT() local
14 (void) execAlloc; in FRAGMENT()
20 ExecutableAllocator execAlloc(cx->runtime()); in FRAGMENT() local
21 execAlloc.alloc(16 * 1024, &pool, BASELINE_CODE); in FRAGMENT()
26 (void) execAlloc; in FRAGMENT()
33 ExecutableAllocator execAlloc(cx->runtime()); in FRAGMENT() local
35 execAlloc.alloc(16 * 1024, &init, BASELINE_CODE); in FRAGMENT()
38 execAlloc.alloc(32 * 1024, &pool, ION_CODE); in FRAGMENT()
43 (void) execAlloc; in FRAGMENT()
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/gdb/tests/
H A Dtest-ExecutableAllocator.cpp9 ExecutableAllocator execAlloc(cx->runtime()); in FRAGMENT() local
13 use(execAlloc); in FRAGMENT()
19 ExecutableAllocator execAlloc(cx->runtime()); in FRAGMENT() local
20 execAlloc.alloc(cx, 16 * 1024, &pool, CodeKind::Baseline); in FRAGMENT()
25 use(execAlloc); in FRAGMENT()
32 ExecutableAllocator execAlloc(cx->runtime()); in FRAGMENT() local
34 execAlloc.alloc(cx, 16 * 1024, &init, CodeKind::Baseline); in FRAGMENT()
37 execAlloc.alloc(cx, 32 * 1024, &pool, CodeKind::Ion); in FRAGMENT()
42 use(execAlloc); in FRAGMENT()
/dports/www/firefox-esr/firefox-91.8.0/js/src/gdb/tests/
H A Dtest-ExecutableAllocator.cpp9 ExecutableAllocator execAlloc; in FRAGMENT() local
13 use(execAlloc); in FRAGMENT()
19 ExecutableAllocator execAlloc; in FRAGMENT() local
20 execAlloc.alloc(cx, 16 * 1024, &pool, CodeKind::Baseline); in FRAGMENT()
25 use(execAlloc); in FRAGMENT()
34 ExecutableAllocator execAlloc; in FRAGMENT() local
37 execAlloc.alloc(cx, INIT_ALLOC_SIZE, &init, CodeKind::Baseline); in FRAGMENT()
40 execAlloc.alloc(cx, ALLOC_SIZE, &pool, CodeKind::Ion); in FRAGMENT()
46 use(execAlloc); in FRAGMENT()
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/gdb/tests/
H A Dtest-ExecutableAllocator.cpp9 ExecutableAllocator execAlloc; in FRAGMENT() local
13 use(execAlloc); in FRAGMENT()
19 ExecutableAllocator execAlloc; in FRAGMENT() local
20 execAlloc.alloc(cx, 16 * 1024, &pool, CodeKind::Baseline); in FRAGMENT()
25 use(execAlloc); in FRAGMENT()
34 ExecutableAllocator execAlloc; in FRAGMENT() local
37 execAlloc.alloc(cx, INIT_ALLOC_SIZE, &init, CodeKind::Baseline); in FRAGMENT()
40 execAlloc.alloc(cx, ALLOC_SIZE, &pool, CodeKind::Ion); in FRAGMENT()
46 use(execAlloc); in FRAGMENT()
/dports/www/firefox/firefox-99.0/js/src/gdb/tests/
H A Dtest-ExecutableAllocator.cpp8 ExecutableAllocator execAlloc; in FRAGMENT() local
12 use(execAlloc); in FRAGMENT()
18 ExecutableAllocator execAlloc; in FRAGMENT() local
19 execAlloc.alloc(cx, 16 * 1024, &pool, CodeKind::Baseline); in FRAGMENT()
24 use(execAlloc); in FRAGMENT()
33 ExecutableAllocator execAlloc; in FRAGMENT() local
36 execAlloc.alloc(cx, INIT_ALLOC_SIZE, &init, CodeKind::Baseline); in FRAGMENT()
39 execAlloc.alloc(cx, ALLOC_SIZE, &pool, CodeKind::Ion); in FRAGMENT()
45 use(execAlloc); in FRAGMENT()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/gdb/tests/
H A Dtest-ExecutableAllocator.cpp9 ExecutableAllocator execAlloc; in FRAGMENT() local
13 use(execAlloc); in FRAGMENT()
19 ExecutableAllocator execAlloc; in FRAGMENT() local
20 execAlloc.alloc(cx, 16 * 1024, &pool, CodeKind::Baseline); in FRAGMENT()
25 use(execAlloc); in FRAGMENT()
34 ExecutableAllocator execAlloc; in FRAGMENT() local
37 execAlloc.alloc(cx, INIT_ALLOC_SIZE, &init, CodeKind::Baseline); in FRAGMENT()
40 execAlloc.alloc(cx, ALLOC_SIZE, &pool, CodeKind::Ion); in FRAGMENT()
46 use(execAlloc); in FRAGMENT()
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/jit/
H A DLinker.cpp33 ExecutableAllocator& execAlloc = hasPatchableBackedges in newCode() local
35 : cx->runtime()->jitRuntime()->execAlloc(); in newCode()
36 uint8_t* result = (uint8_t*)execAlloc.alloc(bytesNeeded, &pool, kind); in newCode()
H A DJitCompartment.h229 ExecutableAllocator& execAlloc() { in execAlloc() function
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/jit/
H A DLinker.cpp38 ExecutableAllocator& execAlloc = in newCode() local
40 : cx->runtime()->jitRuntime()->execAlloc(); in newCode()
43 uint8_t* result = (uint8_t*)execAlloc.alloc(cx, bytesNeeded, &pool, kind); in newCode()
H A DJitCompartment.h210 ExecutableAllocator& execAlloc() { return execAlloc_.ref(); } in execAlloc() function
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/mozjs-45/extract/js/src/jit/
H A DLinker.h54 ExecutableAllocator& execAlloc = cx->runtime()->jitRuntime()->execAlloc(); in newCode() local
55 uint8_t* result = (uint8_t*)execAlloc.alloc(bytesNeeded, &pool, kind); in newCode()
H A DJitCompartment.h202 ExecutableAllocator& execAlloc() { in execAlloc() function
/dports/www/firefox-esr/firefox-91.8.0/js/src/jit/
H A DJitZone.h153 ExecutableAllocator& execAlloc() { return execAlloc_.ref(); } in execAlloc() function
154 const ExecutableAllocator& execAlloc() const { return execAlloc_.ref(); } in execAlloc() function
H A DLinker.cpp47 (uint8_t*)jitZone->execAlloc().alloc(cx, bytesNeeded, &pool, kind); in newCode()
/dports/www/firefox/firefox-99.0/js/src/jit/
H A DJitZone.h153 ExecutableAllocator& execAlloc() { return execAlloc_.ref(); } in execAlloc() function
154 const ExecutableAllocator& execAlloc() const { return execAlloc_.ref(); } in execAlloc() function
H A DLinker.cpp46 (uint8_t*)jitZone->execAlloc().alloc(cx, bytesNeeded, &pool, kind); in newCode()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/jit/
H A DJitZone.h153 ExecutableAllocator& execAlloc() { return execAlloc_.ref(); } in execAlloc() function
154 const ExecutableAllocator& execAlloc() const { return execAlloc_.ref(); } in execAlloc() function
H A DLinker.cpp47 (uint8_t*)jitZone->execAlloc().alloc(cx, bytesNeeded, &pool, kind); in newCode()
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/jit/
H A DLinker.cpp48 (uint8_t*)jitZone->execAlloc().alloc(cx, bytesNeeded, &pool, kind); in newCode()
H A DJitRealm.h550 ExecutableAllocator& execAlloc() { return execAlloc_.ref(); } in execAlloc() function
551 const ExecutableAllocator& execAlloc() const { return execAlloc_.ref(); } in execAlloc() function
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/gdb/mozilla/
H A Dunwind.py343 for execAlloc in execAllocators:
344 for pool in jsjitExecutableAllocator(execAlloc, self.typecache):
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/gdb/mozilla/
H A Dunwind.py343 for execAlloc in execAllocators:
344 for pool in jsjitExecutableAllocator(execAlloc, self.typecache):
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/mozjs-45/extract/js/src/vm/
H A DRuntime.cpp546 jitRuntime_->execAlloc().addSizeOfCode(&rtSizes->code); in addSizeOfIncludingThis()
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/vm/
H A DRuntime.cpp522 jitRuntime_->execAlloc().addSizeOfCode(&rtSizes->code); in addSizeOfIncludingThis()
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/vm/
H A DRuntime.cpp467 jitRuntime_->execAlloc().addSizeOfCode(&rtSizes->code); in addSizeOfIncludingThis()

12