Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 98351 invoked from network); 27 May 2008 09:30:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 May 2008 09:30:39 -0000 Received: (qmail 41912 invoked by uid 500); 27 May 2008 09:30:40 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 41896 invoked by uid 500); 27 May 2008 09:30:40 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 41887 invoked by uid 99); 27 May 2008 09:30:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 May 2008 02:30:40 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 May 2008 09:30:01 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 0F8BCD2EB for ; Tue, 27 May 2008 09:30:18 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: commits@harmony.apache.org Date: Tue, 27 May 2008 09:30:17 -0000 Message-ID: <20080527093017.18220.72980@eos.apache.org> Subject: [Harmony Wiki] Update of "Jitrino OPT/opcodes" by Mikhail Fursov X-Virus-Checked: Checked by ClamAV on apache.org 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]