compiler/benchmarks/PPCBenchmarkResources.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 30 Apr 2015 23:43:14 +0200
changeset 438 20598d7ce9fa
parent 432 fde2d5969fbb
child 450 914c2567c987
permissions -rw-r--r--
Updated to PetitCompiler-JanKurs.100, PetitCompiler-Tests-JanKurs.44 and PetitCompiler-Benchmarks-JanKurs.4 Name: PetitCompiler-JanKurs.100 Author: JanKurs Time: 30-04-2015, 10:48:52.165 AM UUID: 80196870-5921-46d9-ac20-a43bf5c2f3c2 Name: PetitCompiler-Tests-JanKurs.44 Author: JanKurs Time: 30-04-2015, 10:49:22.489 AM UUID: 348c02e8-18ce-48f6-885d-fcff4516a298 Name: PetitCompiler-Benchmarks-JanKurs.4 Author: JanKurs Time: 30-04-2015, 10:58:44.890 AM UUID: 18cadb42-f9ef-45fb-82e9-8469ade56c8b

"{ Package: 'stx:goodies/petitparser/compiler/benchmarks' }"

"{ NameSpace: Smalltalk }"

Object subclass:#PPCBenchmarkResources
	instanceVariableNames:''
	classVariableNames:'javaCache'
	poolDictionaries:''
	category:'PetitCompiler-Benchmarks-Core'
!


!PPCBenchmarkResources methodsFor:'as yet unclassified'!

changesSized: size
	| string changes |
	changes := PharoFilesOpener default changesFileOrNil contents.
	string :=  changes copyFrom: 1 to: size.
	^ string
	
!

javaInDirectory: directory
	| files |
	files := self readDirectory: directory.
	files := self files: files withExtension: 'java'.
	
	^ files collect: [ :f | (FileStream fileNamed: f) contents ]
!

javaLangMath
	^ (FileStream fileNamed: '../java-src/java/lang/Math.java') contents
!

javaSourcesBig
	^ self javaInDirectory: '../java-src/java/util'.
	"^ self workingJavaInDirectory: '../java-src/java/util'"
!

smalltalkInDirectory: directory
	| files |
	files := self readDirectory: directory.
	files := self files: files withExtension: 'st'.
	
	^ files collect: [ :f | (FileStream fileNamed: f) contents ]
!

smalltalkObjectMethods
	^ Object allMethods collect: [ :m | m sourceCode ].
!

smalltalkSourcesBig
	^ self smalltalkInDirectory: '../smalltalk-src/'
!

smalltalkSourcesBig_old
	^ ((Smalltalk allClasses copyFrom: 1 to: 30) collect: [ :c |
			c allMethods collect: [ :m | m sourceCode ]
	  ]) gather: [:each | each ].
!

workingJavaInDirectory: directory
	| sources parser |
	"return only such a files, that can be parsed by PPJavaSyntax"

	javaCache ifNil: [ javaCache := Dictionary new ].
	
	^ javaCache at: directory ifAbsentPut: [ 
		sources := self javaInDirectory: directory.
		parser := PPJavaSyntax new.
	
		sources select: [ :source | ([parser parse: source ] on: Error do: [ PPFailure new ]) isPetitFailure not ]	
	]
! !

!PPCBenchmarkResources methodsFor:'private utilities'!

files: files withExtension: extension
	^ files select: [ :f | f extension = extension ] 
!

readDirectory: directory
	| file |
	file := directory asFileReference.
	file exists ifTrue: [ 
		^ file allFiles
	].
	^ #()
! !

!PPCBenchmarkResources class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !