MCPcopy Create free account
hub / github.com/nodejs/node / set_isolate_address

Function set_isolate_address

deps/v8/tools/windbg.js:275–286  ·  view source on GitHub ↗
(addr, ptr_compr)

Source from the content-addressed store, hash-verified

273let using_ptr_compr = false;
274let isolate_address = 0;
275function set_isolate_address(addr, ptr_compr) {
276 isolate_address = addr;
277
278 if (typeof ptr_compr === 'undefined') {
279 ptr_compr = (bitwise_and(isolate_address, 0xffffffff) == 0);
280 }
281 using_ptr_compr = ptr_compr;
282
283 if (using_ptr_compr) {
284 print("The target is using pointer compression.");
285 }
286}
287
288
289/*=============================================================================

Callers

nothing calls this directly

Calls 2

bitwise_andFunction · 0.85
printFunction · 0.70

Tested by

no test coverage detected