| 4492 | } |
| 4493 | |
| 4494 | void JitX86CodeGen::copyBuffer(U8* dst, U32 size) { |
| 4495 | code.relocate_to_base((DYN_PTR_SIZE)dst); |
| 4496 | code.copy_flattened_data(dst, size); |
| 4497 | } |
| 4498 | |
| 4499 | U32 JitX86CodeGen::getBufferLocation(U32 id) { |
| 4500 | return (U32)code.label_offset(labels.at(id)); |
nothing calls this directly
no test coverage detected