1 | /* |
---|
2 | * Profiler.java |
---|
3 | * |
---|
4 | * Copyright (C) 2003-2005 Peter Graves |
---|
5 | * $Id: Profiler.java 12255 2009-11-06 22:36:32Z 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 | |
---|
34 | package org.armedbear.lisp; |
---|
35 | |
---|
36 | public 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 | |
---|
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 | //### FIXME exception |
---|
97 | catch (InterruptedException e) { |
---|
98 | Debug.trace(e); |
---|
99 | } |
---|
100 | } |
---|
101 | } |
---|
102 | }; |
---|
103 | Thread t = new Thread(profilerRunnable); |
---|
104 | // Maximum priority doesn't hurt: |
---|
105 | // we're sleeping all the time anyway |
---|
106 | t.setPriority(Thread.MAX_PRIORITY); |
---|
107 | new Thread(profilerRunnable).start(); |
---|
108 | } |
---|
109 | out._writeLine("; Profiler started."); |
---|
110 | } |
---|
111 | return thread.nothing(); |
---|
112 | } |
---|
113 | }; |
---|
114 | |
---|
115 | // ### stop-profiler |
---|
116 | public static final Primitive STOP_PROFILER = |
---|
117 | new Primitive("stop-profiler", PACKAGE_PROF, true) |
---|
118 | { |
---|
119 | @Override |
---|
120 | public LispObject execute() |
---|
121 | { |
---|
122 | Stream out = getStandardOutput(); |
---|
123 | out.freshLine(); |
---|
124 | if (profiling) { |
---|
125 | profiling = false; |
---|
126 | out._writeLine("; Profiler stopped."); |
---|
127 | } else |
---|
128 | out._writeLine("; Profiler was not started."); |
---|
129 | out._finishOutput(); |
---|
130 | return LispThread.currentThread().nothing(); |
---|
131 | } |
---|
132 | }; |
---|
133 | } |
---|