source: branches/0.15.x/abcl/src/org/armedbear/lisp/Profiler.java

Last change on this file was 11488, checked in by ehuelsmann, 17 years ago

Add @Override annotations.

Patch by: Douglas Miles

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.4 KB
Line 
1/*
2 * Profiler.java
3 *
4 * Copyright (C) 2003-2005 Peter Graves
5 * $Id: Profiler.java 11488 2008-12-27 10:50:33Z ehuelsmann $
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20 *
21 * As a special exception, the copyright holders of this library give you
22 * permission to link this library with independent modules to produce an
23 * executable, regardless of the license terms of these independent
24 * modules, and to copy and distribute the resulting executable under
25 * terms of your choice, provided that you also meet, for each linked
26 * independent module, the terms and conditions of the license of that
27 * module.  An independent module is a module which is not derived from
28 * or based on this library.  If you modify this library, you may extend
29 * this exception to your version of the library, but you are not
30 * obligated to do so.  If you do not wish to do so, delete this
31 * exception statement from your version.
32 */
33
34package org.armedbear.lisp;
35
36public class Profiler extends Lisp
37{
38    private static int sleep = 1;
39
40    public static final void sample(LispThread thread)
41        throws ConditionThrowable
42    {
43        sampleNow = false;
44        thread.incrementCallCounts();
45    }
46
47    private static final Runnable profilerRunnable = new Runnable() {
48        public void run()
49        {
50            while (profiling) {
51                sampleNow = true;
52                try {
53                    Thread.sleep(sleep);
54                }
55                catch (InterruptedException e) {
56                    Debug.trace(e);
57                }
58            }
59        }
60    };
61
62    // ### %start-profiler
63    // %start-profiler type granularity
64    public static final Primitive _START_PROFILER =
65        new Primitive("%start-profiler", PACKAGE_PROF, false)
66    {
67        @Override
68        public LispObject execute(LispObject first, LispObject second)
69            throws ConditionThrowable
70        {
71            final LispThread thread = LispThread.currentThread();
72            Stream out = getStandardOutput();
73            out.freshLine();
74            if (profiling) {
75                out._writeLine("; Profiler already started.");
76            } else {
77                if (first == Keyword.TIME)
78                    sampling = true;
79                else if (first == Keyword.COUNT_ONLY)
80                    sampling = false;
81                else
82                    return error(new LispError(
83                        "%START-PROFILER: argument must be either :TIME or :COUNT-ONLY"));
84                Package[] packages = Packages.getAllPackages();
85                for (int i = 0; i < packages.length; i++) {
86                    Package pkg = packages[i];
87                    Symbol[] symbols = pkg.symbols();
88                    for (int j = 0; j < symbols.length; j++) {
89                        Symbol symbol = symbols[j];
90                        LispObject object = symbol.getSymbolFunction();
91                        if (object != null) {
92                            object.setCallCount(0);
93                            if (object instanceof StandardGenericFunction) {
94                                LispObject methods =
95                                    PACKAGE_MOP.intern("GENERIC-FUNCTION-METHODS").execute(object);
96                                while (methods != NIL) {
97                                    StandardMethod method = (StandardMethod) methods.car();
98                                    method.getFunction().setCallCount(0);
99                                    methods = methods.cdr();
100                                }
101                            }
102                        }
103                    }
104                }
105                if (sampling) {
106                    sleep = Fixnum.getValue(second);
107                    thread.resetStack();
108                    Thread t = new Thread(profilerRunnable);
109                    int priority =
110                        Math.min(Thread.currentThread().getPriority() + 1,
111                                 Thread.MAX_PRIORITY);
112                    t.setPriority(priority);
113                    new Thread(profilerRunnable).start();
114                }
115                out._writeLine("; Profiler started.");
116                profiling = true;
117            }
118            return thread.nothing();
119        }
120    };
121
122    // ### stop-profiler
123    public static final Primitive STOP_PROFILER =
124        new Primitive("stop-profiler", PACKAGE_PROF, true)
125    {
126        @Override
127        public LispObject execute() throws ConditionThrowable
128        {
129            Stream out = getStandardOutput();
130            out.freshLine();
131            if (profiling) {
132                profiling = false;
133                out._writeLine("; Profiler stopped.");
134            } else
135                out._writeLine("; Profiler was not started.");
136            out._finishOutput();
137            return LispThread.currentThread().nothing();
138        }
139    };
140}
Note: See TracBrowser for help on using the repository browser.