class Remark(yaml.YAMLObject):
- max_hotness = 1
+ max_hotness = 0
+
+ @classmethod
+ def should_display_hotness(cls):
+ # If max_hotness is 0 at the end, we assume hotness information is
+ # missing and no relative hotness information is displayed
+ return cls.max_hotness != 0
+
# Map function names to their source location for function where inlining happened
caller_loc = dict()
+ def __getattr__(self, name):
+ # If hotness is missing, assume 0
+ if name == 'Hotness':
+ return 0
+ raise AttributeError
+
@property
def File(self):
return self.DebugLoc['File']
@property
def RelativeHotness(self):
- return int(round(self.Hotness * 100 / Remark.max_hotness))
+ if Remark.should_display_hotness():
+ return "{}%".format(int(round(self.Hotness * 100 / Remark.max_hotness)))
+ else:
+ return ''
@property
def key(self):
print('''
<tr>
<td></td>
-<td>{r.RelativeHotness}%</td>
+<td>{r.RelativeHotness}</td>
<td class=\"column-entry-{r.color}\">{r.Pass}</td>
<td><pre style="display:inline">{indent}</pre><span class=\"column-entry-yellow\"> {r.message} </span></td>
<td class=\"column-entry-yellow\">{inlining_context}</td>
print('''
<tr>
<td><a href={r.Link}>{r.DebugLocString}</a></td>
-<td>{r.RelativeHotness}%</td>
+<td>{r.RelativeHotness}</td>
<td>{r.DemangledFunctionName}</td>
<td class=\"column-entry-{r.color}\">{r.Pass}</td>
</tr>'''.format(**locals()), file=self.stream)
f = open(input_file)
docs = yaml.load_all(f)
for remark in docs:
- if hasattr(remark, 'Hotness'):
- # Avoid duplicated remarks
- if remark.key in all_remarks:
- continue
- all_remarks[remark.key] = remark
+ # Avoid duplicated remarks
+ if remark.key in all_remarks:
+ continue
+ all_remarks[remark.key] = remark
- file_remarks.setdefault(remark.File, dict()).setdefault(remark.Line, []).append(remark)
+ file_remarks.setdefault(remark.File, dict()).setdefault(remark.Line, []).append(remark)
- Remark.max_hotness = max(Remark.max_hotness, remark.Hotness)
+ Remark.max_hotness = max(Remark.max_hotness, remark.Hotness)
# Set up a map between function names and their source location for function where inlining happened
for remark in all_remarks.itervalues():
if caller:
Remark.caller_loc[caller] = arg['DebugLoc']
-sorted_remarks = sorted(all_remarks.itervalues(), key=lambda r: r.Hotness, reverse=True)
+if Remark.should_display_hotness():
+ sorted_remarks = sorted(all_remarks.itervalues(), key=lambda r: r.Hotness, reverse=True)
+else:
+ sorted_remarks = sorted(all_remarks.itervalues(), key=lambda r: (r.File, r.Line, r.Column))
if not os.path.exists(args.output_dir):
os.mkdir(args.output_dir)