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

Method preOp

source/emulation/cpu/x32/jitX86CodeGen.cpp:817–828  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

815};
816
817void JitX86CodeGen::preOp(DecodedOp* op) {
818 regUsed.fill(false);
819 xmmUsed.fill(false);
820 currentOp = op;
821 Label label;
822 if (!opLabels.get(currentEip, label)) {
823 label = compiler.new_label();
824 opLabels.set(currentEip, label);
825 }
826 compiler.bind(label);
827 pendingLabels.remove(currentEip);
828}
829
830U8 JitX86CodeGen::findTmpXMM() {
831 for (int i = 0; i < NUMBER_OF_XMM_TMPS; i++) {

Callers

nothing calls this directly

Calls 6

fillMethod · 0.45
getMethod · 0.45
new_labelMethod · 0.45
setMethod · 0.45
bindMethod · 0.45
removeMethod · 0.45

Tested by

no test coverage detected