typemap.c

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 123 行

C
123
字号
/****************************************************************************
*
*                            Open Watcom Project
*
*    Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
*  ========================================================================
*
*    This file contains Original Code and/or Modifications of Original
*    Code as defined in and that are subject to the Sybase Open Watcom
*    Public License version 1.0 (the 'License'). You may not use this file
*    except in compliance with the License. BY USING THIS FILE YOU AGREE TO
*    ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
*    provided with the Original Code and Modifications, and is also
*    available at www.sybase.com/developer/opensource.
*
*    The Original Code and all software distributed under the License are
*    distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
*    EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
*    ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
*    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
*    NON-INFRINGEMENT. Please see the License for the specific language
*    governing rights and limitations under the License.
*
*  ========================================================================
*
* Description:  WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
*               DESCRIBE IT HERE!
*
****************************************************************************/


#include "standard.h"
#include "coderep.h"
#include "typedef.h"
#include "cgdefs.h"
#include "procdef.h"

extern  type_def*       TypeAddress(cg_type);
extern  type_class_def  MapPointer(cg_type);
extern  type_class_def  MapIntReturn(cg_type);
extern  type_class_def  MapFloat(cg_type,call_attributes);
extern  type_class_def  MapStruct(type_length,call_attributes);

static cg_type  Types[] = {
         T_UINT_1,
         T_INT_1,
         T_UINT_2,
         T_INT_2,
         T_UINT_4,
         T_INT_4,
         T_UINT_8,
         T_INT_8,
         T_LONG_POINTER,
         T_HUGE_POINTER,
         T_SINGLE,
         T_DOUBLE,
         T_DOUBLE,
         T_DEFAULT
         };


extern  type_def        *ClassType( type_class_def tipe ) {
/*********************************************************/

    return( TypeAddress( Types[ tipe ] ) );
}


extern  type_class_def  ReturnClass( type_def *tipe, call_attributes attr ) {
/***************************************************************************/

    switch( tipe->refno ) {
    case T_INT_1:
    case T_UINT_1:
    case T_INT_2:
    case T_UINT_2:
    case T_INT_4:
    case T_UINT_4:
    case T_INT_8:
    case T_UINT_8:
        return( MapIntReturn( tipe->refno ) );
    case T_NEAR_POINTER:
    case T_NEAR_CODE_PTR:
    case T_HUGE_POINTER:
    case T_LONG_CODE_PTR:
    case T_LONG_POINTER:
        return( MapPointer( tipe->refno ) );
    case T_SINGLE:
    case T_DOUBLE:
    case T_LONG_DOUBLE:
        return( MapFloat( tipe->refno, attr ) );
    default:
        return( MapStruct( tipe->length, attr ) );
    }
}


extern  type_class_def  TypeClass( type_def *tipe ) {
/***************************************************/

    switch( tipe->refno ) {
    case T_INT_1:
        return( I1 );
    case T_UINT_1:
        return( U1 );
    case T_INT_2:
        return( I2 );
    case T_UINT_2:
        return( U2 );
    case T_INT_4:
        return( I4 );
    case T_UINT_4:
        return( U4 );
    case T_INT_8:
        return( I8 );
    case T_UINT_8:
        return( U8 );
    default:
        return( ReturnClass( tipe, EMPTY ) );
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?