@@ -106,7 +106,7 @@ <h3>Time Spent</h3>
106
106
</ tr >
107
107
</ tbody >
108
108
</ table >
109
-
109
+
110
110
< h3 > Call Frames</ h3 >
111
111
< p > In total, < strong > {{EntriesWithoutInline}} call frames</ strong > were
112
112
entered and exited by the profiled code. Inlining eliminated the need
@@ -207,7 +207,7 @@ <h3>Dynamic Optimization</h3>
207
207
</ p >
208
208
</ div >
209
209
</ div >
210
-
210
+
211
211
< div class ="container " ng-show ="Tab == 'Routines' ">
212
212
< div ng-controller ="RoutinesController ">
213
213
< table class ="table table-striped table-condensed table-bordered ">
@@ -373,7 +373,7 @@ <h3>Dynamic Optimization</h3>
373
373
</ tr >
374
374
</ tbody >
375
375
</ table >
376
-
376
+
377
377
< div class ="panel panel-default ">
378
378
< div class ="panel-heading "> Callees</ div >
379
379
< table class ="table table-striped table-condensed table-bordered " ng-show ="Callees.length > 0 ">
@@ -529,7 +529,7 @@ <h4 class="modal-title" id="allocatingRoutinesModalLabel">
529
529
</ script >
530
530
</ div >
531
531
</ div >
532
-
532
+
533
533
< div class ="container " ng-show ="Tab == 'GC' ">
534
534
< div ng-controller ="GCController ">
535
535
< table class ="table table-striped table-condensed table-bordered ">
@@ -590,7 +590,7 @@ <h4 class="modal-title" id="allocatingRoutinesModalLabel">
590
590
</ table >
591
591
</ div >
592
592
</ div >
593
-
593
+
594
594
< div class ="container " ng-show ="Tab == 'OSR/Deopt' ">
595
595
< div ng-controller ="OSRDeoptController ">
596
596
< h3 > OSR</ h3 >
@@ -630,7 +630,7 @@ <h3>OSR</h3>
630
630
631
631
< h3 > Local Deoptimization</ h3 >
632
632
< p > Local deoptimization happens when a guard in specialized or JIT-compiled
633
- code fails. Since the code was produced assuming the guard would hold,
633
+ code fails. Since the code was produced assuming the guard would hold,
634
634
the VM falls back to running the safe, but slower, interpreted code.</ p >
635
635
< table class ="table table-striped table-condensed table-bordered " ng-show ="DeoptOnes.length > 0 ">
636
636
< thead >
@@ -806,7 +806,7 @@ <h3>Global Deoptimization</h3>
806
806
// Dynamic optimization
807
807
var optimizedFrames = speshEntries + jitEntries ;
808
808
$scope . OptimizedFrames = optimizedFrames ;
809
- $scope . DeoptOnes = deoptOnes ;
809
+ $scope . DeoptOnes = deoptOnes ;
810
810
$scope . DeoptOnePercent = + ( 100 * deoptOnes / ( optimizedFrames || 1 ) ) . toFixed ( 2 ) ;
811
811
$scope . DeoptAlls = deoptAlls ;
812
812
$scope . OSRs = osrs ;
@@ -849,7 +849,7 @@ <h3>Global Deoptimization</h3>
849
849
}
850
850
}
851
851
walkCallGraphNode ( rawData [ 0 ] . call_graph ) ;
852
-
852
+
853
853
// Build object list per routine.
854
854
var routineList = [ ] ;
855
855
for ( id in idToEntries ) {
0 commit comments