Changes between Version 5 and Version 6 of CallingConventionsTasklist
- Timestamp:
- 02/13/09 21:06:06 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CallingConventionsTasklist
v5 v6 7 7 * Remove the TODO mark from t/pmc/multidispatch.t test 32 (see RT #59628). 8 8 9 * Merge inter_call.c and inter_run.c, or completely rename and resort the existing functions. Possibly src/calling.c and src/opcode_runloop.c or src/calling/pcc.c and src/calling/opcodes.c?(Done in r36595)9 * ~~Merge inter_call.c and inter_run.c, or completely rename and resort the existing functions. Possibly src/calling.c and src/opcode_runloop.c or src/calling/pcc.c and src/calling/opcodes.c?~~ (Done in r36595) 10 10 11 11 * There's a huge hodge-podge of functions that do basically the same thing. Trim these down to a logical set that handle the basic cases. (calling from PIR, calling from C, calling from a CallSignature PMC). … … 34 34 35 35 * Modify Parrot_build_sig_object_from_varargs to check if an invocant is present and if "Pi" doesn't already exist at the beginning of the string. 36 ''' 37 CallSignature PMC:'''36 37 '''CallSignature PMC:''' 38 38 39 39 * Add adverb modifier "i" to signature string for an invocant. … … 47 47 '''Integer PMC:''' 48 48 49 * Refactor Integer PMC's overflow mechanism to do a VTABLE call rather than directly performing an MMD call (to allow for vtable overrides).See #6049 * ~~Refactor Integer PMC's overflow mechanism to do a VTABLE call rather than directly performing an MMD call (to allow for vtable overrides).~~ See #60