(opcode)
| 454 | |
| 455 | // Use these for multi-byte instructions (opcode > 0x7F needing two LEB bytes): |
| 456 | function GCInstr(opcode) { |
| 457 | if (opcode <= 0x7F) return [kGCPrefix, opcode]; |
| 458 | return [kGCPrefix, 0x80 | (opcode & 0x7F), opcode >> 7]; |
| 459 | } |
| 460 | |
| 461 | // GC opcodes |
| 462 | let kExprStructNew = 0x00; |
no outgoing calls
no test coverage detected