/*****************************************************************************
 * Copyright (c) 1997-2007, Intel Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Intel Corporation - Initial API and implementation
 *
 * $Id$ 
 *****************************************************************************/
//

        // pseudo instructions
        MNM_FIRST_PSEUDO,                           // start of pseudo instructions

        MNM_PSEUDO_START = MNM_FIRST_PSEUDO,        // first instruction in method

        MNM_PSEUDO_END,                             // last instruction in method

        MNM_PSEUDO_TARGET,                          // branch target

        MNM_PSEUDO_TRY,                             // start of 'try' block
                                                    // operand: interface of the start handler

        MNM_PSEUDO_END_TRY,                         // end of 'try' block.

        MNM_PSEUDO_FINALLY,                         // start of 'finally' handler
                                                    // operand: interface of the end handler

        MNM_PSEUDO_END_FINALLY,                     // end of 'finally' handler

        MNM_PSEUDO_CATCH,                           // start of 'catch' handler
                                                    // operand: interface of the end handler

        MNM_PSEUDO_END_CATCH,                       // end of 'catch' handler

        MNM_PSEUDO_FAULT,                           // start of 'fault' handler
                                                    // operand: interface of the end handler

        MNM_PSEUDO_END_FAULT,                       // end of 'falut' handler

        MNM_PSEUDO_FILTER,                          // start of 'filter' handler
                                                    // operand: interface of the end handler

        MNM_PSEUDO_END_FILTER,                      // end of 'filter' handler

        MNM_PSEUDO_ILLEGAL,                         // error indication

        MNM_LAST_PSEUDO                             // end of pseudo instructions
