blob: 1138270b391f4469c7d0605bec50643586f3622a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#ifndef ABSTRACT_HARDWARE_MODEL_INCLUDED
#define ABSTRACT_HARDWARE_MODEL_INCLUDED
#ifdef __cplusplus
class core_t {
public:
virtual ~core_t() {}
virtual void set_at_barrier( unsigned cta_id, unsigned warp_id ) = 0;
virtual void warp_exit( unsigned warp_id ) = 0;
virtual bool warp_waiting_at_barrier( unsigned warp_id ) = 0;
};
#endif
typedef unsigned address_type;
typedef unsigned addr_t;
// these are operations the timing model can see
#define NO_OP -1
#define ALU_OP 1000
#define LOAD_OP 2000
#define STORE_OP 3000
#define BRANCH_OP 4000
#define BARRIER_OP 5000
typedef enum _memory_space_t {
undefined_space=0,
reg_space,
local_space,
shared_space,
param_space_unclassified,
param_space_kernel, /* input parameters on kernel entry points */
param_space_local_r, /* device functions can read this : input parameters on device functions */
param_space_local_w, /* device functions can write this : used for return values and locally declared param memory */
const_space,
tex_space,
surf_space,
global_space,
generic_space
} memory_space_t;
#endif
|