12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- ;;; Test script to show high-level optimization of Scheme expressions
- ;;; Copyright (C) 2023, 2024 Igalia, S.L.
- ;;;
- ;;; Licensed under the Apache License, Version 2.0 (the "License");
- ;;; you may not use this file except in compliance with the License.
- ;;; You may obtain a copy of the License at
- ;;;
- ;;; http://www.apache.org/licenses/LICENSE-2.0
- ;;;
- ;;; Unless required by applicable law or agreed to in writing, software
- ;;; distributed under the License is distributed on an "AS IS" BASIS,
- ;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- ;;; See the License for the specific language governing permissions and
- ;;; limitations under the License.
- (use-modules (language tree-il)
- (hoot compile)
- (system base compile)
- (system base language)
- (ice-9 match)
- (ice-9 pretty-print)
- (ice-9 textual-ports))
- (define (read1 str)
- (call-with-input-string
- str
- (lambda (port)
- (let ((expr (read port)))
- (when (eof-object? expr)
- (error "No expression to evaluate"))
- (let ((tail (read port)))
- (unless (eof-object? tail)
- (error "Unexpected trailing expression" tail)))
- expr))))
- (define* (optimize expr #:key (optimization-level (default-optimization-level))
- (opts '()) import-abi?)
- (define lower-tree-il
- ((language-lowerer (lookup-language 'tree-il)) optimization-level opts))
- (let* ((env #f)
- (tree-il (scheme->sealed-tree-il expr #:import-abi? import-abi?))
- (optimized (lower-tree-il tree-il env)))
- (pretty-print (tree-il->scheme optimized env))))
- (when (batch-mode?)
- (match (program-arguments)
- ((arg0 . args)
- (let lp ((args args) (import-abi? #f))
- (match args
- (("--import-abi" . args)
- (lp args #t))
- ((expr)
- (optimize (read1 expr) #:import-abi? import-abi?))
- (_
- (format (current-error-port) "usage: ~a [--import-abi] EXPR\n" arg0)
- (exit 1)))))))
|