about summary refs log tree commit diff stats
path: root/cpp/018record
Commit message (Collapse)AuthorAgeFilesLines
* 988 - those replace{} directives were a bad ideaKartik K. Agaram2015-03-271-5/+7
|
* 983 - arc 'integer-array' => c++ 'array:integer'Kartik K. Agaram2015-03-261-3/+3
|
* 982Kartik K. Agaram2015-03-261-47/+54
|
* 979Kartik K. Agaram2015-03-261-9/+3
|
* 978Kartik K. Agaram2015-03-261-0/+20
|
* 973Kartik K. Agaram2015-03-261-4/+2
|
* 971Kartik K. Agaram2015-03-251-3/+8
|
* 969Kartik K. Agaram2015-03-241-1/+1
|
* 968Kartik K. Agaram2015-03-241-5/+5
|
* 966 - c++: starting on default-spaceKartik K. Agaram2015-03-211-1/+1
|
* 961 - done converting names?Kartik K. Agaram2015-03-201-0/+2
| | | | | | | | | | | I'm making two changes to how I compute field offsets: a) I just replace offset names up front, before I even manage field names. I don't bother disallowing x:integer and x:offset in the same function. Let's see if that leads us astray. Certainly saves code. b) I don't bother canonizing the first arg of a get since we know it has to have a type that is some number of 'address' followed by a record. Just assume that we have the right number of 'deref's.
* 953 - bugfix in intermediate layerKartik K. Agaram2015-03-181-4/+2
|
* 949 - paving the way for jumps to labelsKartik K. Agaram2015-03-171-4/+5
| | | | Addresses for reagents are now computed after all transforms.
* 945 - move 'transform' layer to before 'run'Kartik K. Agaram2015-03-171-0/+142
ref='#n4'>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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123