blob: 35169310d846a4576a9930dbf17157fc5722d3c5 [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001#! /usr/bin/env python
2# -*- coding: utf-8 -*-
3
Duy Truonge833aca2013-02-12 13:35:08 -08004# Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07005#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are met:
8# * Redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer.
10# * Redistributions in binary form must reproduce the above copyright
11# notice, this list of conditions and the following disclaimer in the
12# documentation and/or other materials provided with the distribution.
Duy Truonge833aca2013-02-12 13:35:08 -080013# * Neither the name of The Linux Foundation nor
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070014# the names of its contributors may be used to endorse or promote
15# products derived from this software without specific prior written
16# permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21# NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
22# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30# Invoke gcc, looking for warnings, and causing a failure if there are
31# non-whitelisted warnings.
32
33import errno
34import re
35import os
36import sys
37import subprocess
38
39# Note that gcc uses unicode, which may depend on the locale. TODO:
40# force LANG to be set to en_US.UTF-8 to get consistent warnings.
41
42allowed_warnings = set([
c_samjit2e69e4e2014-07-28 19:53:53 +053043 "alignment.c:327",
44 "mmu.c:602",
45 "return_address.c:62",
46 "swab.h:49",
Aparna Mallavarapu72ea7c52013-04-14 20:41:00 +053047 "SemaLambda.cpp:946",
48 "CGObjCGNU.cpp:1414",
49 "BugReporter.h:146",
50 "RegionStore.cpp:1904",
51 "SymbolManager.cpp:484",
52 "RewriteObjCFoundationAPI.cpp:737",
53 "RewriteObjCFoundationAPI.cpp:696",
54 "CommentParser.cpp:394",
55 "CommentParser.cpp:391",
56 "CommentParser.cpp:356",
57 "LegalizeDAG.cpp:3646",
58 "IRBuilder.h:844",
59 "DataLayout.cpp:193",
60 "transport.c:653",
61 "xt_socket.c:307",
62 "xt_socket.c:161",
63 "inet_hashtables.h:356",
64 "xc4000.c:1049",
65 "xc4000.c:1063",
c_samjit2e69e4e2014-07-28 19:53:53 +053066 "f_qdss.c:586",
67 "mipi_tc358764_dsi2lvds.c:746",
68 "dynamic_debug.h:75",
69 "hci_conn.c:407",
70 "f_qdss.c:740",
71 "mipi_novatek.c:569",
72 "swab.h:34",
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070073 ])
74
75# Capture the name of the object file, can find it.
76ofile = None
77
78warning_re = re.compile(r'''(.*/|)([^/]+\.[a-z]+:\d+):(\d+:)? warning:''')
79def interpret_warning(line):
80 """Decode the message from gcc. The messages we care about have a filename, and a warning"""
81 line = line.rstrip('\n')
82 m = warning_re.match(line)
83 if m and m.group(2) not in allowed_warnings:
84 print "error, forbidden warning:", m.group(2)
85
86 # If there is a warning, remove any object if it exists.
87 if ofile:
88 try:
89 os.remove(ofile)
90 except OSError:
91 pass
92 sys.exit(1)
93
94def run_gcc():
95 args = sys.argv[1:]
96 # Look for -o
97 try:
98 i = args.index('-o')
99 global ofile
100 ofile = args[i+1]
101 except (ValueError, IndexError):
102 pass
103
104 compiler = sys.argv[0]
105
106 try:
107 proc = subprocess.Popen(args, stderr=subprocess.PIPE)
108 for line in proc.stderr:
109 print line,
110 interpret_warning(line)
111
112 result = proc.wait()
113 except OSError as e:
114 result = e.errno
115 if result == errno.ENOENT:
116 print args[0] + ':',e.strerror
117 print 'Is your PATH set correctly?'
118 else:
119 print ' '.join(args), str(e)
120
121 return result
122
123if __name__ == '__main__':
124 status = run_gcc()
125 sys.exit(status)