/usr/share/racket/pkgs/profile-lib/raco.rkt is in racket-common 6.7-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | #lang racket/base
(require racket/cmdline
         raco/command-name
         errortrace/errortrace-lib
         "main.rkt" "raco-utils.rkt"
         (prefix-in text: "render-text.rkt"))
;; raco profile
;; profile the main submodule (if there is one), or the top-level module
(define delay #f)
(define iterations #f)
(define threads? #f)
(define use-errortrace? #f)
(define order 'topological)
(define file
  (command-line #:program (short-program+command-name)
                #:once-each
                [("--delay") n
                 "Sampling rate (seconds)"
                 (let ([n* (string->number n)])
                   (unless (real? n*)
                     (raise-argument-error 'raco-profile "real?" n*))
                   (set! delay n*))]
                [("--repeat") n
                 "Number of iterations"
                 (let ([n* (string->number n)])
                   (unless (integer? n*)
                     (raise-argument-error 'raco-profile "integer?" n*))
                   (set! iterations n*))]
                [("--all-threads")
                 "Profile all threads"
                 (set! threads? #t)]
                [("--use-errortrace")
                 "Use errortrace mode"
                 (set! use-errortrace? #t)]
                #:once-any
                [("--topological")
                 "Order functions topologically (the default)"
                 (set! order 'topological)]
                [("--self")
                 "Order functions by self time"
                 (set! order 'self)]
                [("--total")
                 "Order functions by total time"
                 (set! order 'total)]
                #:args (filename)
                filename))
(parameterize ([current-compile
                (if use-errortrace?
                    (make-errortrace-compile-handler)
                    (current-compile))])
  (define (t)
    (collect-garbage)
    (collect-garbage)
    (collect-garbage)
    (dynamic-require (module-to-profile file) #f))
  (cond [(and delay iterations)
         (profile-thunk t
                        #:delay delay
                        #:repeat iterations
                        #:order order
                        #:threads threads?
                        #:use-errortrace? use-errortrace?)]
        [delay
          (profile-thunk t
                         #:delay delay
                         #:order order
                         #:threads threads?
                         #:use-errortrace? use-errortrace?)]
        [iterations
         (profile-thunk t
                        #:repeat iterations
                        #:order order
                        #:threads threads?
                        #:use-errortrace? use-errortrace?)]
        [else
         (profile-thunk t
                        #:order order
                        #:threads threads?
                        #:use-errortrace? use-errortrace?)]))
(module test racket/base) ; don't run for testing
 |