Searched refs:call (Results 26 - 50 of 55) sorted by relevance

123

/gem5/ext/pybind11/docs/
H A Dconf.py78 # Else, today_fmt is used as the format for a strftime call.
322 subprocess.call(['doxygen', '--version'])
323 retcode = subprocess.call(['doxygen'], cwd=app.confdir)
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64samt/
H A Dsysfutex2_d.S39 // sysfutex_d tests FUTEX_WAKE_OP functionalities of futex system call:
56 // Master thread creates new threads, call _master function, waits for all
60 call _create_threads
66 call _master_work
70 call _join
74 call _check
78 call _delete_threads
/gem5/util/plot_dram/
H A Dlowp_dram_sweep_plot.py43 from subprocess import call
115 call(["pdflatex", texfile_s])
116 call(["open", texfile_s.split('.')[0] + '.pdf'])
/gem5/tests/testing/
H A Dhelpers.py48 """Exception that indicates that a process call timed out"""
63 return p.call()
89 def call(self, timeout=0): member in class:ProcessHelper
165 status, stdout, stderr = p.call()
171 status, stdout, stderr = p.call(timeout=1)
H A Dunits.py156 status, gem5_stdout, gem5_stderr = p.call(timeout=self.timeout)
286 status, stdout, stderr = p.call()
/gem5/util/
H A Ddecode_inst_dep_trace.py102 from subprocess import call
103 error = call(['protoc', '--python_out=util', '--proto_path=src/proto',
H A Don-chip-network-power-area.py34 from subprocess import call
43 error = call(['cmake', '../../../%s' % src_dir])
48 error = call(['make'])
H A Dencode_inst_dep_trace.py102 from subprocess import call
103 error = call(['protoc', '--python_out=util', '--proto_path=src/proto',
H A Dregress34 from subprocess import call
100 retcode = call(cmd, shell=True)
H A Dgen_arm_fs_files.py32 from subprocess import call
48 return_code = call(cmd, cwd = working_dir, stdout = stdout,
/gem5/src/systemc/ext/core/
H A Dsc_process_handle.hh47 virtual void call() = 0;
60 void call() override { (t->*func)(); }
H A Dsc_spawn.hh58 void call() override { t(); }
69 void call() override { *r = t(); }
/gem5/src/arch/arm/
H A Dsemihosting.cc158 const SemiCall *call = getCall(op, true); local
159 if (!call) {
160 warn("Unknown aarch64 semihosting call: op = 0x%x, param = 0x%x",
164 } else if (!call->implemented64()) {
165 warn("Unimplemented aarch64 semihosting call: "
167 call->name, op, param);
172 std::vector<uint64_t> argv(call->argc64 + 1);
176 DPRINTF(Semihosting, "Semihosting call64: %s(0x%x)\n", call->name, param);
178 for (int i = 0; i < call->argc64; ++i) {
183 auto ret_errno = (this->*call
193 const SemiCall *call = getCall(op, false); local
[all...]
H A Dsemihosting.hh74 /** Perform an Arm Semihosting call from aarch64 code. */
76 /** Perform an Arm Semihosting call from aarch32 code. */
90 * calculate the time of date when the guest call SYS_TIME.
276 * Semihosting call information structure.
278 * This structure describes how a semi-hosting call is
280 * the call), a pointer to the implementation, and information
289 * Pointer to call implementation
299 RetErrno (ArmSemihosting::*call)(ThreadContext *tc, bool aarch64, member in struct:ArmSemihosting::SemiCall
309 /** Is call implemented in aarch32? */
310 bool implemented32() const { return call
[all...]
/gem5/ext/systemc/src/sysc/qt/md/
H A DiX86_64.s59 call *%rax /* call function to save stack pointer. */
H A Dhppa.s37 ; arg0: ptr to function (helper) to call once curr is suspended
73 bl $$dyncall,%mrp ; call helper
156 bl $$dyncall,%mrp ; call `only'.
167 ; First, call `startup' with the `pt' argument.
169 ; Next, call the user's function with all arguments.
183 ; Finally, call `cleanup' with the `pt' argument and with the return value
197 ; call: void startup(void *pt)
207 ; call: void *qt_vuserf_t(...)
225 ; call: void cleanup(void *pt, void *vuserf_return)
/gem5/ext/pybind11/include/pybind11/
H A Dpybind11.h136 /* Dispatch code which converts function arguments and performs the actual function call */
137 rec->impl = [](function_call &call) -> handle {
141 if (!args_converter.load_args(call))
144 /* Invoke call policy pre-call hook */
145 process_attributes<Extra...>::precall(call);
148 auto data = (sizeof(capture) <= sizeof(call.func.data)
149 ? &call.func.data : call.func.data[0]);
153 return_value_policy policy = return_value_policy_override<Return>::policy(call
1625 keep_alive_impl(size_t Nurse, size_t Patient, function_call &call, handle ret) argument
[all...]
H A Dattr.h74 A call policy which places one or more guard variables (``Ts...``) around the function call.
119 inline void keep_alive_impl(size_t Nurse, size_t Patient, function_call &call, handle ret);
151 /// Pointer to lambda function which converts arguments and performs the actual call
298 * runtime to deal with custom call policies (e.g. keep_alive).
442 * Process a keep_alive call policy -- invokes keep_alive_impl during the
443 * pre-call handler if both Nurse, Patient != 0 and use the post-call handler
448 static void precall(function_call &call) { keep_alive_impl(Nurse, Patient, call, handl argument
454 postcall(function_call &call, handle ret) argument
467 precall(function_call &call) argument
471 postcall(function_call &call, handle fn_ret) argument
[all...]
H A Dcast.h1860 /// Internal data associated with a single function call
1880 /// If this is a call to an initializer, this argument contains `self`
1906 bool load_args(function_call &call) {
1907 return load_impl_sequence(call, indices{});
1911 enable_if_t<!std::is_void<Return>::value, Return> call(Func &&f) && {
1916 enable_if_t<std::is_void<Return>::value, void_type> call(Func &&f) && {
1926 bool load_impl_sequence(function_call &call, index_sequence<Is...>) {
1927 for (bool r : {std::get<Is>(argcasters).load(call.args[Is], call.args_convert[Is])...})
1941 /// Helper class which collects only positional arguments for a Python function call
[all...]
/gem5/tests/test-progs/asmtest/src/riscv/
H A Drun-tests.py122 job_outputs = job_pool.map(subprocess.call, job_cmds)
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h113 // call a mock function (either Foo() or a different one) at the same
146 // the action's result. The call description string will be used in
147 // the error message to describe the call in the case the default
161 // Writes a message that the call is uninteresting (i.e. neither
173 // is_excessive is modified to indicate whether the call exceeds the
425 // its entry in the call-reaction table should be removed.
499 // Expectation objects, and needs to call the non-const Retire()
709 // Describes how many times a function call matching this
1144 // is called only when the mock function call does NOT match the
1146 *os << "The call matche
[all...]
/gem5/ext/pybind11/tests/
H A Dtest_stl.cpp32 static auto call(Args &&...args) -> decltype(boost::apply_visitor(args...)) {
215 return py::detail::visit_helper<variant>::call(visitor(), v);
218 return py::detail::visit_helper<variant>::call(visitor(), v);
/gem5/configs/dram/
H A Dlat_mem_rd.py67 from subprocess import call
68 error = call(['protoc', '--python_out=configs/dram',
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-function-mockers_test.cc601 auto call = [](const std::function<int(int)> &f, int i) { local
606 EXPECT_EQ(-1, call(foo.AsStdFunction(), 1));
607 EXPECT_EQ(-2, call(foo.AsStdFunction(), 2));
/gem5/system/alpha/console/
H A Ddbmentry.S209 jsr SlaveCmd # call SlaveCmd

Completed in 45 milliseconds

123