Mercurial > hg > xemacs-beta
annotate etc/tests/external-widget/test-ew-motif.c @ 4921:17362f371cc2
add more byte-code assertions and better failure output
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-02-03 Ben Wing <ben@xemacs.org>
* alloc.c (Fmake_byte_code):
* bytecode.h:
* lisp.h:
* lread.c:
* lread.c (readevalloop):
* lread.c (Fread):
* lread.c (Fread_from_string):
* lread.c (read_list_conser):
* lread.c (read_list):
* lread.c (vars_of_lread):
* symbols.c:
* symbols.c (Fdefine_function):
Turn on the "compiled-function annotation hack". Implement it
properly by hooking into Fdefalias(). Note in the docstring to
`defalias' that we do this. Remove some old broken code and
change code that implemented the old kludgy way of hooking into
the Lisp reader into bracketed by `#ifdef
COMPILED_FUNCTION_ANNOTATION_HACK_OLD_WAY', which is not enabled.
Also enable byte-code metering when DEBUG_XEMACS -- this is a form
of profiling for computing histograms of which sequences of two
bytecodes are used most often.
* bytecode-ops.h:
* bytecode-ops.h (OPCODE):
New file. Extract out all the opcodes and declare them using
OPCODE(), a bit like frame slots and such. This way the file can
be included multiple times if necessary to iterate multiple times
over the byte opcodes.
* bytecode.c:
* bytecode.c (NUM_REMEMBERED_BYTE_OPS):
* bytecode.c (OPCODE):
* bytecode.c (assert_failed_with_remembered_ops):
* bytecode.c (READ_UINT_2):
* bytecode.c (READ_INT_1):
* bytecode.c (READ_INT_2):
* bytecode.c (PEEK_INT_1):
* bytecode.c (PEEK_INT_2):
* bytecode.c (JUMP_RELATIVE):
* bytecode.c (JUMP_NEXT):
* bytecode.c (PUSH):
* bytecode.c (POP_WITH_MULTIPLE_VALUES):
* bytecode.c (DISCARD):
* bytecode.c (UNUSED):
* bytecode.c (optimize_byte_code):
* bytecode.c (optimize_compiled_function):
* bytecode.c (Fbyte_code):
* bytecode.c (vars_of_bytecode):
* bytecode.c (init_opcode_table_multi_op):
* bytecode.c (reinit_vars_of_bytecode):
* emacs.c (main_1):
* eval.c (funcall_compiled_function):
* symsinit.h:
Any time we change either the instruction pointer or the stack
pointer, assert that we're going to move it to a valid location.
This should catch failures right when they occur rather than
sometime later. This requires that we pass in another couple of
parameters into some functions (only with error-checking enabled,
see below).
Also keep track, using a circular queue, of the last 100 byte
opcodes seen, and when we hit an assert failure during byte-code
execution, output the contents of the queue in a nice readable
fashion. This requires that bytecode-ops.h be included a second
time so that a table mapping opcodes to the name of their operation
can be constructed. This table is constructed in new function
reinit_vars_of_bytecode().
Everything in the last two paras happens only when
ERROR_CHECK_BYTE_CODE.
Add some longish comments describing how the arrays that hold the
stack and instructions, and the pointers used to access them, work.
* gc.c:
Import some code from my `latest-fix' workspace to mark the
staticpro's in order from lowest to highest, rather than highest to
lowest, so it's easier to debug when something goes wrong.
* lisp.h (abort_with_message): Renamed from abort_with_msg().
* symbols.c (defsymbol_massage_name_1):
* symbols.c (defsymbol_nodump):
* symbols.c (defsymbol):
* symbols.c (defkeyword):
* symeval.h (DEFVAR_SYMVAL_FWD_OBJECT):
Make the various calls to staticpro() instead call staticpro_1(),
passing in the name of the C var being staticpro'ed, so that it
shows up in staticpro_names. Otherwise staticpro_names just has
1000+ copies of the word `location'.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Wed, 03 Feb 2010 08:01:55 -0600 |
parents | 03ab78e48ef6 |
children | ba07c880114a |
rev | line source |
---|---|
4894
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
1 /* Test external widget code in Motif. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
2 Copyright (C) 1993 Ben Wing. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
3 |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
4 This file is part of XEmacs. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
5 |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
6 XEmacs is free software; you can redistribute it and/or modify it |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
7 under the terms of the GNU General Public License as published by the |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
8 Free Software Foundation; either version 2, or (at your option) any |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
9 later version. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
10 |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
14 for more details. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
15 |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
16 You should have received a copy of the GNU General Public License |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
17 along with XEmacs; see the file COPYING. If not, write to |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
18 the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
19 Boston, MA 02110-1301, USA. */ |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
2
diff
changeset
|
20 |
2 | 21 #include <Xm/Xm.h> |
22 #include <Xm/RowColumn.h> | |
23 #include <Xm/Scale.h> | |
24 #include <Xm/PushB.h> | |
25 #include <Xm/Label.h> | |
26 #include <Xm/Text.h> | |
27 #include <Xm/PanedW.h> | |
28 #include "ExternalClient.h" | |
29 | |
30 #ifdef TOOLTALK | |
31 #include <desktop/tt_c.h> | |
32 char *HxProcID; | |
33 #endif | |
34 | |
35 XtAppContext xt_app_con; | |
36 | |
37 void ScaleValueChangedCB(Widget scale, XtPointer app_data, XtPointer widget_data) | |
38 { | |
39 XmScaleCallbackStruct *xms = (XmScaleCallbackStruct *) widget_data; | |
40 Widget label = (Widget) app_data; | |
41 char labelarr[10]; | |
42 XmString labelstr; | |
43 #if 0 | |
44 sprintf(labelarr, "%d", xms->value); | |
45 labelstr = XmStringCreateLocalized(labelarr); | |
46 XtVaSetValues(label, XmNlabelString, labelstr, NULL); | |
47 XmStringFree(labelstr); | |
48 #endif | |
49 } | |
50 | |
51 #ifdef TOOLTALK | |
52 static void | |
53 handle_tt_input(XtPointer client_data, int *source, XtInputId *id) | |
54 { | |
55 Tt_message m = tt_message_receive(); | |
56 | |
57 if (m && !(tt_ptr_error(m))) { | |
58 tt_message_destroy(m); | |
59 } | |
60 } | |
61 | |
62 Tt_status | |
63 HxInitializeToolTalk() | |
64 { | |
65 static Boolean initialized = FALSE; | |
66 | |
67 if (!initialized) { | |
68 int fd; | |
69 Tt_status status; | |
70 | |
71 HxProcID = tt_open(); | |
72 fd = tt_fd(); | |
73 if (TT_OK != (status = tt_session_join( tt_default_session() ))) | |
74 return status; | |
75 (void)XtAppAddInput(xt_app_con, fd, (void *)XtInputReadMask, handle_tt_input, NULL); | |
76 initialized = TRUE; | |
77 } | |
78 | |
79 return TT_OK; | |
80 } | |
81 #endif | |
82 | |
83 main(int argc, char **argv) | |
84 { | |
85 Widget shell, rowcolumn, scale, pushbutton, label1, label2, text; | |
86 Widget paned, text2; | |
87 int n, i; | |
88 Widget widlist[100]; | |
89 Widget emacscli[100]; | |
90 Arg args[100]; | |
91 int no_ews = 1; | |
92 char buf[100]; | |
93 | |
94 if (argc > 1) | |
95 no_ews = atoi (argv[1]); | |
96 | |
97 shell = XtAppInitialize(&xt_app_con, "Testmotif", NULL, 0, | |
98 &argc, argv, NULL, NULL, 0); | |
99 | |
100 #ifdef TOOLTALK | |
101 HxInitializeToolTalk(); | |
102 #endif | |
103 | |
104 rowcolumn = XmCreateRowColumn(shell, "rowcolumn", NULL, 0); | |
105 XtManageChild(rowcolumn); | |
106 | |
107 n = 0; | |
108 XtSetArg(args[n], XmNtraversalOn, TRUE); n++; | |
109 #if 0 | |
110 label1 = XmCreateLabel(rowcolumn, "label1", args, n); | |
111 #endif | |
112 label1 = XtVaCreateWidget("label1", xmLabelWidgetClass, rowcolumn, | |
113 XmNwidth, 50, XmNheight, 30, | |
114 XmNtraversalOn, TRUE, NULL); | |
115 label2 = XmCreateLabel(rowcolumn, "label2", NULL, 0); | |
116 scale = XmCreateScale(rowcolumn, "scale", NULL, 0); | |
117 XtAddCallback(scale, XmNvalueChangedCallback, ScaleValueChangedCB, label1); | |
118 paned = XmCreatePanedWindow(rowcolumn, "paned", NULL, 0); | |
119 n = 0; | |
120 widlist[n++] = label1; | |
121 widlist[n++] = label2; | |
122 widlist[n++] = scale; | |
123 widlist[n++] = paned; | |
124 XtManageChildren(widlist, n); | |
125 | |
126 pushbutton = XmCreatePushButton(paned, "pushbutton", NULL, 0); | |
127 text = XmCreateText(paned, "text", NULL, 0); | |
128 for (i=0; i<no_ews; i++) { | |
129 sprintf (buf, "extcli%d", i); | |
130 emacscli[i] = XtVaCreateWidget(buf, externalClientWidgetClass, paned, | |
131 XmNwidth, 500, XmNheight, 200, | |
132 XmNtraversalOn, TRUE, | |
133 #ifdef TOOLTALK | |
134 XtNuseToolTalk, TRUE, | |
135 #endif | |
136 NULL); | |
137 } | |
138 text2 = XmCreateText(paned, "text2", NULL, 0); | |
139 n = 0; | |
140 widlist[n++] = pushbutton; | |
141 widlist[n++] = text; | |
142 for (i=0; i<no_ews; i++) | |
143 widlist[n++] = emacscli[i]; | |
144 widlist[n++] = text2; | |
145 XtManageChildren(widlist, n); | |
146 | |
147 XtRealizeWidget(shell); | |
148 | |
149 { | |
150 XmString lab; | |
151 char labarr[1000]; | |
152 char tmpbuf[50]; | |
153 | |
154 strcpy (labarr, "window:"); | |
155 for (i=0; i<no_ews; i++) { | |
156 sprintf (tmpbuf, " %d", XtWindow(emacscli[i])); | |
157 strcat (labarr, tmpbuf); | |
158 } | |
159 lab = XmStringCreateLocalized(labarr); | |
160 XtVaSetValues(label2, XmNlabelString, lab, NULL); | |
161 XmStringFree(lab); | |
162 } | |
163 | |
164 XtAppMainLoop(xt_app_con); | |
165 } |