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

Function GCInstr

deps/v8/test/mjsunit/wasm/wasm-module-builder.js:549–552  ·  view source on GitHub ↗
(opcode)

Source from the content-addressed store, hash-verified

547 return [kSimdPrefix, 0x80 | (opcode & 0x7F), opcode >> 7];
548}
549function GCInstr(opcode) {
550 if (opcode <= 0x7F) return [kGCPrefix, opcode];
551 return [kGCPrefix, 0x80 | (opcode & 0x7F), opcode >> 7];
552}
553
554// GC opcodes
555let kExprStructNew = 0x00;

Calls

no outgoing calls

Tested by

no test coverage detected