annotate graal/findbugsExcludeFilter.xml @ 14757:91c88fc2157c

make scheduling in IdealGraphPrinter optional
author Erik Eckstein <erik.eckstein@oracle.com>
date Wed, 26 Mar 2014 10:10:12 +0100
parents 942c4daa9db9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14546
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1 <FindBugsFilter>
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
2
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
3 <Match>
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
4 <Class name="com.oracle.graal.hotspot.CompilationTask" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
5 <Method name="run" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
6 <Bug pattern="NN_NAKED_NOTIFY" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
7 </Match>
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
8
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
9 <!-- justification = "concurrent abstraction calls are in synchronized block" -->
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
10 <Match>
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
11 <Class name="com.oracle.graal.hotspot.debug.BenchmarkCounters" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
12 <Method name="getIndex" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
13 <Bug pattern="AT_OPERATION_SEQUENCE_ON_CONCURRENT_ABSTRACTION" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
14 </Match>
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
15
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
16 <!-- justification = "counters are only used for statistics" -->
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
17 <Match>
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
18 <Class name="com.oracle.graal.hotspot.meta.HotSpotGraphCache" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
19 <Or>
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
20 <Method name="get" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
21 <Method name="put" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
22 <Method name="removeGraphs" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
23 </Or>
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
24 <Bug pattern="VO_VOLATILE_INCREMENT" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
25 </Match>
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
26
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
27 <!-- justification = "reference equality on the receiver is what we want" -->
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
28 <Match>
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
29 <Class name="com.oracle.graal.replacements.StringSubstitutions" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
30 <Method name="equals" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
31 <Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
32 </Match>
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
33
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
34 <!-- justification = "reference equality to test whether string is interned" -->
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
35 <Match>
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
36 <Class name="com.oracle.graal.hotspot.phases.AheadOfTimeVerificationPhase" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
37 <Method name="isInternedString" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
38 <Bug pattern="ES_COMPARING_STRINGS_WITH_EQ" />
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
39 </Match>
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
40
942c4daa9db9 added findbugs command to mx
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
41 </FindBugsFilter>