source: trunk/abcl/src/org/armedbear/lisp/Profiler.java

Last change on this file was 14497, checked in by rschlatte, 11 years ago

Remove direct references to standard-generic-function class from Java

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.8 KB
Line 
1/*
2 * Profiler.java
3 *
4 * Copyright (C) 2003-2005 Peter Graves
5 * $Id: Profiler.java 14497 2013-05-15 06:42:41Z rschlatte $
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
36import static org.armedbear.lisp.Lisp.*;
37
38public class Profiler
39{
40    static int sleep = 1;
41
42    // ### %start-profiler
43    // %start-profiler type granularity
44    public static final Primitive _START_PROFILER =
45        new Primitive("%start-profiler", PACKAGE_PROF, false)
46    {
47        @Override
48        public LispObject execute(LispObject first, LispObject second)
49
50        {
51            final LispThread thread = LispThread.currentThread();
52            Stream out = getStandardOutput();
53            out.freshLine();
54            if (profiling) {
55                out._writeLine("; Profiler already started.");
56            } else {
57                if (first == Keyword.TIME)
58                    sampling = true;
59                else if (first == Keyword.COUNT_ONLY)
60                    sampling = false;
61                else
62                    return error(new LispError(
63                        "%START-PROFILER: argument must be either :TIME or :COUNT-ONLY"));
64                Package[] packages = Packages.getAllPackages();
65                for (int i = 0; i < packages.length; i++) {
66                    Package pkg = packages[i];
67                    Symbol[] symbols = pkg.symbols();
68                    for (int j = 0; j < symbols.length; j++) {
69                        Symbol symbol = symbols[j];
70                        LispObject object = symbol.getSymbolFunction();
71                        if (object != null) {
72                            object.setCallCount(0);
73                            object.setHotCount(0);
74                            LispObject methods = null;
75                            if (object.typep(Symbol.STANDARD_GENERIC_FUNCTION) != NIL) {
76                                methods =
77                                    Symbol.GENERIC_FUNCTION_METHODS.execute(object);
78                            }
79                            while (methods != null && methods != NIL) {
80                                LispObject method = methods.car();
81                                LispObject function =
82                                  Symbol.METHOD_FUNCTION.execute(method);
83                                if (function != NIL) {
84                                  function.setCallCount(0);
85                                  function.setHotCount(0);
86                                  methods = methods.cdr();
87                                }
88                            }
89                        }
90                    }
91                }
92                if (sampling) {
93                    sleep = Fixnum.getValue(second);
94                    Runnable profilerRunnable = new Runnable() {
95                        public void run()
96                        {
97                            profiling = true; // make sure we don't fall through on the first iteration
98                            while (profiling) {
99                                try {
100                                    thread.incrementCallCounts();
101                                    Thread.sleep(sleep);
102                                }
103                                //### FIXME exception
104                                catch (InterruptedException e) {
105                                    Debug.trace(e);
106                                }
107                            }
108                        }
109                    };
110                    Thread t = new Thread(profilerRunnable);
111                    // Maximum priority doesn't hurt:
112                    // we're sleeping all the time anyway
113                    t.setPriority(Thread.MAX_PRIORITY);
114                    new Thread(profilerRunnable).start();
115                }
116                out._writeLine("; Profiler started.");
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()
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.