syscall_emul: [patch 10/22] refactor fdentry and add fdarray class
authorBrandon Potter <brandon.potter@amd.com>
Wed, 9 Nov 2016 20:27:42 +0000 (14:27 -0600)
committerBrandon Potter <brandon.potter@amd.com>
Wed, 9 Nov 2016 20:27:42 +0000 (14:27 -0600)
commitd3d983caf94375b992940b017aeb4a73da28833c
tree7e6bf4226c9235ad187c0137c6518b3897b64752
parent6c41181b8e39e776ea2f018bf383fed2782c3d4a
syscall_emul: [patch 10/22] refactor fdentry and add fdarray class

Several large changes happen in this patch.

The FDEntry class is rewritten so that file descriptors now correspond to
types: 'File' which is normal file-backed file with the file open on the
host machine, 'Pipe' which is a pipe that has been opened on the host machine,
and 'Device' which does not have an open file on the host yet acts as a pseudo
device with which to issue ioctls. Other types which might be added in the
future are directory entries and sockets (off the top of my head).

The FDArray class was create to hold most of the file descriptor handling
that was stuffed into the Process class. It uses shared pointers and
the std::array type to hold the FDEntries mentioned above.

The changes to these two classes needed to be propagated out to the rest
of the code so there were quite a few changes for that. Also, comments were
added where I thought they were needed to help others and extend our
DOxygen coverage.
src/gpu-compute/cl_driver.cc
src/sim/SConscript
src/sim/fd_array.cc [new file with mode: 0644]
src/sim/fd_array.hh [new file with mode: 0644]
src/sim/fd_entry.cc
src/sim/fd_entry.hh
src/sim/process.cc
src/sim/process.hh
src/sim/syscall_emul.cc
src/sim/syscall_emul.hh