about summary refs log tree commit diff stats
path: root/003trace.test.cc
Commit message (Collapse)AuthorAgeFilesLines
* 3547Kartik K. Agaram2016-10-221-1/+0
|
* 3294Kartik K. Agaram2016-09-021-3/+3
|
* 3267Kartik K. Agaram2016-08-281-2/+0
|
* 2547Kartik K. Agaram2015-12-241-0/+6
|
* 2258 - separate warnings from errorsKartik K. Agaram2015-10-061-4/+4
| | | | | | | At the lowest level I'm reluctantly starting to see the need for errors that stop the program in its tracks. Only way to avoid memory corruption and security issues. But beyond that core I still want to be as lenient as possible at higher levels of abstraction.
* 1844 - explicitly end each trace lineKartik K. Agaram2015-07-251-17/+17
| | | | | | | | | More verbose, but it saves trouble when debugging; there's never something you thought should be traced but just never came out the other end. Also got rid of fatal errors entirely. Everything's a warning now, and code after a warning isn't guaranteed to run.
* 1669 - now it fails in the right placeKartik K. Agaram2015-06-271-0/+5
| | | | ..when building until layer 41
* 1414 - traces now robust to new recipes/typesKartik K. Agaram2015-05-211-0/+21
|
* 1413Kartik K. Agaram2015-05-211-39/+12
|
* 1412 - starting to clean up trace formatKartik K. Agaram2015-05-211-47/+0
| | | | | Many features of my trace layer were just inherited blindly from wart but lying unused in this project. Throw them out while we're at it.
* 1299 - stop using [] in any vectorKartik K. Agaram2015-05-071-10/+10
| | | | | | | | | Useful check: $ grep "[^ '\"]\[[^\"]" *.cc \ |perl -pwe 's/\Wargv\[|\WTests\[|\Wframe\[|\WMemory\[|\WName\[|\WSurrounding_space\[|\WRecipe\[|\WType\[|\WRecipe_number\[|\WType_number\[|\WBefore_fragments\[|\WAfter_fragments\[//g' \ |perl -pwe 's/\Wargv\[|\WTests\[|\Wframe\[|\WMemory\[|\WName\[|\WSurrounding_space\[|\WRecipe\[|\WType\[|\WRecipe_number\[|\WType_number\[|\WBefore_fragments\[|\WAfter_fragments\[//g' \ |grep '[^ ]\['
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+169
I've tried to update the Readme, but there are at least a couple of issues.
kkartik.com> 2020-06-06 15:55:03 -0700 committer Kartik Agaram <vc@akkartik.com> 2020-06-06 15:55:03 -0700 6498' href='/akkartik/mu/commit/subx_addressing_modes.md?h=hlt&id=e2e0f5cce7e6543dc43112034385ed29ff247032'>e2e0f5cc ^
01013f2a ^





































9e5e87ca ^

01013f2a ^













9a524793 ^






7817fdb2 ^






















9a524793 ^


7817fdb2 ^





9a524793 ^







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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172