source: src/Common/SemanticError.h@ 82a90d4

ADT ast-experimental
Last change on this file since 82a90d4 was b6ae4fb, checked in by Peter A. Buhr <pabuhr@…>, 3 years ago

add SuperfluousElse warning, allow empty vararg to macro SemanticWarning

  • Property mode set to 100644
File size: 4.0 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//
[af39199d]9// Author : Thierry Delisle
[51587aa]10// Created On : Mon May 18 07:44:20 2015
[9ed4f94]11// Last Modified By : Peter A. Buhr
[b6ae4fb]12// Last Modified On : Wed May 4 14:08:26 2022
13// Update Count : 35
[51587aa]14//
[51b73452]15
[6b0b624]16#pragma once
[51b73452]17
[a16764a6]18#include "ErrorObjects.h"
[77bfc80]19#include "AST/Node.hpp"
[af39199d]20#include <cstring>
[294647b]21
[d55d7a6]22//-----------------------------------------------------------------------------
23// Errors
[138e29e]24
[4358c1e]25extern bool SemanticErrorThrow;
26
[a16764a6]27__attribute__((noreturn)) void SemanticError( CodeLocation location, std::string error );
[51b73452]28
29template< typename T >
[a16764a6]30__attribute__((noreturn)) static inline void SemanticError( const T * obj, const std::string & error ) {
31 SemanticError( obj->location, toString( error, obj ) );
32}
[d55d7a6]33
34template< typename T >
[a16764a6]35__attribute__((noreturn)) static inline void SemanticError( CodeLocation location, const T * obj, const std::string & error ) {
36 SemanticError( location, toString( error, obj ) );
37}
[d55d7a6]38
39//-----------------------------------------------------------------------------
40// Warnings
41
[6040e67d]42enum class Severity {
43 Suppress,
44 Warn,
45 Error,
46 Critical
47};
48
49struct WarningData {
50 const char * const name;
[68e9ace]51 const Severity default_severity;
[98538288]52 const char * const message;
[6040e67d]53};
54
[44bca7f]55constexpr WarningData WarningFormats[] = {
[98538288]56 {"self-assign" , Severity::Warn , "self assignment of expression: %s" },
57 {"reference-conversion" , Severity::Warn , "rvalue to reference conversion of rvalue: %s" },
58 {"qualifiers-zero_t-one_t", Severity::Warn , "questionable use of type qualifier %s with %s" },
59 {"aggregate-forward-decl" , Severity::Warn , "forward declaration of nested aggregate: %s" },
60 {"superfluous-decl" , Severity::Warn , "declaration does not allocate storage: %s" },
[b6ae4fb]61 {"superfluous-else" , Severity::Warn , "else clause never executed for empty loop conditional" },
[98538288]62 {"gcc-attributes" , Severity::Warn , "invalid attribute: %s" },
63 {"c++-like-copy" , Severity::Warn , "Constructor from reference is not a valid copy constructor" },
[a16764a6]64};
[d55d7a6]65
[a16764a6]66enum class Warning {
[babeeda]67 SelfAssignment,
[ec6c040]68 RvalueToReferenceConversion,
[9dc31c10]69 BadQualifiersZeroOne,
[2e02851]70 AggrForwardDecl,
[679e644]71 SuperfluousDecl,
[b6ae4fb]72 SuperfluousElse,
[fd2debf]73 GccAttributes,
[98538288]74 CppCopy,
[679e644]75 NUMBER_OF_WARNINGS, // This MUST be the last warning
[d55d7a6]76};
77
[a16764a6]78static_assert(
79 (sizeof(WarningFormats) / sizeof(WarningFormats[0])) == ((unsigned long)Warning::NUMBER_OF_WARNINGS),
80 "Each warning format should have a corresponding warning enum value"
81);
82
[b6ae4fb]83#define SemanticWarning(loc, id, ...) SemanticWarningImpl(loc, id, WarningFormats[(int)id].message, ##__VA_ARGS__)
[a16764a6]84
85void SemanticWarningImpl (CodeLocation loc, Warning warn, const char * const fmt, ...) __attribute__((format(printf, 3, 4)));
[d55d7a6]86
[68e9ace]87void SemanticWarning_SuppressAll ();
88void SemanticWarning_EnableAll ();
89void SemanticWarning_WarningAsError();
90void SemanticWarning_Set (const char * const name, Severity s);
[d55d7a6]91
[af39199d]92// SKULLDUGGERY: cfa.cc is built before SemanticError.cc but needs this routine.
93static inline bool SemanticWarning_Exist(const char * const name) {
94 for ( const auto & w : WarningFormats ) {
95 if ( std::strcmp( name, w.name ) == 0 ) return true;
96 }
97 return false;
98}
99
[d55d7a6]100//-----------------------------------------------------------------------------
101// Helpers
[a16764a6]102namespace ErrorHelpers {
[1a69a90]103 enum class Colors {
104 Never = false,
105 Always = true,
106 Auto,
107 };
108
109 extern Colors colors;
110
[a16764a6]111 const std::string & error_str();
112 const std::string & warning_str();
113 const std::string & bold_ttycode();
114 const std::string & reset_font_ttycode();
[d55d7a6]115
[a16764a6]116 std::string make_bold( const std::string & str );
[d55d7a6]117
[a16764a6]118 struct bold {};
119 std::ostream & operator<<(std::ostream & os, bold);
[d55d7a6]120
[a16764a6]121 struct reset_font {};
122 std::ostream & operator<<(std::ostream & os, reset_font);
[d55d7a6]123}
124
[51587aa]125// Local Variables: //
126// tab-width: 4 //
127// mode: c++ //
128// compile-command: "make install" //
129// End: //
Note: See TracBrowser for help on using the repository browser.