112027Sjungma@eit.uni-kl.de/*****************************************************************************
212027Sjungma@eit.uni-kl.de
312027Sjungma@eit.uni-kl.de  Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
412027Sjungma@eit.uni-kl.de  more contributor license agreements.  See the NOTICE file distributed
512027Sjungma@eit.uni-kl.de  with this work for additional information regarding copyright ownership.
612027Sjungma@eit.uni-kl.de  Accellera licenses this file to you under the Apache License, Version 2.0
712027Sjungma@eit.uni-kl.de  (the "License"); you may not use this file except in compliance with the
812027Sjungma@eit.uni-kl.de  License.  You may obtain a copy of the License at
912027Sjungma@eit.uni-kl.de
1012027Sjungma@eit.uni-kl.de    http://www.apache.org/licenses/LICENSE-2.0
1112027Sjungma@eit.uni-kl.de
1212027Sjungma@eit.uni-kl.de  Unless required by applicable law or agreed to in writing, software
1312027Sjungma@eit.uni-kl.de  distributed under the License is distributed on an "AS IS" BASIS,
1412027Sjungma@eit.uni-kl.de  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1512027Sjungma@eit.uni-kl.de  implied.  See the License for the specific language governing
1612027Sjungma@eit.uni-kl.de  permissions and limitations under the License.
1712027Sjungma@eit.uni-kl.de
1812027Sjungma@eit.uni-kl.de *****************************************************************************/
1912027Sjungma@eit.uni-kl.de
2012027Sjungma@eit.uni-kl.de/*****************************************************************************
2112027Sjungma@eit.uni-kl.de
2212027Sjungma@eit.uni-kl.de  sc_tracing_ids.h -- Report ids for the tracing code.
2312027Sjungma@eit.uni-kl.de
2412027Sjungma@eit.uni-kl.de  Original Author: Philipp A. Hartmann, OFFIS, 2013-11-17
2512027Sjungma@eit.uni-kl.de
2612027Sjungma@eit.uni-kl.de  CHANGE LOG AT END OF FILE
2712027Sjungma@eit.uni-kl.de *****************************************************************************/
2812027Sjungma@eit.uni-kl.de
2912027Sjungma@eit.uni-kl.de#ifndef SC_TRACING_IDS_H
3012027Sjungma@eit.uni-kl.de#define SC_TRACING_IDS_H
3112027Sjungma@eit.uni-kl.de
3212027Sjungma@eit.uni-kl.de// ----------------------------------------------------------------------------
3312027Sjungma@eit.uni-kl.de//  Report ids (tracing)
3412027Sjungma@eit.uni-kl.de//
3512027Sjungma@eit.uni-kl.de//  Report ids in the range of 700-799.
3612027Sjungma@eit.uni-kl.de// ----------------------------------------------------------------------------
3712027Sjungma@eit.uni-kl.de
3812027Sjungma@eit.uni-kl.de#ifndef SC_DEFINE_MESSAGE
3912027Sjungma@eit.uni-kl.de#define SC_DEFINE_MESSAGE(id,unused1,unused2) \
4012027Sjungma@eit.uni-kl.de    namespace sc_core { extern const char id[]; }
4112027Sjungma@eit.uni-kl.de#endif
4212027Sjungma@eit.uni-kl.de
4312027Sjungma@eit.uni-kl.deSC_DEFINE_MESSAGE( SC_ID_TRACING_FOPEN_FAILED_,         701,
4412027Sjungma@eit.uni-kl.de                   "cannot open tracefile for writing" )
4512027Sjungma@eit.uni-kl.de
4612027Sjungma@eit.uni-kl.deSC_DEFINE_MESSAGE( SC_ID_TRACING_TIMESCALE_DEFAULT_,    702,
4712027Sjungma@eit.uni-kl.de                  "default timescale unit used for tracing" )
4812027Sjungma@eit.uni-kl.deSC_DEFINE_MESSAGE( SC_ID_TRACING_TIMESCALE_UNIT_,       703,
4912027Sjungma@eit.uni-kl.de                   "tracing timescale unit set" )
5012027Sjungma@eit.uni-kl.deSC_DEFINE_MESSAGE( SC_ID_TRACING_VCD_DELTA_CYCLE_,      704,
5112027Sjungma@eit.uni-kl.de   "VCD delta cycle tracing with pseudo timesteps (1 unit)" )
5212027Sjungma@eit.uni-kl.de/* unused IDs 705-709 */
5312027Sjungma@eit.uni-kl.deSC_DEFINE_MESSAGE( SC_ID_TRACING_OBJECT_IGNORED_,       710,
5412027Sjungma@eit.uni-kl.de                   "object cannot not be traced" )
5512027Sjungma@eit.uni-kl.deSC_DEFINE_MESSAGE( SC_ID_TRACING_OBJECT_NAME_FILTERED_, 711,
5612027Sjungma@eit.uni-kl.de                   "traced object name filtered" )
5712027Sjungma@eit.uni-kl.deSC_DEFINE_MESSAGE( SC_ID_TRACING_INVALID_ENUM_VALUE_,   712,
5812027Sjungma@eit.uni-kl.de                "traced value of enumerated type undefined" )
5912027Sjungma@eit.uni-kl.deSC_DEFINE_MESSAGE( SC_ID_TRACING_VCD_DUPLICATE_TIME_,   713,
6012027Sjungma@eit.uni-kl.de  "multiple VCD tracing cycles with the same time detected" )
6112027Sjungma@eit.uni-kl.deSC_DEFINE_MESSAGE( SC_ID_TRACING_VCD_REVERSED_TIME_,    714,
6212027Sjungma@eit.uni-kl.de             "VCD tracing cycle with falling time detected" )
6312027Sjungma@eit.uni-kl.de/* unused IDs 715-719 */
6412027Sjungma@eit.uni-kl.deSC_DEFINE_MESSAGE( SC_ID_TRACING_ALREADY_INITIALIZED_,  720,
6512027Sjungma@eit.uni-kl.de                   "sc_trace_file already initialized" )
6612027Sjungma@eit.uni-kl.de
6712027Sjungma@eit.uni-kl.de
6812027Sjungma@eit.uni-kl.de/*****************************************************************************
6912027Sjungma@eit.uni-kl.de
7012027Sjungma@eit.uni-kl.de  MODIFICATION LOG - modifiers, enter your name, affiliation, date and
7112027Sjungma@eit.uni-kl.de  changes you are making here.
7212027Sjungma@eit.uni-kl.de
7312027Sjungma@eit.uni-kl.de      Name, Affiliation, Date:
7412027Sjungma@eit.uni-kl.de  Description of Modification:
7512027Sjungma@eit.uni-kl.de
7612027Sjungma@eit.uni-kl.de *****************************************************************************/
7712027Sjungma@eit.uni-kl.de
7812027Sjungma@eit.uni-kl.de#endif // SC_TRACING_IDS_H
7912027Sjungma@eit.uni-kl.de// Taf!
80