gfx/angle/src/compiler/Diagnostics.cpp

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 //
michael@0 2 // Copyright (c) 2012 The ANGLE Project Authors. All rights reserved.
michael@0 3 // Use of this source code is governed by a BSD-style license that can be
michael@0 4 // found in the LICENSE file.
michael@0 5 //
michael@0 6
michael@0 7 #include "compiler/Diagnostics.h"
michael@0 8
michael@0 9 #include "compiler/compiler_debug.h"
michael@0 10 #include "compiler/InfoSink.h"
michael@0 11 #include "compiler/preprocessor/SourceLocation.h"
michael@0 12
michael@0 13 TDiagnostics::TDiagnostics(TInfoSink& infoSink) :
michael@0 14 mInfoSink(infoSink),
michael@0 15 mNumErrors(0),
michael@0 16 mNumWarnings(0)
michael@0 17 {
michael@0 18 }
michael@0 19
michael@0 20 TDiagnostics::~TDiagnostics()
michael@0 21 {
michael@0 22 }
michael@0 23
michael@0 24 void TDiagnostics::writeInfo(Severity severity,
michael@0 25 const pp::SourceLocation& loc,
michael@0 26 const std::string& reason,
michael@0 27 const std::string& token,
michael@0 28 const std::string& extra)
michael@0 29 {
michael@0 30 TPrefixType prefix = EPrefixNone;
michael@0 31 switch (severity)
michael@0 32 {
michael@0 33 case ERROR:
michael@0 34 ++mNumErrors;
michael@0 35 prefix = EPrefixError;
michael@0 36 break;
michael@0 37 case WARNING:
michael@0 38 ++mNumWarnings;
michael@0 39 prefix = EPrefixWarning;
michael@0 40 break;
michael@0 41 default:
michael@0 42 UNREACHABLE();
michael@0 43 break;
michael@0 44 }
michael@0 45
michael@0 46 TInfoSinkBase& sink = mInfoSink.info;
michael@0 47 /* VC++ format: file(linenum) : error #: 'token' : extrainfo */
michael@0 48 sink.prefix(prefix);
michael@0 49 sink.location(loc.file, loc.line);
michael@0 50 sink << "'" << token << "' : " << reason << " " << extra << "\n";
michael@0 51 }
michael@0 52
michael@0 53 void TDiagnostics::writeDebug(const std::string& str)
michael@0 54 {
michael@0 55 mInfoSink.debug << str;
michael@0 56 }
michael@0 57
michael@0 58 void TDiagnostics::print(ID id,
michael@0 59 const pp::SourceLocation& loc,
michael@0 60 const std::string& text)
michael@0 61 {
michael@0 62 writeInfo(severity(id), loc, message(id), text, "");
michael@0 63 }

mercurial