Searched refs:dispatch (Results 1 - 4 of 4) sorted by relevance

/gem5/ext/pybind11/tests/
H A Dtest_virtual_functions.cpp152 virtual std::string dispatch() const { return {}; }; function in struct:Base
157 virtual std::string dispatch() const { function in struct:DispatchIssue
158 PYBIND11_OVERLOAD_PURE(std::string, Base, dispatch, /* no arguments */);
221 // don't invoke Python dispatch classes by default when instantiating C++ classes
270 // #159: virtual function dispatch has problems with similar-named functions
273 .def("dispatch", &Base::dispatch);
275 m.def("dispatch_issue_go", [](const Base * b) { return b->dispatch(); });
H A Dtest_virtual_functions.py114 While the extra initialization and extra class layer has small virtual dispatch
211 """#159: virtual function dispatch has problems with similar-named functions"""
213 def dispatch(self): member in class:test_dispatch_issue.PyClass1
217 def dispatch(self): member in class:test_dispatch_issue.PyClass2
219 super(PyClass2, self).dispatch()
220 assert msg(excinfo.value) == 'Tried to call pure virtual function "Base::dispatch"'
/gem5/src/cpu/o3/
H A Diew.hh258 void dispatch(ThreadID tid);
277 * rename to dispatch.
393 /** Width of dispatch, in instructions. */
431 /** Stat for total number of squashed instructions dispatch skips. */
H A Diew_impl.hh175 .desc("Number of squashed instructions skipped by dispatch");
676 "dispatch skidBuffer %i\n",tid, inst->seqNum,
741 // and there's no stores waiting to write back, and dispatch is not
913 DefaultIEW<Impl>::dispatch(ThreadID tid) function in class:DefaultIEW
929 // Dispatch should try to dispatch as many instructions as its bandwidth
934 "dispatch.\n", tid);
1522 // Check stall and squash signals, dispatch any instructions.
1529 dispatch(tid);

Completed in 8 milliseconds