Lines Matching defs:arguments
77 // if the first simulated function tries to read stack arguments that haven't
1273 // Templated `RunFrom` version taking care of passing arguments and returning
1282 R RunFrom(const Instruction* code, P... arguments) {
1283 return RunFromStructHelper<R, P...>::Wrapper(this, code, arguments...);
1290 P... arguments) {
1293 // TODO: We currently do not support arguments passed on the stack. We
1299 arguments),
1300 arguments)...};
1311 P... arguments) {
1314 // TODO: We currently do not support arguments passed on the stack. We
1320 arguments),
1321 arguments)...};
2955 std::tuple<P...> arguments,
2957 USE(arguments);
2958 return function(std::get<I>(arguments)...);