Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 51444 invoked from network); 31 Jul 2007 14:14:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 31 Jul 2007 14:14:39 -0000 Received: (qmail 21436 invoked by uid 500); 31 Jul 2007 14:14:39 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 21351 invoked by uid 500); 31 Jul 2007 14:14:39 -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 21341 invoked by uid 99); 31 Jul 2007 14:14:38 -0000 Received: from Unknown (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 31 Jul 2007 07:14:38 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 31 Jul 2007 14:14:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 740C81A981A; Tue, 31 Jul 2007 07:14:17 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r561336 - /harmony/enhanced/drlvm/trunk/vm/port/src/lil/pim/m2n.cpp Date: Tue, 31 Jul 2007 14:14:17 -0000 To: commits@harmony.apache.org From: mfursov@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070731141417.740C81A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mfursov Date: Tue Jul 31 07:14:13 2007 New Revision: 561336 URL: http://svn.apache.org/viewvc?view=rev&rev=561336 Log: Adding new file lost in commit with a fix for HARMONY-4433 Added: harmony/enhanced/drlvm/trunk/vm/port/src/lil/pim/m2n.cpp Added: harmony/enhanced/drlvm/trunk/vm/port/src/lil/pim/m2n.cpp URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/port/src/lil/pim/m2n.cpp?view=auto&rev=561336 ============================================================================== --- harmony/enhanced/drlvm/trunk/vm/port/src/lil/pim/m2n.cpp (added) +++ harmony/enhanced/drlvm/trunk/vm/port/src/lil/pim/m2n.cpp Tue Jul 31 07:14:13 2007 @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/** + * @author Evgueni Brevnov + * @version $Revision: 1.1 $ + */ + +#include "m2n.h" + +const uint32 FRAME_UNKNOWN = 0x00; +const uint32 FRAME_NON_UNWINDABLE = 0x80; +const uint32 FRAME_JNI = 0x01 | FRAME_NON_UNWINDABLE; +const uint32 FRAME_COMPILATION = 0x02 | FRAME_NON_UNWINDABLE; +const uint32 FRAME_UNPOPABLE = 0x0000; +const uint32 FRAME_POPABLE = 0x0100; +const uint32 FRAME_POP_NOW = 0x0200; +const uint32 FRAME_POP_DONE = FRAME_POPABLE | FRAME_POP_NOW; +const uint32 FRAME_POP_MASK = 0x0700; +const uint32 FRAME_SAFE_POINT = 0x0800; +const uint32 FRAME_MODIFIED_STACK = 0x1000;