mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8091 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			33 lines
		
	
	
		
			943 B
		
	
	
	
		
			Gnuplot
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			943 B
		
	
	
	
		
			Gnuplot
		
	
	
	
	
	
set terminal png
 | 
						|
 | 
						|
##------- Plot small Date vs LOC ----
 | 
						|
set output "running_loc.png"
 | 
						|
set xlabel "Date" "TimesRoman,24"
 | 
						|
set ylabel "Lines of Code" "TimesRoman,24"
 | 
						|
set xdata time
 | 
						|
set timefmt "%Y-%m-%d:"
 | 
						|
set format x "%b %d, %Y"
 | 
						|
 | 
						|
## Various labels for the graph
 | 
						|
set label "Reoptimizer\n checkins" at "2003-02-18:", 114000
 | 
						|
set label "Modulo Sched\n   checkin" at "2003-03-28:", 119500
 | 
						|
set label "Reoptimizer\n checkins" at "2003-06-01:", 134000
 | 
						|
set label "'dummy'\nfunction" at "2003-07-20:", 150000
 | 
						|
set label "Reoptimizer\n removal" at "2003-08-10:", 132000
 | 
						|
 | 
						|
set size .75,.75
 | 
						|
plot "running_loc.txt" using 1:2 title '', \
 | 
						|
     "running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
 | 
						|
 | 
						|
##------- Plot large Date vs LOC ----
 | 
						|
set size 1.5,1.5
 | 
						|
set output "running_loc_large.png"
 | 
						|
plot "running_loc.txt" using 1:2 title '', \
 | 
						|
     "running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
 | 
						|
 | 
						|
 | 
						|
# Delete all labels...
 | 
						|
set nolabel
 | 
						|
 | 
						|
 |