@@ -52,278 +52,278 @@ public boolean isEnabled() {
52
52
@ Override
53
53
@ NeverInline ("Logging is always slow-path code" )
54
54
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
55
- public Log string (String value ) {
55
+ public DebugLog string (String value ) {
56
56
string0 (value );
57
57
return this ;
58
58
}
59
59
60
60
@ Override
61
61
@ NeverInline ("Logging is always slow-path code" )
62
62
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
63
- public Log string (String str , int fill , int align ) {
63
+ public DebugLog string (String str , int fill , int align ) {
64
64
string0 (str , fill , align );
65
65
return this ;
66
66
}
67
67
68
68
@ Override
69
69
@ NeverInline ("Logging is always slow-path code" )
70
70
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
71
- public Log string (String value , int maxLen ) {
71
+ public DebugLog string (String value , int maxLen ) {
72
72
string0 (value , maxLen );
73
73
return this ;
74
74
}
75
75
76
76
@ Override
77
77
@ NeverInline ("Logging is always slow-path code" )
78
78
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
79
- public Log string (char [] value ) {
79
+ public DebugLog string (char [] value ) {
80
80
string0 (value );
81
81
return this ;
82
82
}
83
83
84
84
@ Override
85
85
@ NeverInline ("Logging is always slow-path code" )
86
86
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
87
- public Log string (byte [] value ) {
87
+ public DebugLog string (byte [] value ) {
88
88
string0 (value );
89
89
return this ;
90
90
}
91
91
92
92
@ Override
93
93
@ NeverInline ("Logging is always slow-path code" )
94
94
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
95
- public Log string (byte [] value , int offset , int length ) {
95
+ public DebugLog string (byte [] value , int offset , int length ) {
96
96
string0 (value , offset , length );
97
97
return this ;
98
98
}
99
99
100
100
@ Override
101
101
@ NeverInline ("Logging is always slow-path code" )
102
102
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
103
- public Log string (CCharPointer value ) {
103
+ public DebugLog string (CCharPointer value ) {
104
104
string0 (value );
105
105
return this ;
106
106
}
107
107
108
108
@ Override
109
109
@ NeverInline ("Logging is always slow-path code" )
110
110
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
111
- public Log string (CCharPointer value , int length ) {
111
+ public DebugLog string (CCharPointer value , int length ) {
112
112
string0 (value , length );
113
113
return this ;
114
114
}
115
115
116
116
@ Override
117
117
@ NeverInline ("Logging is always slow-path code" )
118
118
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
119
- public Log character (char value ) {
119
+ public DebugLog character (char value ) {
120
120
character0 (value );
121
121
return this ;
122
122
}
123
123
124
124
@ Override
125
125
@ NeverInline ("Logging is always slow-path code" )
126
126
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
127
- public Log newline () {
127
+ public DebugLog newline () {
128
128
newline0 ();
129
129
return this ;
130
130
}
131
131
132
132
@ Override
133
133
@ NeverInline ("Logging is always slow-path code" )
134
134
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
135
- public Log number (long value , int radix , boolean signed ) {
135
+ public DebugLog number (long value , int radix , boolean signed ) {
136
136
number0 (value , radix , signed );
137
137
return this ;
138
138
}
139
139
140
140
@ Override
141
141
@ NeverInline ("Logging is always slow-path code" )
142
142
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
143
- public Log signed (WordBase value ) {
143
+ public DebugLog signed (WordBase value ) {
144
144
signed0 (value );
145
145
return this ;
146
146
}
147
147
148
148
@ Override
149
149
@ NeverInline ("Logging is always slow-path code" )
150
150
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
151
- public Log signed (int value ) {
151
+ public DebugLog signed (int value ) {
152
152
signed0 (value );
153
153
return this ;
154
154
}
155
155
156
156
@ Override
157
157
@ NeverInline ("Logging is always slow-path code" )
158
158
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
159
- public Log signed (long value ) {
159
+ public DebugLog signed (long value ) {
160
160
signed0 (value );
161
161
return this ;
162
162
}
163
163
164
164
@ Override
165
165
@ NeverInline ("Logging is always slow-path code" )
166
166
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
167
- public Log signed (long value , int fill , int align ) {
167
+ public DebugLog signed (long value , int fill , int align ) {
168
168
signed0 (value , fill , align );
169
169
return this ;
170
170
}
171
171
172
172
@ Override
173
173
@ NeverInline ("Logging is always slow-path code" )
174
174
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
175
- public Log unsigned (WordBase value ) {
175
+ public DebugLog unsigned (WordBase value ) {
176
176
unsigned0 (value );
177
177
return this ;
178
178
}
179
179
180
180
@ Override
181
181
@ NeverInline ("Logging is always slow-path code" )
182
182
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
183
- public Log unsigned (WordBase value , int fill , int align ) {
183
+ public DebugLog unsigned (WordBase value , int fill , int align ) {
184
184
unsigned0 (value , fill , align );
185
185
return this ;
186
186
}
187
187
188
188
@ Override
189
189
@ NeverInline ("Logging is always slow-path code" )
190
190
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
191
- public Log unsigned (int value ) {
191
+ public DebugLog unsigned (int value ) {
192
192
unsigned0 (value );
193
193
return this ;
194
194
}
195
195
196
196
@ Override
197
197
@ NeverInline ("Logging is always slow-path code" )
198
198
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
199
- public Log unsigned (long value ) {
199
+ public DebugLog unsigned (long value ) {
200
200
unsigned0 (value );
201
201
return this ;
202
202
}
203
203
204
204
@ Override
205
205
@ NeverInline ("Logging is always slow-path code" )
206
206
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
207
- public Log unsigned (long value , int fill , int align ) {
207
+ public DebugLog unsigned (long value , int fill , int align ) {
208
208
unsigned0 (value , fill , align );
209
209
return this ;
210
210
}
211
211
212
212
@ Override
213
213
@ NeverInline ("Logging is always slow-path code" )
214
214
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
215
- public Log rational (long numerator , long denominator , long decimals ) {
215
+ public DebugLog rational (long numerator , long denominator , long decimals ) {
216
216
rational0 (numerator , denominator , decimals );
217
217
return this ;
218
218
}
219
219
220
220
@ Override
221
221
@ NeverInline ("Logging is always slow-path code" )
222
222
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
223
- public Log rational (UnsignedWord numerator , long denominator , long decimals ) {
223
+ public DebugLog rational (UnsignedWord numerator , long denominator , long decimals ) {
224
224
rational0 (numerator , denominator , decimals );
225
225
return this ;
226
226
}
227
227
228
228
@ Override
229
229
@ NeverInline ("Logging is always slow-path code" )
230
230
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
231
- public Log hex (WordBase value ) {
231
+ public DebugLog hex (WordBase value ) {
232
232
hex0 (value );
233
233
return this ;
234
234
}
235
235
236
236
@ Override
237
237
@ NeverInline ("Logging is always slow-path code" )
238
238
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
239
- public Log hex (int value ) {
239
+ public DebugLog hex (int value ) {
240
240
hex0 (value );
241
241
return this ;
242
242
}
243
243
244
244
@ Override
245
245
@ NeverInline ("Logging is always slow-path code" )
246
246
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
247
- public Log hex (long value ) {
247
+ public DebugLog hex (long value ) {
248
248
hex0 (value );
249
249
return this ;
250
250
}
251
251
252
252
@ Override
253
253
@ NeverInline ("Logging is always slow-path code" )
254
254
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
255
- public Log zhex (WordBase value ) {
255
+ public DebugLog zhex (WordBase value ) {
256
256
zhex0 (value );
257
257
return this ;
258
258
}
259
259
260
260
@ Override
261
261
@ NeverInline ("Logging is always slow-path code" )
262
262
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
263
- public Log zhex (long value ) {
263
+ public DebugLog zhex (long value ) {
264
264
zhex0 (value );
265
265
return this ;
266
266
}
267
267
268
268
@ Override
269
269
@ NeverInline ("Logging is always slow-path code" )
270
270
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
271
- public Log zhex (int value ) {
271
+ public DebugLog zhex (int value ) {
272
272
zhex0 (value );
273
273
return this ;
274
274
}
275
275
276
276
@ Override
277
277
@ NeverInline ("Logging is always slow-path code" )
278
278
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
279
- public Log zhex (short value ) {
279
+ public DebugLog zhex (short value ) {
280
280
zhex0 (value );
281
281
return this ;
282
282
}
283
283
284
284
@ Override
285
285
@ NeverInline ("Logging is always slow-path code" )
286
286
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
287
- public Log zhex (byte value ) {
287
+ public DebugLog zhex (byte value ) {
288
288
zhex0 (value );
289
289
return this ;
290
290
}
291
291
292
292
@ Override
293
293
@ NeverInline ("Logging is always slow-path code" )
294
294
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
295
- public Log hexdump (PointerBase from , int wordSize , int numWords ) {
295
+ public DebugLog hexdump (PointerBase from , int wordSize , int numWords ) {
296
296
hexdump0 (from , wordSize , numWords );
297
297
return this ;
298
298
}
299
299
300
300
@ Override
301
301
@ NeverInline ("Logging is always slow-path code" )
302
302
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
303
- public Log hexdump (PointerBase from , int wordSize , int numWords , int bytesPerLine ) {
303
+ public DebugLog hexdump (PointerBase from , int wordSize , int numWords , int bytesPerLine ) {
304
304
hexdump0 (from , wordSize , numWords );
305
305
return this ;
306
306
}
307
307
308
308
@ Override
309
309
@ NeverInline ("Logging is always slow-path code" )
310
310
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
311
- public Log redent (boolean addOrRemove ) {
311
+ public DebugLog redent (boolean addOrRemove ) {
312
312
redent0 (addOrRemove );
313
313
return this ;
314
314
}
315
315
316
316
@ Override
317
317
@ NeverInline ("Logging is always slow-path code" )
318
318
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
319
- public Log indent (boolean addOrRemove ) {
319
+ public DebugLog indent (boolean addOrRemove ) {
320
320
indent0 (addOrRemove );
321
321
return this ;
322
322
}
323
323
324
324
@ Override
325
325
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE , mayBeInlined = true )
326
- public Log resetIndentation () {
326
+ public DebugLog resetIndentation () {
327
327
resetIndentation0 ();
328
328
return this ;
329
329
}
@@ -337,55 +337,55 @@ public int getIndentation() {
337
337
@ Override
338
338
@ NeverInline ("Logging is always slow-path code" )
339
339
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
340
- public Log bool (boolean value ) {
340
+ public DebugLog bool (boolean value ) {
341
341
bool0 (value );
342
342
return this ;
343
343
}
344
344
345
345
@ Override
346
346
@ NeverInline ("Logging is always slow-path code" )
347
347
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
348
- public Log object (Object value ) {
348
+ public DebugLog object (Object value ) {
349
349
object0 (value );
350
350
return this ;
351
351
}
352
352
353
353
@ Override
354
354
@ NeverInline ("Logging is always slow-path code" )
355
355
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
356
- public Log spaces (int value ) {
356
+ public DebugLog spaces (int value ) {
357
357
spaces0 (value );
358
358
return this ;
359
359
}
360
360
361
361
@ Override
362
362
@ NeverInline ("Logging is always slow-path code" )
363
363
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
364
- public Log exception (Throwable t ) {
364
+ public DebugLog exception (Throwable t ) {
365
365
exception0 (t );
366
366
return this ;
367
367
}
368
368
369
369
@ Override
370
370
@ NeverInline ("Logging is always slow-path code" )
371
371
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
372
- public Log exception (Throwable t , int maxFrames ) {
372
+ public DebugLog exception (Throwable t , int maxFrames ) {
373
373
exception0 (t , maxFrames );
374
374
return this ;
375
375
}
376
376
377
377
@ Override
378
378
@ NeverInline ("Logging is always slow-path code" )
379
379
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
380
- public Log flush () {
380
+ public DebugLog flush () {
381
381
ImageSingletons .lookup (StdErrWriter .class ).flush ();
382
382
return this ;
383
383
}
384
384
385
385
@ Override
386
386
@ NeverInline ("Logging is always slow-path code" )
387
387
@ Uninterruptible (reason = CALLED_FROM_UNINTERRUPTIBLE_CODE )
388
- protected Log rawBytes (CCharPointer bytes , UnsignedWord length ) {
388
+ protected DebugLog rawBytes (CCharPointer bytes , UnsignedWord length ) {
389
389
ImageSingletons .lookup (StdErrWriter .class ).log (bytes , length );
390
390
return this ;
391
391
}
0 commit comments