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

Method call_RI

source/emulation/cpu/jit/jit.cpp:175–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

173}
174
175void Jit::call_RI(CallRI address, JitWidth width, RegPtr reg, U32 value) {
176 std::vector<DynParam> params;
177 params.push_back(DynParam(JitCallParamType::CPU));
178 pushParam(params, width, reg);
179 params.push_back(DynParam(JitCallParamType::CONST_32, value));
180 callHostFunction((void*)address, params);
181}
182
183RegPtr Jit::callAndReturn(CallReturn address, RegPtr resultReg) {
184 std::vector<DynParam> params;

Callers

nothing calls this directly

Calls 3

DynParamClass · 0.85
callHostFunctionFunction · 0.50
push_backMethod · 0.45

Tested by

no test coverage detected