MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / JumpInBlock

Method JumpInBlock

source/emulation/cpu/x32/jitX86CodeGen.cpp:4566–4574  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4564}
4565
4566void JitX86CodeGen::JumpInBlock(U32 address) {
4567 Label label;
4568 if (!opLabels.get(address, label)) {
4569 label = compiler.new_label();
4570 opLabels.set(address, label);
4571 }
4572
4573 compiler.jmp(label);
4574}
4575
4576void JitX86CodeGen::StartElse() {
4577 Label label = compiler.new_label();

Callers

nothing calls this directly

Calls 4

jmpMethod · 0.80
getMethod · 0.45
new_labelMethod · 0.45
setMethod · 0.45

Tested by

no test coverage detected