messages.hh revision 13322
17753SWilliam.Wang@arm.com/*
210839Sandreas.sandberg@arm.com * Copyright 2018 Google, Inc.
37753SWilliam.Wang@arm.com *
47753SWilliam.Wang@arm.com * Redistribution and use in source and binary forms, with or without
57753SWilliam.Wang@arm.com * modification, are permitted provided that the following conditions are
67753SWilliam.Wang@arm.com * met: redistributions of source code must retain the above copyright
77753SWilliam.Wang@arm.com * notice, this list of conditions and the following disclaimer;
87753SWilliam.Wang@arm.com * redistributions in binary form must reproduce the above copyright
97753SWilliam.Wang@arm.com * notice, this list of conditions and the following disclaimer in the
107753SWilliam.Wang@arm.com * documentation and/or other materials provided with the distribution;
117753SWilliam.Wang@arm.com * neither the name of the copyright holders nor the names of its
127753SWilliam.Wang@arm.com * contributors may be used to endorse or promote products derived from
137753SWilliam.Wang@arm.com * this software without specific prior written permission.
147753SWilliam.Wang@arm.com *
157753SWilliam.Wang@arm.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
167753SWilliam.Wang@arm.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
177753SWilliam.Wang@arm.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
187753SWilliam.Wang@arm.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
197753SWilliam.Wang@arm.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
207753SWilliam.Wang@arm.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
217753SWilliam.Wang@arm.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
227753SWilliam.Wang@arm.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
237753SWilliam.Wang@arm.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
247753SWilliam.Wang@arm.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
257753SWilliam.Wang@arm.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
267753SWilliam.Wang@arm.com *
277753SWilliam.Wang@arm.com * Authors: Gabe Black
287753SWilliam.Wang@arm.com */
297753SWilliam.Wang@arm.com
307753SWilliam.Wang@arm.com#ifndef __SYSTEMC_EXT_UTILS_MESSAGES_HH__
317753SWilliam.Wang@arm.com#define __SYSTEMC_EXT_UTILS_MESSAGES_HH__
327753SWilliam.Wang@arm.com
337753SWilliam.Wang@arm.comnamespace sc_core
347753SWilliam.Wang@arm.com{
357753SWilliam.Wang@arm.com
367753SWilliam.Wang@arm.comextern const char SC_ID_UNKNOWN_ERROR_[];
377753SWilliam.Wang@arm.comextern const char SC_ID_WITHOUT_MESSAGE_[];
387950SAli.Saidi@ARM.comextern const char SC_ID_NOT_IMPLEMENTED_[];
397753SWilliam.Wang@arm.comextern const char SC_ID_INTERNAL_ERROR_[];
407753SWilliam.Wang@arm.comextern const char SC_ID_ASSERTION_FAILED_[];
417753SWilliam.Wang@arm.comextern const char SC_ID_OUT_OF_BOUNDS_[];
427753SWilliam.Wang@arm.comextern const char SC_ID_ABORT_[];
437753SWilliam.Wang@arm.com
447753SWilliam.Wang@arm.comextern const char SC_ID_REGISTER_ID_FAILED_[];
457753SWilliam.Wang@arm.comextern const char SC_ID_STRING_TOO_LONG_[];
467753SWilliam.Wang@arm.comextern const char SC_ID_FRONT_ON_EMPTY_LIST_[];
477753SWilliam.Wang@arm.comextern const char SC_ID_BACK_ON_EMPTY_LIST_[];
487753SWilliam.Wang@arm.comextern const char SC_ID_IEEE_1666_DEPRECATION_[];
497753SWilliam.Wang@arm.comextern const char SC_ID_VECTOR_INIT_CALLED_TWICE_[];
5010839Sandreas.sandberg@arm.comextern const char SC_ID_VECTOR_BIND_EMPTY_[];
517753SWilliam.Wang@arm.comextern const char SC_ID_VECTOR_NONOBJECT_ELEMENTS_[];
5210839Sandreas.sandberg@arm.com
5310839Sandreas.sandberg@arm.com} // namespace sc_core
547753SWilliam.Wang@arm.com
557753SWilliam.Wang@arm.com#endif // __SYSTEMC_EXT_UTILS_MESSAGES_HH__
567753SWilliam.Wang@arm.com