os/kernelhwsrv/kernel/eka/compsupp/rvct/drtaeabi.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "ARM EABI LICENCE.txt"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// in kernel/eka/compsupp.
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// This file is part of drtaeabi.dll.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
sl@0
    19
#include <e32std.h>
sl@0
    20
#include <e32panic.h>
sl@0
    21
sl@0
    22
extern "C" {
sl@0
    23
sl@0
    24
EXPORT_C void abort()
sl@0
    25
    { 
sl@0
    26
    User::RaiseException(EExcAbort);
sl@0
    27
    }
sl@0
    28
sl@0
    29
EXPORT_C void __cxa_pure_virtual()
sl@0
    30
    {
sl@0
    31
    User::Panic( _L("Pure virtual"), EPureVirtualCalled );
sl@0
    32
    }
sl@0
    33
sl@0
    34
#if __ARMCC_VERSION < 300000 
sl@0
    35
IMPORT_C void* __get_typeid(void*);
sl@0
    36
EXPORT_C void* __ARM_get_typeid(void* p)
sl@0
    37
	{
sl@0
    38
	return __get_typeid(p);
sl@0
    39
	}
sl@0
    40
#endif
sl@0
    41
sl@0
    42
} // extern "C"
sl@0
    43
sl@0
    44
sl@0
    45
//
sl@0
    46
// Create the type_info object for void.
sl@0
    47
//
sl@0
    48
sl@0
    49
extern const char * const  $Sub$$_ZTSv = "v";
sl@0
    50
sl@0
    51
__asm void __rt_exporter_dummy()
sl@0
    52
	{
sl@0
    53
	IMPORT _ZTVN10__cxxabiv123__fundamental_type_infoE [DYNAMIC]
sl@0
    54
	IMPORT _ZTSv
sl@0
    55
sl@0
    56
    #if __ARMCC_VERSION < 300000
sl@0
    57
	EXPORT |$Sub$$_ZTIv|
sl@0
    58
    #else
sl@0
    59
	EXPORT |$Sub$$_ZTIv| [DYNAMIC]
sl@0
    60
    #endif
sl@0
    61
sl@0
    62
|$Sub$$_ZTIv|
sl@0
    63
sl@0
    64
	DCD _ZTVN10__cxxabiv123__fundamental_type_infoE
sl@0
    65
	DCD _ZTSv
sl@0
    66
	}
sl@0
    67
sl@0
    68
#if __ARMCC_VERSION > 400000
sl@0
    69
asm void __symbian_prevent_export()
sl@0
    70
	{
sl@0
    71
    IMPORT __rt_uread4
sl@0
    72
    IMPORT __rt_uread8
sl@0
    73
    IMPORT __rt_uwrite4
sl@0
    74
    IMPORT __rt_uwrite8
sl@0
    75
    IMPORT _ll_mul
sl@0
    76
    IMPORT _ll_scmp
sl@0
    77
    IMPORT _ll_sdiv
sl@0
    78
    IMPORT _ll_shift_l
sl@0
    79
    IMPORT _ll_sshift_r
sl@0
    80
    IMPORT _ll_ucmp
sl@0
    81
    IMPORT _ll_udiv
sl@0
    82
    IMPORT _ll_udiv_donemoving
sl@0
    83
    IMPORT _ll_ushift_r
sl@0
    84
sl@0
    85
    IMPORT __ARM_array_delete_general
sl@0
    86
    IMPORT __ARM_array_new_general
sl@0
    87
    IMPORT __ARM_vec_cleanup_rethrow
sl@0
    88
	}
sl@0
    89
#endif
sl@0
    90