3 %%% Class layout and method combination protocols
5 %%% (c) 2015 Straylight/Edgeware
8 %%%----- Licensing notice ---------------------------------------------------
10 %%% This file is part of the Sensible Object Design, an object system for C.
12 %%% SOD is free software; you can redistribute it and/or modify
13 %%% it under the terms of the GNU General Public License as published by
14 %%% the Free Software Foundation; either version 2 of the License, or
15 %%% (at your option) any later version.
17 %%% SOD is distributed in the hope that it will be useful,
18 %%% but WITHOUT ANY WARRANTY; without even the implied warranty of
19 %%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 %%% GNU General Public License for more details.
22 %%% You should have received a copy of the GNU General Public License
23 %%% along with SOD; if not, write to the Free Software Foundation,
24 %%% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 \chapter{Class layout and method combination}
28 %%%--------------------------------------------------------------------------
29 \section{Class layout protocol} \label{sec:layout.instance}
31 \begin{describe}{fun}{islots-struct-tag @<class> @> @<string>}
34 \begin{describe}{fun}{ichain-struct-tag @<class> @<chain-head> @> @<string>}
37 \begin{describe}{fun}{ichain-union-tag @<class> @<chain-head> @> @<string>}
40 \begin{describe}{fun}{ilayout-struct-tag @<class> @> @<string>}
43 \begin{describe}{fun}{vtmsgs-struct-tag @<class> @<super> @> @<string>}
46 \begin{describe}{fun}{vtable-union-tag @<class> @<chain-head> @> @<string>}
49 \begin{describe}{fun}{vtable-struct-tag @<class> @<chain-head> @> @<string>}
52 \begin{describe}{fun}{vtable-name @<class> @<chain-head> @> @<string>}
55 \begin{describe}{fun}{message-macro-name @<class> @<entry> @> @<string>}
58 \begin{describe}{cls}{effective-slot () \&key :class :slot :initializer}
62 {\dhead{gf}{effective-slot-class @<slot> @> @<class>}
63 \dhead{gf}{effective-slot-direct-slot @<slot> @> @<direct-slot>}
64 \dhead{gf}{effective-slot-initializer @<slot> @> @<init-or-nil>}}
68 {find-slot-initializer @<class> @<slot> @> @<init-or-nil>}
72 {find-class-initializer @<slot> @<class> @> @<init-or-nil>}
75 \begin{describe}{gf}{find-slot-initargs @<class> @<slot> @> @<list>}
79 {compute-effective-slot @<class> @<slot> @> @<effective-slot>}
83 {sod-class-effective-slot (effective-slot) \\ \ind
84 \&key :class :slot :initializer-function :prepare-function}
88 {\dhead{gf}{effective-slot-initializer-function @<slot> @> @<function>}
89 \dhead{gf}{effective-slot-prepare-function @<slot> @> @<function>}}
92 \begin{describe}{cls}{islots () \&key :class :subclass :slots}
96 {\dhead{gf}{islots-class @<islots> @> @<class>}
97 \dhead{gf}{islots-subclass @<islots> @> @<class>}
98 \dhead{gf}{islots-slots @<islots> @> @<list>}}
101 \begin{describe}{gf}{compute-islots @<class> @<subclass> @> @<islots>}
104 \begin{describe}{gf}{vtable-pointer () \&key :class :chain-head :chain-tail}
108 {\dhead{gf}{vtable-pointer-class @<vtable-pointer> @> @<class>}
109 \dhead{gf}{vtable-pointer-chain-head @<vtable-pointer> @> @<class>}
110 \dhead{gf}{vtable-pointer-chain-tail @<vtable-pointer> @> @<class>}}
113 \begin{describe}{gf}{ichain () \&key :class :chain-head :chain-tail :body}
117 {\dhead{gf}{ichain-class @<ichain> @> @<class>}
118 \dhead{gf}{ichain-chain-head @<ichain> @> @<class>}
119 \dhead{gf}{ichain-chain-tail @<ichain> @> @<class>}
120 \dhead{gf}{ichain-body @<ichain> @> @<list>}}
123 \begin{describe}{gf}{compute-ichain @<class> @<chain> @> @<ichain>}
126 \begin{describe}{gf}{ilayout () \&key :class :ichains}
130 {\dhead{gf}{ilayout-class @<ilayout> @> @<class>}
131 \dhead{gf}{ilayout-ichains @<ilayout> @> @<list>}}
134 \begin{describe}{gf}{sod-class-ilayout <class> @> @<ilayout>}
137 \begin{describe}{gf}{compute-ilayout @<class> @> @<ilayout>}
140 \begin{describe}{cls}
141 {vtmsgs () \&key :class :subclass :chain-head :chain-tail :entries}
145 {\dhead{gf}{vtmsgs-class @<vtmsgs> @> @<class>}
146 \dhead{gf}{vtmsgs-subclass @<vtmsgs> @> @<class>}
147 \dhead{gf}{vtmsgs-chain-head @<vtmsgs> @> @<class>}
148 \dhead{gf}{vtmsgs-chain-tail @<vtmsgs> @> @<class>}
149 \dhead{gf}{vtmsgs-entries @<vtmsgs> @> @<list>}}
152 \begin{describe}{cls}
153 {class-pointer () \&key :class :chain-head :metaclass :meta-chain-head}
157 {\dhead{gf}{class-pointer-class @<class-pointer> @> @<class>}
158 \dhead{gf}{class-pointer-chain-head @<class-pointer> @> @<class>}
159 \dhead{gf}{class-pointer-metaclass @<class-pointer> @> @<class>}
160 \dhead{gf}{class-pointer-meta-chain-head @<class-pointer> @> @<class>}}
163 \begin{describe}{fun}
164 {make-class-pointer @<class> @<chain-head>
165 @<metaclass> @<meta-chain-head>
169 \begin{describe}{cls}{base-offset () \&key :class :chain-head}
173 {\dhead{gf}{base-offset-class @<base-offset> @> @<class>}
174 \dhead{gf}{base-offset-chain-head @<base-offset> @> @<class>}}
177 \begin{describe}{fun}
178 {make-base-offset @<class> @<chain-head> @> @<base-offset>}
181 \begin{describe}{cls}{chain-offset () \&key :class :chain-head :target-head}
185 {\dhead{gf}{chain-offset-class @<chain-offset> @> @<class>}
186 \dhead{gf}{chain-offset-chain-head @<chain-offset> @> @<class>}
187 \dhead{gf}{chain-offset-target-head @<chain-offset> @> @<class>}}
190 \begin{describe}{fun}
191 {make-chain-offset @<class> @<chain-head> @<target-head>
195 \begin{describe}{gf}{vtable () \&key :class :chain-head :chain-tail :body}
199 {\dhead{gf}{vtable-class @<vtable> @> @<class>}
200 \dhead{gf}{vtable-chain-head @<vtable> @> @<class>}
201 \dhead{gf}{vtable-chain-tail @<vtable> @> @<class>}
202 \dhead{gf}{vtable-body @<vtable> @> @<list>}}
206 {compute-vtable-items @<class> @<super>
207 @<chain-head> @<chain-tail>
211 \begin{describe}{gf}{compute-vtable @<class> @<chain> @> @<vtable>}
214 \begin{describe}{gf}{sod-class-vtables @<class> @> @<list>}
217 \begin{describe}{gf}{compute-vtables @<class> @> @<list>}
220 %%%--------------------------------------------------------------------------
221 \section{Method combination} \label{sec:layout.methods}
223 \begin{describe}{cls}{effective-method () \&key :message :class :keywords}
227 {\dhead{gf}{effective-method-message @<method> @> @<message>}
228 \dhead{gf}{effective-method-class @<method> @> @<class>}
229 \dhead{gf}{effective-method-keywords @<method> @> @<list>}}
233 {sod-message-applicable-methods @<message> @<class> @> list}
237 {sod-message-effective-method-class @<message> @> @<class>}
240 \begin{describe}{gf}{primary-method-class @<message> @> @<class>}
244 {method-keyword-argument-lists @<method> @<direct-methods> @<state>
249 {compute-sod-effective-method @<message> @<class> @> @<method>}
252 \begin{describe}{gf}{sod-class-effective-methods @<class> @> @<list>}
255 \begin{describe}{gf}{compute-effective-methods @<class> @> @<list>}
258 \begin{describe}{cls}
259 {method-entry () \&key :method :chain-head :chain-tail :role}
263 {\dhead{gf}{method-entry-effective-method @<method-entry> @> @<method>}
264 \dhead{gf}{method-entry-chain-head @<method-entry> @> @<class>}
265 \dhead{gf}{method-entry-chain-tail @<method-entry> @> @<class>}
266 \dhead{gf}{method-entry-role @<method-entry> @> @<role>}}
270 {make-method-entries @<effective-method> @<chain-head> @<chain-tail>
275 \begin{describe}{gf}{sod-message-argument-tail @<message> @> @<list>}
278 \begin{describe}{gf}{sod-method-function-type @<method> @> @<c-type>}
281 \begin{describe}{gf}{sod-method-next-method-type @<method> @> @<c-type>}
284 \begin{describe}{gf}{sod-method-description @<method> @> @<string>}
287 \begin{describe}{gf}{sod-method-function-name @<method> @> @<string>}
290 \begin{describe}{fun}{varargs-message-p @<message> @> @<generalized-boolean>}
293 \begin{describe}{fun}{keyword-message-p @<message> @> @<generalized-boolean>}
296 \begin{describe}{gf}{method-entry-function-type @<entry> @> @<c-type>}
299 \begin{describe}{gf}{method-entry-slot-name @<entry> @> @<string>}
303 {method-entry-slot-name-by-role @<entry> @<role> @<name> @> @<string>}
307 {effective-method-basic-argument-names @<method> @> @<list>}
311 {effective-method-live-p @<method> @> @<generalized-boolean>}
315 \begin{describe}{cls}
316 {method-codegen (codegen) \\ \ind
317 \&key :vars :insts :temp-index
318 :message :class :method :target}
322 {\dhead{gf}{codegen-message @<codegen> @> @<message>}
323 \dhead{gf}{codegen-class @<codegen> @> @<class>}
324 \dhead{gf}{codegen-method @<codegen> @> @<method>}
325 \dhead{gf}{codegen-target @<codegen> @> @<target>}}
329 {\dhead{cls}{convert-to-ilayout-inst (inst)}
331 {make-convert-to-ilayout-inst @<class> @<chain-head> @<expr>}}
333 SOD_ILAYOUT(@<class>, @<chain-head-nick>, @<expr>)
339 {compute-effective-method-body @<method> @<codegen> @<target>}
342 \begin{describe}{gf}{simple-method-body @<method> @<codegen> @<target>}
345 \begin{describe}{fun}
346 {invoke-method @<codegen> @<target> @<arguments-tail> @<direct-method>}
349 \begin{describe}{fun}{ensure-ilayout-var @<codegen> @<super>}
352 \begin{describe}{fun}{make-trampoline @<codegen> @<super> @<body-func>}
355 \begin{describe}{gf}{effective-method-function-name @<method> @> @<string>}
359 {method-entry-function-name @<method> @<chain-head> @<role> @> @<string>}
362 \begin{describe}{gf}{compute-method-entry-functions @<method> @> @<list>}
365 \begin{describe}{fun}
366 {invoke-delegation-chain @<codegen> @<target> @<basic-tail>
367 @<chain> @<kernel-func>}
370 \begin{describe}{cls}
371 {basic-message (sod-message) \&key :name :location :class :type}
374 \begin{describe}{cls}
375 {simple-message (basic-message) \&key :name :location :class :type}
378 \begin{describe}{cls}
379 {basic-direct-method (sod-method)
380 \&key :message :location :class :type :body :role}
383 \begin{describe}{gf}{sod-method-role @<method> @> @<role>}
386 \begin{describe}{cls}
387 {daemon-direct-method (basic-direct-method) \\ \ind
388 \&key :message :location :class :type :body :role}
391 \begin{describe}{cls}
392 {delegating-direct-method (basic-direct-method) \\ \ind
393 \&key :message :location :class :type :body :role}
396 \begin{describe}{cls}
397 {basic-effective-method (effective-method) \\ \ind
398 \&key :message :class :around-methods :before-methods :after-methods}
403 {effective-method-around-methods @<effective-method> @> @<list>}
405 {effective-method-before-methods @<effective-method> @> @<list>}
407 {effective-method-after-methods @<effective-method> @> @<list>}
408 \dhead{gf}{effective-method-functions @<effective-method> @> @<list>}}
411 \begin{describe}{cls}
412 {simple-effective-method (basic-effective-method) \\ \ind
413 \&key :message :class
414 :around-methods :before-methods :after-methods :primary-methods}
417 \begin{describe}{fun}
418 {basic-effective-method-body @<codegen> @<target> @<method> @<body>}
421 \begin{describe}{cls}
422 {standard-message (simple-message) \&key :name :location :class :type}
425 \begin{describe}{cls}
426 {standard-effective-method (simple-effective-method) \\ \ind
427 \&key :message :class
428 :around-methods :before-methods :after-methods :primary-methods}
431 \begin{describe}{cls}
432 {aggregating-message (simple-message)
433 \&key :name :location :class :type :combination}
437 {aggregating-message-properties @<message> @<combination> @> @<plist>}
441 {compute-aggregating-message-kernel
442 \=@<message> @<combination> @<target> \+\\
443 @<methods> @<arg-names> \&key}
447 {check-aggregating-message-type @<message> @<combination> @<c-type>}
450 \begin{describe}{cls}
451 {aggregating-effective-method (simple-effective-method) \\ \ind
452 \&key :message :class
453 :around-methods :before-methods :after-methods :primary-methods}
456 \begin{describe}{mac}
457 {define-aggregating-method-combination @<combination> \\ \ind\ind
459 @[[ :codegen @<codegen-var> @!
460 :methods @<methods-var> @]]) \-\\
461 @[[ \=:properties (@{ (@{ @<name> @! (@[@<keyword>@] @<name>) @}
464 @[@<suppliedp-var>@]@]) @}^*) @! \+\\
465 :return-type @<c-type> @! \\
466 :around @<around-func> @!
467 :first-method @<first-method-func> @!
468 :method @<method-func> @]]}
471 %%% the method combination story
472 %% compute-effective-methods --> compute-sod-effective-method
474 %% hook-output (basic-effective-method :c)
475 %% basic-effective-method.functions
476 %% compute-method-entry-functions
477 %% compute-effective-method-body
479 %% compute-effective-method-body (simple-effective-method)
480 %% basic-effective-method-body
481 %% simple-method-body (standard-effective-method)
482 %% simple-method-body (aggregating-effective-method)
483 %% message-kernel-function
485 %%%----- That's all, folks --------------------------------------------------
489 %%% TeX-master: "sod.tex"