Various fixes:
Annotate for file src/overload-resolution.lisp
2009-04-17 tobias 1 ;;; C++ overload resolution
15:26:55 ' 2 ;;; See: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2800.pdf
2009-08-27 tobias 3 ;;;
11:43:13 ' 4 ;;; We handle only the most common cases. Stuff like virtual inheritance
' 5 ;;; that is not needed is not implemented.
2009-04-17 tobias 6
15:26:55 ' 7 (in-package :smoke)
' 8
2009-06-22 tobias 9 (declaim (inline cmp))
12:18:08 ' 10 (defun cmp (a b)
2009-07-22 tobias 11 (- a b))
2009-06-22 tobias 12
2009-07-22 tobias 13 (declaim (inline strcmp))
22:26:05 ' 14 (defcfun strcmp :int (s1 :pointer) (s2 :pointer))
2009-04-17 tobias 15
2009-07-22 tobias 16 (declaim (inline cstring/=))
2009-06-22 tobias 17 (defun cstring/= (string1 string2)
12:18:08 ' 18 "Returns T when the C strings STRING1 and STRING2 are not equal
' 19 and NIL otherwise."
2009-07-22 tobias 20 (not (zerop (strcmp string1 string2))))
2009-04-17 tobias 21
2009-06-22 tobias 22 (defun method-cmp (method class-id name)
12:18:08 ' 23 "Compares METHOD to the method with NAME of class CLASS-ID."
' 24 (declare (foreign-pointer name)
' 25 (type (smoke-index 0) class-id)
' 26 (smoke-method method)
' 27 (optimize (speed 3) (debug 0) (safety 0)))
' 28 (let ((id-cmp (cmp (the (smoke-index 0) (method-slot-value method 'class))
' 29 (the (smoke-index 0) class-id))))
2009-07-22 tobias 30 (declare (type smoke-index id-cmp))
2009-06-22 tobias 31 (if (/= 0 id-cmp)
12:18:08 ' 32 id-cmp
2009-07-22 tobias 33 (strcmp (smoke-method-name method)
2009-06-22 tobias 34 name))))
12:18:08 ' 35
2009-07-08 tobias 36 (declaim (inline first-unabigious-index))
2009-06-22 tobias 37 (defun first-unabigious-index (smoke index)
12:18:08 ' 38 (declare (type smoke-index index)
2009-04-17 tobias 39 (optimize (speed 3)))
2009-06-22 tobias 40 (if (>= index 0)
12:18:08 ' 41 index
' 42 (mem-aref (smoke-module-ambiguous-method-list smoke)
' 43 'smoke-index
' 44 (- index))))
2009-04-17 tobias 45
2009-06-22 tobias 46 (defun find-method-for-class (name class)
12:18:08 ' 47 "Returns the index of a method with name NAME for class CLASS."
' 48 (declare (type foreign-pointer name)
' 49 (type smoke-class class)
' 50 (optimize (speed 3)))
' 51 (let* ((start 1) ;; 0 is "no method"
2009-06-30 tobias 52 (class-id (id class))
22:47:39 ' 53 (smoke (smoke class))
2009-07-03 tobias 54 (end (1+ (smoke-array-length (smoke-module-method-maps smoke)))))
2009-07-08 tobias 55 (declare (type (smoke-index 0) start end)
20:41:19 ' 56 (dynamic-extent start))
2009-06-22 tobias 57 (loop until (> start end) do
12:18:08 ' 58 (let* ((index (the smoke-index (floor (+ end start) 2)))
' 59 (method (make-smoke-method
' 60 :smoke smoke
' 61 :id (the (smoke-index 0)
' 62 (first-unabigious-index
' 63 smoke
' 64 (foreign-slot-value
' 65 (mem-aref (smoke-array-pointer
' 66 (smoke-module-method-maps
' 67 smoke))
' 68 'smoke-method-map index)
' 69 'smoke-method-map
' 70 'method)))))
2009-07-22 tobias 71 (cmp (the smoke-index (method-cmp method class-id name))))
22:26:05 ' 72 (declare (type smoke-index cmp)
2009-07-08 tobias 73 (dynamic-extent method))
2009-07-22 tobias 74 (if (< cmp 0)
22:26:05 ' 75 (setf start (1+ index))
' 76 (if (> cmp 0)
' 77 (setf end (1- index))
' 78 (return-from find-method-for-class index))))))
2009-06-22 tobias 79 -1)
2009-04-17 tobias 80
2009-08-27 tobias 81 (defmacro push-candidate-method (index name argument-count class methods
11:43:13 ' 82 const-p)
2009-06-22 tobias 83 (with-gensyms (method-map method-index method ambig-index i smoke)
12:18:08 ' 84 `(let* ((,smoke (smoke ,class))
' 85 (,method-map (mem-aref
' 86 (smoke-array-pointer
' 87 (smoke-module-method-maps ,smoke))
' 88 'smoke-method-map
2009-07-22 tobias 89 (the smoke-index ,index)))
2009-06-22 tobias 90 (,method-index (foreign-slot-value ,method-map 'smoke-method-map 'method))
12:18:08 ' 91 (,method (make-smoke-method
' 92 :smoke ,smoke
' 93 :id (first-unabigious-index
' 94 ,smoke
' 95 ,method-index))))
' 96 (declare (type smoke-index ,method-index))
' 97 (if (cstring/= ,name
' 98 (smoke-method-name ,method))
' 99 nil
' 100 (progn
' 101 (when (= (the smoke-index ,argument-count)
' 102 (the smoke-index (get-arguments-length ,method)))
' 103 (if (< ,method-index 0)
' 104 (let ((,ambig-index (- ,method-index)))
' 105 (declare (type smoke-index ,ambig-index))
' 106 (loop as ,i = (the smoke-index
' 107 (mem-aref (smoke-module-ambiguous-method-list
' 108 ,smoke)
' 109 'smoke-index
' 110 ,ambig-index))
' 111 while (> (the smoke-index ,i) 0) do
2009-08-27 tobias 112 (incf ,ambig-index)
11:43:13 ' 113 (let ((,method (make-smoke-method :smoke ,smoke
' 114 :id ,i)))
' 115 (unless (and ,const-p (not (const-p ,method)))
' 116 (push ,method ,methods)))))
' 117 (unless (and ,const-p (not (const-p ,method)))
' 118 (push ,method ,methods))))
2009-06-22 tobias 119 t)))))
2009-05-11 tobias 120
2009-08-27 tobias 121 (defun viable-functions (name argument-count class &optional const-p)
2009-06-22 tobias 122 (declare (optimize (speed 3)))
12:18:08 ' 123 (with-foreign-string (name name)
2009-07-22 tobias 124 (let ((methods))
2009-08-27 tobias 125 (let ((smoke (smoke class)))
11:43:13 ' 126 (let ((start-index (find-method-for-class name class)))
' 127 (declare (type smoke-index start-index))
' 128 (when (>= start-index 0)
' 129 (loop for index from start-index downto 1
' 130 while (push-candidate-method index name argument-count class
' 131 methods const-p))
' 132 (loop for index from (1+ start-index)
' 133 to (the smoke-index (smoke-array-length
' 134 (smoke-module-method-maps smoke)))
' 135 while (push-candidate-method index name argument-count class
' 136 methods const-p)))))
2009-06-22 tobias 137 methods)))
12:18:08 ' 138
2009-07-08 tobias 139 (declaim (inline make-conversion make-exact-match make-promotion
20:41:19 ' 140 make-number-conversion make-pointer-conversion
' 141 make-boolean-conversion make-user-conversion))
' 142 (defstruct conversion
2009-09-01 tobias 143 (function-name nil :type (or symbol list function) :read-only t)
2009-07-08 tobias 144 (rank -1 :type fixnum :read-only t))
2009-04-17 tobias 145
2009-07-22 tobias 146 (defstruct (exact-match (:include conversion (rank 0))))
2009-04-17 tobias 147
2009-07-22 tobias 148 (defstruct (promotion (:include conversion (rank 1))))
2009-04-17 tobias 149
2009-07-22 tobias 150 (defstruct (number-conversion (:include conversion (rank 2))))
2009-04-17 tobias 151
2009-07-22 tobias 152 (defstruct (pointer-conversion (:include conversion (rank 3)))
2009-07-08 tobias 153 (from (find-class t) :type class :read-only t)
20:41:19 ' 154 (to (find-class t) :type class :read-only t))
2009-04-17 tobias 155
2009-07-22 tobias 156 (defstruct (boolean-conversion (:include conversion (rank 4))))
2009-04-17 tobias 157
2009-07-22 tobias 158 (defstruct (user-conversion (:include conversion (rank 5))))
2009-04-17 tobias 159
2009-08-27 tobias 160 (defgeneric conversion<= (conversion1 conversion2)
2009-04-17 tobias 161 ;; 13.3.3.2 Ranking implicit conversion sequences
15:26:55 ' 162 ;; 4
' 163 (:method (conversion1 conversion2)
2009-06-22 tobias 164 (declare (optimize (speed 3)))
2009-08-27 tobias 165 (and (not (null conversion1))
11:43:13 ' 166 (or (null conversion2)
' 167 (<= (the fixnum (conversion-rank conversion1))
' 168 (the fixnum (conversion-rank conversion2))))))
2009-04-17 tobias 169 (:method ((conversion1 pointer-conversion) (conversion2 pointer-conversion))
2009-06-22 tobias 170 (declare (optimize (speed 3)))
2009-07-08 tobias 171 (if (eq (pointer-conversion-from conversion1)
20:41:19 ' 172 (pointer-conversion-from conversion2))
2009-04-17 tobias 173 ;; A->B < A->C <=> B subclass of C
2009-07-08 tobias 174 (subtypep (pointer-conversion-to conversion1)
20:41:19 ' 175 (pointer-conversion-to conversion2))
' 176 (if (eq (pointer-conversion-to conversion1)
' 177 (pointer-conversion-to conversion2))
2009-04-17 tobias 178 ;; B->A < C->A <=> B subclass of C
2009-07-08 tobias 179 (subtypep (pointer-conversion-from conversion1)
20:41:19 ' 180 (pointer-conversion-from conversion2))
2009-04-17 tobias 181 nil))))
15:26:55 ' 182
' 183 (defgeneric conversion= (conversion1 conversion2)
' 184 (:method (conversion1 conversion2)
2009-08-27 tobias 185 (and (conversion<= conversion1 conversion2)
11:43:13 ' 186 (conversion<= conversion2 conversion1)))
2009-05-11 tobias 187 (:method ((conversion1 (eql nil)) (conversion2 (eql nil)))
2009-07-22 tobias 188 t))
2009-04-17 tobias 189
15:26:55 ' 190 (defun max-conversion (conversion1 conversion2)
2009-05-11 tobias 191 "Returns the greater conversion of CONVERSION1 and CONVERSION2."
2009-04-17 tobias 192 (if (null conversion2)
15:26:55 ' 193 conversion1
2009-08-27 tobias 194 (if (conversion<= conversion1 conversion2)
2009-04-17 tobias 195 conversion2
15:26:55 ' 196 conversion1)))
2009-05-11 tobias 197
2010-02-20 tobias 198 (eval-when (:compile-toplevel :load-toplevel :execute)
17:24:36 ' 199 (defun conversion-function (name &optional arg)
' 200 (if arg
' 201 `(if (using-typep)
' 202 `(,,name
' 203 (find-class ',(class-name ,arg)))
' 204 #'(lambda (object)
' 205 (funcall (fdefinition ,name)
' 206 object ,arg)))
' 207 `(if (using-typep)
' 208 ,name
' 209 (fdefinition ,name)))))
' 210
2009-09-01 tobias 211 (defmacro make-match (type &optional (name ''identity) (argument nil)
2009-05-11 tobias 212 &rest args)
2010-02-20 tobias 213 `(,(symbolicate 'make- (eval type))
17:24:36 ' 214 :function-name ,(conversion-function name argument)
' 215 ,@args))
2009-04-17 tobias 216
2009-05-11 tobias 217 (defun+using-type get-conversion-sequence object (object type &optional user)
2009-07-01 tobias 218 "Retrains a conversion sequence to convert a instance of type CLASS
2009-05-11 tobias 219 to an instance of type TYPE. When USER is true user conversions are considered."
2009-07-08 tobias 220 (if-let (match (call-using-type exact-match object type))
14:56:52 ' 221 (if (eql t match)
' 222 (make-match 'exact-match)
' 223 (make-match 'exact-match match))
' 224 (or (call-using-type promotion object type)
' 225 (call-using-type conversion object type)
' 226 (and user
' 227 (call-using-type user-conversion object type)))))
2009-04-17 tobias 228
2009-05-11 tobias 229 (defun+using-types standard-conversion-sequence (method classes &optional user)
11:07:39 ' 230 "Returns the conversion sequences to convert the arguments of types CLASSES
' 231 to the types required by METHOD."
2009-08-27 tobias 232 (if (null classes)
11:43:13 ' 233 (values (make-match 'exact-match) nil)
' 234 (let ((max-rank)
' 235 (conversions))
' 236 (loop for type in (arguments method)
' 237 for class in classes do
' 238 (let ((rank (call-using-type get-conversion-sequence class type user)))
' 239 (when (null rank)
' 240 (setf max-rank nil)
' 241 (return nil))
' 242 (setf max-rank (max-conversion rank max-rank))
' 243 (push (conversion-function-name rank) conversions)))
' 244 (values max-rank (reverse conversions)))))
2009-04-17 tobias 245
2009-05-11 tobias 246 (defun+using-types conversion-sequence (method classes)
11:07:39 ' 247 (call-using-types standard-conversion-sequence method classes t))
2009-04-17 tobias 248
2009-08-27 tobias 249 (defun+using-types find-best-viable-function (name arguments class
11:43:13 ' 250 &optional const-p)
2009-05-11 tobias 251 "Returns the method named NAME of class CLASS that can be called
11:07:39 ' 252 using arguments of types TYPES with the lowest conversion sequence."
' 253 (call-using-types find-best-viable-function2
' 254 (function-using-types conversion-sequence)
2009-08-27 tobias 255 name arguments class const-p))
2009-04-17 tobias 256
2009-08-27 tobias 257 (defun+using-types find-best-viable-function2 (get-sequence name objects class
11:43:13 ' 258 &optional const-p)
2009-05-11 tobias 259 (when (and (using-typep)
11:07:39 ' 260 (not (typep class 'smoke-standard-class)))
' 261 (throw 'unspecific-type class))
2009-05-11 tobias 262 (let ((viable-functions (viable-functions name (length objects)
2009-08-27 tobias 263 class const-p))
2009-05-11 tobias 264 (best-rank)
2009-04-17 tobias 265 (best-method)
15:26:55 ' 266 (conversions))
2009-08-27 tobias 267 (if (null viable-functions)
11:43:13 ' 268 (dolist (class (closer-mop:class-direct-superclasses class)
' 269 (values best-method nil))
' 270 (when (typep class 'smoke-standard-class)
' 271 (multiple-value-bind (method conversions)
' 272 (call-using-types find-best-viable-function2 get-sequence name objects class const-p)
' 273 (when method
' 274 (return (values method conversions))))))
' 275 (loop for method in viable-functions
' 276 finally (return (values best-method conversions)) do
' 277 (block next
' 278 (multiple-value-bind (rank method-conversions)
' 279 (funcall get-sequence method objects)
' 280 (when (and rank (conversion<= rank best-rank))
' 281 (when (conversion= rank best-rank)
' 282 ;; FIXME catch all ambigious overloads
' 283 (if const-p
' 284 (error "Ambigious overload ~A." method)
' 285 (when (const-p method)
' 286 ;; assume that the previous method is a non
' 287 ;; const one and thus more specific.
' 288 (return-from next))))
' 289 (setf best-rank rank)
' 290 (setf best-method method)
' 291 (setf conversions method-conversions)
' 292 (when (and (conversion= rank (make-match 'exact-match))
' 293 (not (xor const-p (const-p method))))
' 294 (return (values method conversions))))))))))
2009-04-17 tobias 295
2009-05-11 tobias 296 (defvar *from-lisp-translations* (make-hash-table :test 'equal))
11:07:39 ' 297
' 298 (defmacro define-from-lisp-translation (type-names lisp-type
' 299 &optional
' 300 (conversion-function-name 'identity))
2009-05-11 tobias 301 "Defines a translation from LISP-TYPE to the C++ types TYPE-NAMES using
14:11:35 ' 302 the function CONVERSION-FUNCTION-NAME."
2009-05-11 tobias 303 `(progn ,@(loop for type-name in (ensure-list type-names)
2009-05-11 tobias 304 collect `(setf (gethash ,type-name *from-lisp-translations*)
2009-09-02 tobias 305 #'(lambda (type type-p)
11:49:34 ' 306 (and (if type-p
' 307 (subtypep type ',lisp-type)
' 308 (typep type ',lisp-type))
2009-05-11 tobias 309 ',conversion-function-name))))))
11:07:39 ' 310
' 311 (define-from-lisp-translation ("void*" "const void*" "void**" "const void**")
' 312 foreign-pointer)
' 313
' 314 ;; FIXME grovel this?
' 315 (deftype c-integer (ctype)
' 316 (let ((bits (* 8 (foreign-type-size ctype))))
2009-05-11 tobias 317 (if (starts-with-subseq
2009-05-11 tobias 318 (symbol-name :unsigned)
11:07:39 ' 319 (symbol-name ctype))
' 320 `(unsigned-byte ,bits)
' 321 `(signed-byte ,bits))))
' 322
' 323
' 324 (defun+using-type exact-match object (object type)
' 325 "Test for an exact match."
2009-04-17 tobias 326 (case (type-id type)
2009-06-22 tobias 327 (0 (when-let (test (gethash (name type) *from-lisp-translations*))
2009-09-02 tobias 328 (funcall test object (using-typep))))
2009-05-11 tobias 329 (1 (object.typep 'boolean))
11:07:39 ' 330 (2 (object.typep 'standard-char))
' 331 (3 (object.typep '(c-integer :unsigned-char)))
' 332 (4 (object.typep '(c-integer :short)))
' 333 (5 (object.typep '(c-integer :unsigned-short)))
' 334 (6 (object.typep '(c-integer :int)))
' 335 (7 (object.typep '(c-integer :unsigned-int)))
2010-02-20 tobias 336 (8 (object.typep '(c-integer :long)))
18:01:21 ' 337 (9 (object.typep '(c-integer :unsigned-long)))
2009-05-11 tobias 338 (10 (object.typep 'single-float))
11:07:39 ' 339 (11 (object.typep 'double-float))
2010-01-25 tobias 340 (12 (object.typep 'enum)) ;; FIXME enum-type
2009-09-09 tobias 341 (13 (and (object.typep 'smoke-standard-object)
13:22:32 ' 342 (smoke-type= (get-class type) (object.type-of))))))
2009-05-11 tobias 343
11:07:39 ' 344
' 345 (defun make-cleanup-pointer (pointer cleanup-function)
2009-05-26 tobias 346 "Returns a pointer that calls CLEANUP-FUNCTION with pointer as argument
09:54:47 ' 347 when it is finalized."
2009-05-11 tobias 348 (let ((address (pointer-address pointer)))
11:07:39 ' 349 (tg:finalize pointer #'(lambda ()
' 350 (funcall cleanup-function
' 351 (make-pointer address))))))
' 352
2009-04-17 tobias 353 (defun make-auto-pointer (pointer)
15:26:55 ' 354 "Returns a pointer that frees the memory at POINTER when it is finalized."
2009-05-26 tobias 355 (make-cleanup-pointer pointer #'foreign-free))
2009-04-17 tobias 356
2009-05-11 tobias 357 (defun coerce-c-string (string)
11:07:39 ' 358 (make-auto-pointer (foreign-string-alloc string)))
' 359
2010-02-20 tobias 360 (defun coerce-enum (enum)
2009-05-11 tobias 361 (cxx-support:value enum))
11:07:39 ' 362
2009-07-02 tobias 363 (defun coerce-double-float (number)
21:51:50 ' 364 (float number 0d0))
' 365
' 366 ;; FIXME incomplete
2009-05-11 tobias 367 (defun+using-type promotion object (object type)
2009-04-17 tobias 368 (declare (smoke-type type))
15:26:55 ' 369 (case (type-id type)
2009-05-11 tobias 370 (0 (when (and (string= (name type) "const char*")
11:07:39 ' 371 (object.typep 'string))
' 372 (make-match 'promotion 'coerce-c-string)))
' 373 (6 (when (object.typep 'enum)
2010-02-20 tobias 374 (make-match 'promotion 'coerce-enum)))
2009-05-11 tobias 375 (7 (when (object.typep 'enum)
2010-02-20 tobias 376 (make-match 'promotion 'coerce-enum)))
2009-07-02 tobias 377 (11 (when (object.typep 'real)
2010-02-20 tobias 378 (make-match 'promotion 'coerce-double-float)))))
2009-04-17 tobias 379
2009-05-26 tobias 380 (declaim (inline coerce-to-class))
2009-05-11 tobias 381 (defun coerce-cast (object to-class)
11:07:39 ' 382 (cast object to-class))
2009-04-17 tobias 383
2009-05-11 tobias 384 (defun coerce-to-void (object)
11:07:39 ' 385 object)
2009-04-17 tobias 386
2009-05-11 tobias 387 (defun+using-type conversion-cast object (object type)
11:07:39 ' 388 (when (and (class-p type)
' 389 (object.typep 'smoke-standard-object)
2009-08-27 tobias 390 (derived-p (object.type-of) (get-class type))
11:43:13 ' 391 (find-smoke-class (get-class type)))
2009-05-11 tobias 392 (make-match 'pointer-conversion
11:07:39 ' 393 'coerce-cast
' 394 (find-smoke-class (get-class type))
' 395 :from (object.type-of)
' 396 :to (find-smoke-class (get-class type)))))
' 397
' 398 (defun+using-type conversion-void object (object type)
' 399 (when (and (string= (name type) "void*")
' 400 (object.typep 'smoke-standard-object))
' 401 (make-match 'pointer-conversion
' 402 'coerce-void
' 403 nil
' 404 :from (object.type-of)
' 405 :to (find-class 't))))
' 406
' 407 (defun+using-type conversion-pointer object (object type)
2009-07-22 tobias 408 ;; Not using pointer-p to allow passing a raw pointer for objects on
22:26:05 ' 409 ;; the stack and references.
2009-05-24 tobias 410 ;; (e.g.: for qInstallMsgHandler(QtMsgHandler) )
21:28:44 ' 411 ;;
2009-07-22 tobias 412 ;; FIXME this breaks passing pointers to references.
22:26:05 ' 413 ;;
' 414 ;; e.g.: calling the function foo(QByteArray& foo) with
' 415 ;; (foo pointer) assumes pointer to point to a QByteArray, but
' 416 ;; actually the conversion sequence QByteArray(pointer) should be
' 417 ;; used. When pointer is a null pointer it fails horribly!.
2009-08-02 tobias 418 ;;
10:12:41 ' 419 ;; But it is needed for passing the int pointer in QApplication(int&, char**).
2009-05-24 tobias 420 (when (and (or (= 0 (type-id type)) ; voidp
21:28:44 ' 421 (= 13 (type-id type))) ; class
2009-05-11 tobias 422 (object.typep 'foreign-pointer))
11:07:39 ' 423 (make-match 'pointer-conversion 'identity nil
2009-08-02 tobias 424 :from (find-class 't)
10:12:41 ' 425 :to (find-class 't)))) ;; FIXME get the class when applicable
2009-05-11 tobias 426
11:07:39 ' 427
' 428 (defun+using-type conversion object (object type)
' 429 (or (call-using-type conversion-cast object type)
' 430 (call-using-type conversion-void object type)
' 431 (call-using-type conversion-pointer object type)))
' 432
' 433 (defun+using-type user-conversion object (object type)
' 434 (or (call-using-type operator-conversion object type)
' 435 (call-using-type constructor-conversion object type)))
' 436
2009-07-24 tobias 437 (defun conversion-operator-name (to-type)
13:32:23 ' 438 (concatenate 'string
' 439 "operator "
' 440 (if (class-p to-type)
' 441 (name (get-class to-type))
2009-08-27 tobias 442 (name to-type))))
2009-07-24 tobias 443
13:32:23 ' 444 (defun coerce-to-type (object method)
' 445 (pointer-call method (pointer object)))
' 446
2009-05-11 tobias 447 (defun+using-type operator-conversion object (object type)
11:07:39 ' 448 (when (object.typep 'smoke-standard-object)
' 449 (let ((method (find-smoke-method (object.type-of)
2009-07-24 tobias 450 (conversion-operator-name type))))
2009-05-11 tobias 451 (when (valid-p method)
2009-07-24 tobias 452 (if (pointer-p type)
13:32:23 ' 453 (make-match 'user-conversion
' 454 'coerce-to-type
' 455 method)
' 456 (make-match 'user-conversion
' 457 (lispify (name method) :cxx)))))))
2009-05-11 tobias 458
2009-05-26 tobias 459 (declaim (inline coerce-to-class))
2009-05-11 tobias 460 (defun coerce-to-class (object to-class)
11:07:39 ' 461 (make-instance to-class
' 462 :args (list object)))
' 463
' 464 (defun+using-type constructor-conversion object (object type)
' 465 (when (class-p type)
2010-01-10 tobias 466 (let ((to-class (find-smoke-class (get-class type) nil)))
17:31:42 ' 467 (when (and to-class
' 468 (call-using-types find-best-viable-function2
' 469 (if (using-typep)
' 470 #'standard-conversion-sequence-using-types
' 471 #'standard-conversion-sequence)
' 472 (constructor-name (get-class type))
' 473 (list object) to-class))
' 474 (make-match 'user-conversion
' 475 'coerce-to-class
' 476 to-class)))))
2009-04-17 tobias 477
15:26:55 ' 478 (defun call-sequence (method object sequence &rest args)
' 479 (s-call method object
2009-05-11 tobias 480 (mapcar #'(lambda (conversion argument)
11:07:39 ' 481 (funcall conversion argument))
' 482 sequence args)))
2009-05-27 tobias 483
17:47:28 ' 484 (defun format-no-applicable-cxx-method (stream name class arguments)
' 485 (format stream
' 486 "No applicable method ~S of ~A for ~S.
2009-07-02 tobias 487 Candidates are:~{~T~A~%~}."
2009-05-27 tobias 488 name class arguments
17:47:28 ' 489 (mapcar #'signature
' 490 (viable-functions name
' 491 (length arguments)
' 492 (smoke-class-of class)))))
' 493
' 494 (define-condition no-applicable-cxx-method (error)
' 495 ((method :initarg :method :reader condition-method)
' 496 (class :initarg :class :reader condition-class)
' 497 (arguments :initarg :arguments :reader condition-arguments))
' 498 (:report (lambda (condition stream)
' 499 (format-no-applicable-cxx-method stream
' 500 (condition-method condition)
' 501 (condition-class condition)
' 502 (condition-arguments condition)))))
2009-09-01 tobias 503
2010-04-03 tobias 504
2009-04-17 tobias 505 (defun call-using-args (object-or-class name arguments)
2009-06-22 tobias 506 "Calls the method NAME of OBJECT-OR-CLASS with ARGUMENTS."
2009-09-09 tobias 507 (declare (optimize (speed 3)))
2009-08-27 tobias 508 (multiple-value-bind (method sequence)
2010-02-20 tobias 509 (find-best-viable-function name
17:24:36 ' 510 arguments
' 511 (smoke-class-of object-or-class)
' 512 (when (typep object-or-class
' 513 'smoke-standard-object)
' 514 (const-p object-or-class)))
2009-08-27 tobias 515 (when (null method)
11:43:13 ' 516 (error (make-condition 'no-applicable-cxx-method
' 517 :method name
' 518 :class object-or-class
' 519 :arguments arguments)))
2010-02-20 tobias 520 (if (static-p method)
17:24:36 ' 521 (apply #'call-sequence method (null-pointer) sequence arguments)
' 522 (apply #'call-sequence method (cast object-or-class (get-class method))
' 523 sequence arguments))))