sc_lv_base.cc (12854:c95c35407325) sc_lv_base.cc (13138:31951157e41e)
1/*****************************************************************************
2
3 Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
4 more contributor license agreements. See the NOTICE file distributed
5 with this work for additional information regarding copyright ownership.
6 Accellera licenses this file to you under the Apache License, Version 2.0
7 (the "License"); you may not use this file except in compliance with the
8 License. You may obtain a copy of the License at

--- 53 unchanged lines hidden (view full) ---

62void
63sc_proxy_out_of_bounds(const char *msg, int64 val)
64{
65 std::stringstream ss;
66 if (msg != NULL)
67 ss << msg;
68 if (val != 0)
69 ss << val;
1/*****************************************************************************
2
3 Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
4 more contributor license agreements. See the NOTICE file distributed
5 with this work for additional information regarding copyright ownership.
6 Accellera licenses this file to you under the Apache License, Version 2.0
7 (the "License"); you may not use this file except in compliance with the
8 License. You may obtain a copy of the License at

--- 53 unchanged lines hidden (view full) ---

62void
63sc_proxy_out_of_bounds(const char *msg, int64 val)
64{
65 std::stringstream ss;
66 if (msg != NULL)
67 ss << msg;
68 if (val != 0)
69 ss << val;
70 SC_REPORT_ERROR("out of bounds", ss.str().c_str());
70 SC_REPORT_ERROR("(E5) out of bounds", ss.str().c_str());
71}
72
73// ----------------------------------------------------------------------------
74// CLASS : sc_lv_base
75//
76// Arbitrary size logic vector base class.
77// ----------------------------------------------------------------------------
78

--- 102 unchanged lines hidden ---
71}
72
73// ----------------------------------------------------------------------------
74// CLASS : sc_lv_base
75//
76// Arbitrary size logic vector base class.
77// ----------------------------------------------------------------------------
78

--- 102 unchanged lines hidden ---