Dear Wiki user,
You have subscribed to a wiki page or wiki category on "Harmony Wiki" for change notification.
The following page has been changed by Mikhail Fursov:
http://wiki.apache.org/harmony/Jitrino_OPT/opcodes
------------------------------------------------------------------------------
=== Type checking: ===
// cast takes an ExceptionModifier
* [:Jitrino_OPT/opcodes/TauStaticCast: Op_TauStaticCast] - Compile-time assertion. Asserts
that cast is legal.
- * [:Jitrino_OPT/opcodes/TauCast: Op_TauCast] - CastException (succeeds if argument is
null, returns casted object)
+ * [:Jitrino_OPT/opcodes/TauCast: Op_TauCast] - Casts the argument to the specified type.
Succeeds if argument is null, returns casted object. throws CastException if cast is illegal.
* [:Jitrino_OPT/opcodes/TauAsType: Op_TauAsType] - returns casted object if argument is
an instance of, null otherwise
* [:Jitrino_OPT/opcodes/TauInstanceOf: Op_TauInstanceOf] - returns true if argument is
a non-null instance of type T
* [:Jitrino_OPT/opcodes/TauCheckCast: Op_TauCheckCast]
|