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

Last change on this file was 12082, checked in by ehuelsmann, 16 years ago

Hot spot counting for the profiler.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.7 KB
Line 
1/*
2 * Profiler.java
3 *
4 * Copyright (C) 2003-2005 Peter Graves
5 * $Id: Profiler.java 12082 2009-08-01 07:58:15Z 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    // ### %start-profiler
41    // %start-profiler type granularity
42    public static final Primitive _START_PROFILER =
43        new Primitive("%start-profiler", PACKAGE_PROF, false)
44    {
45        @Override
46        public LispObject execute(LispObject first, LispObject second)
47            throws ConditionThrowable
48        {
49            final LispThread thread = LispThread.currentThread();
50            Stream out = getStandardOutput();
51            out.freshLine();
52            if (profiling) {
53                out._writeLine("; Profiler already started.");
54            } else {
55                if (first == Keyword.TIME)
56                    sampling = true;
57                else if (first == Keyword.COUNT_ONLY)
58                    sampling = false;
59                else
60                    return error(new LispError(
61                        "%START-PROFILER: argument must be either :TIME or :COUNT-ONLY"));
62                Package[] packages = Packages.getAllPackages();
63                for (int i = 0; i < packages.length; i++) {
64                    Package pkg = packages[i];
65                    Symbol[] symbols = pkg.symbols();
66                    for (int j = 0; j < symbols.length; j++) {
67                        Symbol symbol = symbols[j];
68                        LispObject object = symbol.getSymbolFunction();
69                        if (object != null) {
70                            object.setCallCount(0);
71                            object.setHotCount(0);
72                            if (object instanceof StandardGenericFunction) {
73                                LispObject methods =
74                                    PACKAGE_MOP.intern("GENERIC-FUNCTION-METHODS").execute(object);
75                                while (methods != NIL) {
76                                    StandardMethod method = (StandardMethod) methods.car();
77                                    method.getFunction().setCallCount(0);
78                                    method.getFunction().setHotCount(0);
79                                    methods = methods.cdr();
80                                }
81                            }
82                        }
83                    }
84                }
85                if (sampling) {
86                    sleep = Fixnum.getValue(second);
87                    Runnable profilerRunnable = new Runnable() {
88                        public void run()
89                        {
90                            profiling = true; // make sure we don't fall through on the first iteration
91                            while (profiling) {
92                                try {
93                                    thread.incrementCallCounts();
94                                    Thread.sleep(sleep);
95                                }
96                                catch (InterruptedException e) {
97                                    Debug.trace(e);
98                                }
99                                catch (ConditionThrowable e) {
100                                    break;
101                                }
102                            }
103                        }
104                    };
105                    Thread t = new Thread(profilerRunnable);
106                    // Maximum priority doesn't hurt:
107                    // we're sleeping all the time anyway
108                    t.setPriority(Thread.MAX_PRIORITY);
109                    new Thread(profilerRunnable).start();
110                }
111                out._writeLine("; Profiler started.");
112            }
113            return thread.nothing();
114        }
115    };
116
117    // ### stop-profiler
118    public static final Primitive STOP_PROFILER =
119        new Primitive("stop-profiler", PACKAGE_PROF, true)
120    {
121        @Override
122        public LispObject execute() throws ConditionThrowable
123        {
124            Stream out = getStandardOutput();
125            out.freshLine();
126            if (profiling) {
127                profiling = false;
128                out._writeLine("; Profiler stopped.");
129            } else
130                out._writeLine("; Profiler was not started.");
131            out._finishOutput();
132            return LispThread.currentThread().nothing();
133        }
134    };
135}
Note: See TracBrowser for help on using the repository browser.