annotate dmd/backend/con_t.d @ 114:e28b18c23469

added a module dmd.common for commonly used stuff it currently holds code for consistency checking of predefined versions also added a VisualD project file
author Trass3r
date Wed, 01 Sep 2010 18:21:58 +0200
parents 10317f0c89a5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
1 module dmd.backend.con_t;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
2
114
e28b18c23469 added a module dmd.common for commonly used stuff
Trass3r
parents: 0
diff changeset
3 import dmd.common;
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
4 import dmd.backend.cse_t;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
5 import dmd.backend.immed_t;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
6 import dmd.backend.regm_t;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
7
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
8 struct con_t
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
9 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
10 cse_t cse; // CSEs in registers
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
11 immed_t immed; // immediate values in registers
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
12 regm_t mvar; // mask of register variables
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
13 regm_t mpvar; // mask of SCfastpar register variables
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
14 regm_t indexregs; // !=0 if more than 1 uncommitted index register
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
15 regm_t used; // mask of registers used
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
16 regm_t params; // mask of registers which still contain register
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
17 // function parameters
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
18 }