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

Method call_I

source/emulation/cpu/jit/jit.cpp:168–173  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

166}
167
168void Jit::call_I(CallI address, U32 value) {
169 std::vector<DynParam> params;
170 params.push_back(DynParam(JitCallParamType::CPU));
171 params.push_back(DynParam(JitCallParamType::CONST_32, value));
172 callHostFunction((void*)address, params);
173}
174
175void Jit::call_RI(CallRI address, JitWidth width, RegPtr reg, U32 value) {
176 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