[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 |
---|
[4358c1e] | 12 | // Last Modified On : Wed May 16 15:01:23 2018 |
---|
| 13 | // Update Count : 30 |
---|
[51587aa] | 14 | // |
---|
[51b7345] | 15 | |
---|
[6b0b624] | 16 | #pragma once |
---|
[51b7345] | 17 | |
---|
[a16764a6] | 18 | #include "ErrorObjects.h" |
---|
[af39199d] | 19 | #include <cstring> |
---|
[294647b] | 20 | |
---|
[d55d7a6] | 21 | //----------------------------------------------------------------------------- |
---|
| 22 | // Errors |
---|
[138e29e] | 23 | |
---|
[4358c1e] | 24 | extern bool SemanticErrorThrow; |
---|
| 25 | |
---|
[a16764a6] | 26 | __attribute__((noreturn)) void SemanticError( CodeLocation location, std::string error ); |
---|
[51b7345] | 27 | |
---|
| 28 | template< typename T > |
---|
[a16764a6] | 29 | __attribute__((noreturn)) static inline void SemanticError( const T * obj, const std::string & error ) { |
---|
| 30 | SemanticError( obj->location, toString( error, obj ) ); |
---|
| 31 | } |
---|
[d55d7a6] | 32 | |
---|
| 33 | template< typename T > |
---|
[a16764a6] | 34 | __attribute__((noreturn)) static inline void SemanticError( CodeLocation location, const T * obj, const std::string & error ) { |
---|
| 35 | SemanticError( location, toString( error, obj ) ); |
---|
| 36 | } |
---|
[d55d7a6] | 37 | |
---|
| 38 | //----------------------------------------------------------------------------- |
---|
| 39 | // Warnings |
---|
| 40 | |
---|
[6040e67d] | 41 | enum class Severity { |
---|
| 42 | Suppress, |
---|
| 43 | Warn, |
---|
| 44 | Error, |
---|
| 45 | Critical |
---|
| 46 | }; |
---|
| 47 | |
---|
| 48 | struct WarningData { |
---|
| 49 | const char * const name; |
---|
| 50 | const char * const message; |
---|
[68e9ace] | 51 | const Severity default_severity; |
---|
[6040e67d] | 52 | }; |
---|
| 53 | |
---|
[44bca7f] | 54 | constexpr WarningData WarningFormats[] = { |
---|
[68e9ace] | 55 | {"self-assign" , "self assignment of expression: %s" , Severity::Warn}, |
---|
| 56 | {"reference-conversion" , "rvalue to reference conversion of rvalue: %s" , Severity::Warn}, |
---|
[c28afead] | 57 | {"qualifiers-zero_t-one_t", "questionable use of type qualifier %s with %s", Severity::Warn}, |
---|
[a16764a6] | 58 | }; |
---|
[d55d7a6] | 59 | |
---|
[a16764a6] | 60 | enum class Warning { |
---|
[babeeda] | 61 | SelfAssignment, |
---|
[ec6c040] | 62 | RvalueToReferenceConversion, |
---|
[9dc31c10] | 63 | BadQualifiersZeroOne, |
---|
[a16764a6] | 64 | NUMBER_OF_WARNINGS, //This MUST be the last warning |
---|
[d55d7a6] | 65 | }; |
---|
| 66 | |
---|
[a16764a6] | 67 | static_assert( |
---|
| 68 | (sizeof(WarningFormats) / sizeof(WarningFormats[0])) == ((unsigned long)Warning::NUMBER_OF_WARNINGS), |
---|
| 69 | "Each warning format should have a corresponding warning enum value" |
---|
| 70 | ); |
---|
| 71 | |
---|
[6040e67d] | 72 | #define SemanticWarning(loc, id, ...) SemanticWarningImpl(loc, id, WarningFormats[(int)id].message, __VA_ARGS__) |
---|
[a16764a6] | 73 | |
---|
| 74 | void SemanticWarningImpl (CodeLocation loc, Warning warn, const char * const fmt, ...) __attribute__((format(printf, 3, 4))); |
---|
[d55d7a6] | 75 | |
---|
[68e9ace] | 76 | void SemanticWarning_SuppressAll (); |
---|
| 77 | void SemanticWarning_EnableAll (); |
---|
| 78 | void SemanticWarning_WarningAsError(); |
---|
| 79 | void SemanticWarning_Set (const char * const name, Severity s); |
---|
[d55d7a6] | 80 | |
---|
[af39199d] | 81 | // SKULLDUGGERY: cfa.cc is built before SemanticError.cc but needs this routine. |
---|
| 82 | static inline bool SemanticWarning_Exist(const char * const name) { |
---|
| 83 | for ( const auto & w : WarningFormats ) { |
---|
| 84 | if ( std::strcmp( name, w.name ) == 0 ) return true; |
---|
| 85 | } |
---|
| 86 | return false; |
---|
| 87 | } |
---|
| 88 | |
---|
[d55d7a6] | 89 | //----------------------------------------------------------------------------- |
---|
| 90 | // Helpers |
---|
[a16764a6] | 91 | namespace ErrorHelpers { |
---|
| 92 | const std::string & error_str(); |
---|
| 93 | const std::string & warning_str(); |
---|
| 94 | const std::string & bold_ttycode(); |
---|
| 95 | const std::string & reset_font_ttycode(); |
---|
[d55d7a6] | 96 | |
---|
[a16764a6] | 97 | std::string make_bold( const std::string & str ); |
---|
[d55d7a6] | 98 | |
---|
[a16764a6] | 99 | struct bold {}; |
---|
| 100 | std::ostream & operator<<(std::ostream & os, bold); |
---|
[d55d7a6] | 101 | |
---|
[a16764a6] | 102 | struct reset_font {}; |
---|
| 103 | std::ostream & operator<<(std::ostream & os, reset_font); |
---|
[d55d7a6] | 104 | } |
---|
| 105 | |
---|
[51587aa] | 106 | // Local Variables: // |
---|
| 107 | // tab-width: 4 // |
---|
| 108 | // mode: c++ // |
---|
| 109 | // compile-command: "make install" // |
---|
| 110 | // End: // |
---|