OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 26 matching lines...) Expand all Loading... |
37 // Convert picoseconds to milliseconds. | 37 // Convert picoseconds to milliseconds. |
38 distortion_per_entry = distortion / 1000000; | 38 distortion_per_entry = distortion / 1000000; |
39 var rangelimits = result.range.split(","); | 39 var rangelimits = result.range.split(","); |
40 var range_start = parseInt(rangelimits[0]); | 40 var range_start = parseInt(rangelimits[0]); |
41 var range_end = parseInt(rangelimits[1]); | 41 var range_end = parseInt(rangelimits[1]); |
42 if (!isNaN(range_start)) range_start_override = range_start; | 42 if (!isNaN(range_start)) range_start_override = range_start; |
43 if (!isNaN(range_end)) range_end_override = range_end; | 43 if (!isNaN(range_end)) range_end_override = range_end; |
44 | 44 |
45 var kResX = 1600; | 45 var kResX = 1600; |
46 var kResY = 600; | 46 var kResY = 600; |
47 var psc = new PlotScriptComposer(kResX, kResY); | 47 function log_error(text) { |
| 48 print(text); |
| 49 quit(1); |
| 50 } |
| 51 var psc = new PlotScriptComposer(kResX, kResY, log_error); |
48 psc.collectData(readline, distortion_per_entry); | 52 psc.collectData(readline, distortion_per_entry); |
49 psc.findPlotRange(range_start_override, range_end_override); | 53 psc.findPlotRange(range_start_override, range_end_override); |
50 print("set terminal pngcairo size " + kResX + "," + kResY + | 54 print("set terminal pngcairo size " + kResX + "," + kResY + |
51 " enhanced font 'Helvetica,10'"); | 55 " enhanced font 'Helvetica,10'"); |
52 psc.assembleOutput(print); | 56 psc.assembleOutput(print); |
OLD | NEW |