coding style++, some TODOs added.

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1967 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
adrian
2012-12-05 12:27:17 +00:00
parent b052c0494b
commit 35753cd075
7 changed files with 23 additions and 32 deletions

View File

@ -1,5 +1,5 @@
#ifndef __CPU_HPP__
#define __CPU_HPP__
#define __CPU_HPP__
#include <cstring>
#include <vector>
@ -17,8 +17,7 @@ namespace fail {
* directly derived from this are especially meant to be usable in campaigns, so they shouldn't
* contain any backend specific code.
*/
class CPUArchitecture
{
class CPUArchitecture {
public:
/**
* Retrieves the total number of registers over all homogeneous sets.
@ -54,14 +53,12 @@ public:
* Returns the set with register type \a t. The set can be used to
* loop over all registers of type \a t.
* @param t the type to check for
* @return a pointer to the retrieved register set (if found), NULL
* otherwise
* @return a pointer to the retrieved register set (if found), \c NULL otherwise
*/
UniformRegisterSet* getRegisterSetOfType(RegisterType t) const;
protected:
std::vector< Register* > m_Registers;
std::vector< UniformRegisterSet* > m_RegisterSubsets;
std::vector<Register*> m_Registers;
std::vector<UniformRegisterSet*> m_RegisterSubsets;
};
} // end-of-namespace: fail