source: src/Common/SemanticError.h @ dcbb03b

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since dcbb03b was a16764a6, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Changed warning system to prepare for toggling warnings

  • Property mode set to 100644
File size: 2.2 KB
RevLine 
[51587aa]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[3906301]7// SemanticError.h --
[51587aa]8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
[9ed4f94]11// Last Modified By : Peter A. Buhr
12// Last Modified On : Tue Aug 29 22:03:36 2017
13// Update Count     : 17
[51587aa]14//
[51b7345]15
[6b0b624]16#pragma once
[51b7345]17
[a16764a6]18#include "ErrorObjects.h"
[294647b]19
[d55d7a6]20//-----------------------------------------------------------------------------
21// Errors
[138e29e]22
[a16764a6]23__attribute__((noreturn)) void SemanticError( CodeLocation location, std::string error );
[51b7345]24
25template< typename T >
[a16764a6]26__attribute__((noreturn)) static inline void SemanticError( const T * obj, const std::string & error ) {
27        SemanticError( obj->location, toString( error, obj ) );
28}
[d55d7a6]29
30template< typename T >
[a16764a6]31__attribute__((noreturn)) static inline void SemanticError( CodeLocation location, const T * obj, const std::string & error ) {
32        SemanticError( location, toString( error, obj ) );
33}
[d55d7a6]34
35//-----------------------------------------------------------------------------
36// Warnings
37
[a16764a6]38constexpr const char * const WarningFormats[] = {
[d55d7a6]39
[a16764a6]40};
[d55d7a6]41
[a16764a6]42enum class Warning {
43        NUMBER_OF_WARNINGS, //This MUST be the last warning
[d55d7a6]44};
45
[a16764a6]46static_assert(
47        (sizeof(WarningFormats) / sizeof(WarningFormats[0])) == ((unsigned long)Warning::NUMBER_OF_WARNINGS),
48        "Each warning format should have a corresponding warning enum value"
49);
50
51#define SemanticWarning(loc, id, ...) SemanticWarningImpl(loc, id, WarningFormats[id], __VA_ARGS__)
52
53void SemanticWarningImpl (CodeLocation loc, Warning warn, const char * const fmt, ...) __attribute__((format(printf, 3, 4)));
[d55d7a6]54
55
56//-----------------------------------------------------------------------------
57// Helpers
[a16764a6]58namespace ErrorHelpers {
59        const std::string & error_str();
60        const std::string & warning_str();
61        const std::string & bold_ttycode();
62        const std::string & reset_font_ttycode();
[d55d7a6]63
[a16764a6]64        std::string make_bold( const std::string & str );
[d55d7a6]65
[a16764a6]66        struct bold {};
67        std::ostream & operator<<(std::ostream & os, bold);
[d55d7a6]68
[a16764a6]69        struct reset_font {};
70        std::ostream & operator<<(std::ostream & os, reset_font);
[d55d7a6]71}
72
[a16764a6]73
74
[51b7345]75
[51587aa]76// Local Variables: //
77// tab-width: 4 //
78// mode: c++ //
79// compile-command: "make install" //
80// End: //
Note: See TracBrowser for help on using the repository browser.