-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsc_time.cpp
527 lines (434 loc) · 15.1 KB
/
sc_time.cpp
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
/*****************************************************************************
Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
more contributor license agreements. See the NOTICE file distributed
with this work for additional information regarding copyright ownership.
Accellera licenses this file to you under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with the
License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied. See the License for the specific language governing
permissions and limitations under the License.
*****************************************************************************/
/*****************************************************************************
sc_time.cpp --
Original Author: Martin Janssen, Synopsys, Inc., 2001-05-21
CHANGE LOG AT THE END OF THE FILE
*****************************************************************************/
#include "sysc/kernel/sc_time.h"
#include "sysc/kernel/sc_kernel_ids.h"
#include "sysc/kernel/sc_simcontext.h"
#include "sysc/utils/sc_utils_ids.h"
#include <cctype>
#include <cmath>
#include <cstdlib>
#include <cstring>
#include <sstream>
#include <regex>
#include <string>
#include <algorithm>
namespace sc_core {
static
const double time_values[] = {
1e24, // s
1e21, // ms
1e18, // us
1e15, // ns
1e12, // ps
1e9, // fs
1e6, // as
1e3, // zs
1 // ys
};
static
const char* time_units[] = {
"s",
"ms",
"us",
"ns",
"ps",
"fs",
"as",
"zs",
"ys"
};
// ----------------------------------------------------------------------------
// CLASS : sc_time_tuple
//
// The time tuple helper class.
// ----------------------------------------------------------------------------
void
sc_time_tuple::init( value_type val )
{
sc_time_params* time_params = sc_get_curr_simcontext()->m_time_params;
time_params->time_resolution_fixed = true;
value_type tr = static_cast<sc_dt::int64>( time_params->time_resolution );
unsigned scale = 0;
while( ( tr % 10 ) == 0 ) {
tr /= 10;
scale++;
}
sc_assert( tr == 1 );
unsigned tu_max = sizeof(time_units) / sizeof(time_units[0])-1;
unsigned tu = tu_max - (scale / 3);
while( tu > 0 && ( val % 10 ) == 0 ) {
val /= 10;
scale++;
tu -= ( 0 == ( scale % 3 ) );
}
m_value = val;
m_unit = static_cast<sc_time_unit>( 5-tu ); // sc_time_unit constants have offset of 5
m_offset = 1;
for( scale %= 3; scale != 0 ; scale-- )
m_offset *= 10;
}
bool
sc_time_tuple::has_value() const
{
return ( m_value < ( (~sc_dt::UINT64_ZERO) / m_offset ) );
}
sc_time::value_type
sc_time_tuple::value() const
{
if( !has_value() )
SC_REPORT_ERROR( SC_ID_TIME_CONVERSION_FAILED_,
"sc_time_tuple value overflow" );
return m_value * m_offset;
}
const char *
sc_time_tuple::unit_symbol() const
{
return time_units[5-m_unit]; // sc_time_unit constants have offset of 5
}
std::string
sc_time_tuple::to_string() const
{
std::ostringstream oss;
if ( !m_value ) {
oss << "0 s";
} else {
oss << m_value;
for( unsigned zeros = m_offset; zeros > 1; zeros /= 10 ) {
oss << '0';
}
oss << ' ' << time_units[5-m_unit]; // sc_time_unit constants have offset of 5
}
return oss.str();
}
// helper functions
namespace /* anonymous */ {
static sc_time::value_type
from_value_and_unit( double v, sc_time_unit tu, sc_time_params* tp )
{
sc_time::value_type t = 0;
if( v != 0 ) {
double scale_fac = time_values[5-tu] / tp->time_resolution; // sc_time_unit constants have offset of 5
// linux bug workaround; don't change next two lines
volatile double tmp = v * scale_fac + 0.5;
t = static_cast<sc_dt::int64>( tmp );
tp->time_resolution_fixed = true;
}
return t;
}
static sc_time::value_type
sc_time_from_string( const std::string& str, sc_time_params* tp )
{
std::regex reg("^(\\d+(?:\\.\\d+)?)((?:[e,E][\\-,\\+]?\\d+)?)\\s?([f,p,n,u,m]?)(s?)$");
// regex capturing groups
// (0) full string
// (1) value (mandatory)
// (2) exponent (optional)
// (3) scale (optional)
// (4) unit (optional)
std::smatch match;
if( !std::regex_search(str, match, reg) ) {
SC_REPORT_ERROR( SC_ID_TIME_CONVERSION_FAILED_, "invalid value given" );
return 0;
}
char* endptr = NULL;
std::string sval = match.str(1) + match.str(2);
double val = std::strtod(sval.c_str(), &endptr );
std::string unit_str = match.str(3) + match.str(4);
if( match.str(4).empty() )
unit_str += "s";
unsigned time_units_idx = 0; // first element in time_units
unsigned tu_max = sizeof(time_units) / sizeof(time_units[0])-1;
while( time_units_idx <= tu_max
&& std::strcmp( unit_str.c_str(), time_units[time_units_idx] ) != 0 )
{ ++time_units_idx; }
return from_value_and_unit(val, static_cast<sc_time_unit>(5-time_units_idx), tp ); // sc_time_unit constants have offset of 5
}
} /* anonymous namespace */
// ----------------------------------------------------------------------------
// CLASS : sc_time
//
// The time class.
// ----------------------------------------------------------------------------
// constructors
sc_time::sc_time( double v, sc_time_unit tu )
: m_value
( from_value_and_unit( v, tu, sc_get_curr_simcontext()->m_time_params ) )
{}
sc_time::sc_time( double v, sc_time_unit tu, sc_simcontext* simc )
: m_value( from_value_and_unit( v, tu, simc->m_time_params ) )
{}
sc_time::sc_time( double v, bool scale )
: m_value( 0 )
{
static bool warn_constructor=true;
if ( warn_constructor ) {
warn_constructor=false;
SC_REPORT_INFO(SC_ID_IEEE_1666_DEPRECATION_,
"deprecated constructor: sc_time(double,bool)");
}
if( v != 0 ) {
sc_time_params* time_params = sc_get_curr_simcontext()->m_time_params;
if( scale ) {
double scale_fac = sc_dt::uint64_to_double( time_params->default_time_unit );
// linux bug workaround; don't change next two lines
volatile double tmp = v * scale_fac + 0.5;
m_value = static_cast<sc_dt::int64>( tmp );
} else {
// linux bug workaround; don't change next two lines
volatile double tmp = v + 0.5;
m_value = static_cast<sc_dt::int64>( tmp );
}
time_params->time_resolution_fixed = true;
}
}
sc_time::sc_time( value_type v, bool scale )
: m_value( 0 )
{
static bool warn_constructor=true;
if ( warn_constructor ) {
warn_constructor=false;
SC_REPORT_INFO(SC_ID_IEEE_1666_DEPRECATION_,
"deprecated constructor: sc_time(uint64,bool)");
}
if( v != 0 ) {
sc_time_params* time_params = sc_get_curr_simcontext()->m_time_params;
if( scale ) {
double scale_fac = sc_dt::uint64_to_double(
time_params->default_time_unit );
// linux bug workaround; don't change next two lines
volatile double tmp = sc_dt::uint64_to_double( v ) * scale_fac + 0.5;
m_value = static_cast<sc_dt::int64>( tmp );
} else {
m_value = v;
}
time_params->time_resolution_fixed = true;
}
}
sc_time::sc_time( std::string_view strv )
: m_value( sc_time_from_string(strv.data(), sc_get_curr_simcontext()->m_time_params) )
{}
sc_time
sc_time::from_string( std::string_view strv )
{
return from_value( sc_time_from_string(strv.data(), sc_get_curr_simcontext()->m_time_params) );
}
sc_time
sc_time::from_value( value_type v )
{
sc_time t;
if( v != 0 && v != ~sc_dt::UINT64_ZERO ) {
sc_time_params* time_params = sc_get_curr_simcontext()->m_time_params;
time_params->time_resolution_fixed = true;
}
t.m_value = v;
return t;
}
// conversion functions
double
sc_time::to_default_time_units() const
{
sc_time_params* time_params = sc_get_curr_simcontext()->m_time_params;
if( m_value == 0 )
return 0.0;
time_params->time_resolution_fixed = true;
return ( sc_dt::uint64_to_double( m_value ) /
sc_dt::uint64_to_double( time_params->default_time_unit ) );
}
double
sc_time::to_seconds() const
{
sc_time_params* time_params = sc_get_curr_simcontext()->m_time_params;
if( m_value == 0 )
return 0.0;
time_params->time_resolution_fixed = true;
return ( sc_dt::uint64_to_double( m_value ) *
( time_params->time_resolution / time_values[0] ) );
}
// print function
void
sc_time::print( ::std::ostream& os ) const
{
os << to_string();
}
// ----------------------------------------------------------------------------
// STRUCT : sc_time_params
//
// Struct that holds the time resolution and default time unit.
// ----------------------------------------------------------------------------
sc_time_params::sc_time_params()
: time_resolution( time_values[4] ), // default 1 ps
time_resolution_specified( false ),
time_resolution_fixed( false ),
default_time_unit( 1000 ), // default 1 ns
default_time_unit_specified( false )
{}
sc_time_params::~sc_time_params()
{}
// ----------------------------------------------------------------------------
// functions for accessing the time resolution and default time unit
void
sc_set_time_resolution( double v, sc_time_unit tu )
{
// first perform the necessary checks
// must be positive
if( v < 0.0 ) {
SC_REPORT_ERROR( SC_ID_SET_TIME_RESOLUTION_, "value not positive" );
}
// must be a power of ten
if( double dummy; modf( log10( v ), &dummy ) != 0.0 ) {
SC_REPORT_ERROR( SC_ID_SET_TIME_RESOLUTION_, "value not a power of ten" );
}
sc_simcontext* simc = sc_get_curr_simcontext();
// can only be specified during elaboration
if( sc_is_running() ) {
SC_REPORT_ERROR( SC_ID_SET_TIME_RESOLUTION_, "simulation running" );
}
sc_time_params* time_params = simc->m_time_params;
// can be specified only once
if( time_params->time_resolution_specified ) {
SC_REPORT_ERROR( SC_ID_SET_TIME_RESOLUTION_, "already specified" );
}
// can only be specified before any sc_time is constructed
if( time_params->time_resolution_fixed ) {
SC_REPORT_ERROR( SC_ID_SET_TIME_RESOLUTION_, "sc_time object(s) constructed" );
}
// must be larger than or equal to 1 fs
volatile double resolution = v * time_values[5-tu]; // sc_time_unit constants have offset of 5
if( resolution < 1.0 ) {
SC_REPORT_ERROR( SC_ID_SET_TIME_RESOLUTION_, "value smaller than 1 ys" );
}
// recalculate the default time unit
volatile double time_unit = sc_dt::uint64_to_double( time_params->default_time_unit )
* ( time_params->time_resolution / resolution );
if( time_unit < 1.0 ) {
SC_REPORT_WARNING( SC_ID_DEFAULT_TIME_UNIT_CHANGED_, 0 );
time_params->default_time_unit = 1;
} else {
time_params->default_time_unit = static_cast<sc_dt::int64>( time_unit );
}
time_params->time_resolution = resolution;
time_params->time_resolution_specified = true;
}
sc_time
sc_get_time_resolution()
{
return sc_time::from_value( sc_dt::UINT64_ONE );
}
void
sc_set_default_time_unit( double v, sc_time_unit tu )
{
static bool warn_default_time_unit=true;
if ( warn_default_time_unit )
{
warn_default_time_unit=false;
SC_REPORT_INFO( SC_ID_IEEE_1666_DEPRECATION_,
"deprecated function: sc_set_default_time_unit");
}
// first perform the necessary checks
// must be positive
if( v < 0.0 ) {
SC_REPORT_ERROR( SC_ID_SET_DEFAULT_TIME_UNIT_, "value not positive" );
}
// must be a power of ten
double dummy;
if( modf( log10( v ), &dummy ) != 0.0 ) {
SC_REPORT_ERROR( SC_ID_SET_DEFAULT_TIME_UNIT_,
"value not a power of ten" );
}
sc_simcontext* simc = sc_get_curr_simcontext();
// can only be specified during elaboration
if( sc_is_running() ) {
SC_REPORT_ERROR( SC_ID_SET_DEFAULT_TIME_UNIT_, "simulation running" );
}
sc_time_params* time_params = simc->m_time_params;
// can only be specified before any sc_time is constructed
if( time_params->time_resolution_fixed ) {
SC_REPORT_ERROR( SC_ID_SET_DEFAULT_TIME_UNIT_,
"sc_time object(s) constructed" );
}
// can be specified only once
if( time_params->default_time_unit_specified ) {
SC_REPORT_ERROR( SC_ID_SET_DEFAULT_TIME_UNIT_, "already specified" );
}
// must be larger than or equal to the time resolution
// sc_time_unit constants have offset of 5
volatile double time_unit = ( v * time_values[5-tu] ) /
time_params->time_resolution;
if( time_unit < 1.0 ) {
SC_REPORT_ERROR( SC_ID_SET_DEFAULT_TIME_UNIT_,
"value smaller than time resolution" );
}
time_params->default_time_unit = static_cast<sc_dt::int64>( time_unit );
time_params->default_time_unit_specified = true;
}
sc_time
sc_get_default_time_unit()
{
static bool warn_get_default_time_unit = true;
if ( warn_get_default_time_unit )
{
warn_get_default_time_unit=false;
SC_REPORT_INFO(SC_ID_IEEE_1666_DEPRECATION_,
"deprecated function: sc_get_default_time_unit");
}
auto time_unit = sc_get_curr_simcontext()->m_time_params->default_time_unit;
return sc_time::from_value( time_unit );
}
// ----------------------------------------------------------------------------
const sc_time SC_ZERO_TIME;
} // namespace sc_core
// $Log: sc_time.cpp,v $
// Revision 1.7 2011/08/26 20:46:11 acg
// Andy Goodrich: moved the modification log to the end of the file to
// eliminate source line number skew when check-ins are done.
//
// Revision 1.6 2011/07/24 16:08:36 acg
// Philipp A. Hartmann: fix C99 format specifiers for Solaris.
//
// Revision 1.5 2011/02/18 20:27:14 acg
// Andy Goodrich: Updated Copyrights.
//
// Revision 1.4 2011/02/13 21:47:38 acg
// Andy Goodrich: update copyright notice.
//
// Revision 1.3 2011/01/19 23:21:50 acg
// Andy Goodrich: changes for IEEE 1666 2011
//
// Revision 1.2 2008/05/22 17:06:27 acg
// Andy Goodrich: updated copyright notice to include 2008.
//
// Revision 1.1.1.1 2006/12/15 20:20:05 acg
// SystemC 2.3
//
// Revision 1.6 2006/01/26 21:04:55 acg
// Andy Goodrich: deprecation message changes and additional messages.
//
// Revision 1.5 2006/01/25 00:31:19 acg
// Andy Goodrich: Changed over to use a standard message id of
// SC_ID_IEEE_1666_DEPRECATION for all deprecation messages.
//
// Revision 1.4 2006/01/24 20:49:05 acg
// Andy Goodrich: changes to remove the use of deprecated features within the
// simulator, and to issue warning messages when deprecated features are used.
//
// Revision 1.3 2006/01/13 18:44:30 acg
// Added $Log to record CVS changes into the source.
//
// Taf!