Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
exports.c
Go to the documentation of this file.
1 /*
2  * Copyright 2010 Tilera Corporation. All Rights Reserved.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation, version 2.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11  * NON INFRINGEMENT. See the GNU General Public License for
12  * more details.
13  *
14  * Exports from assembler code and from libtile-cc.
15  */
16 
17 #include <linux/module.h>
18 
19 /* arch/tile/lib/usercopy.S */
20 #include <linux/uaccess.h>
27 
28 /* arch/tile/kernel/entry.S */
29 #include <linux/kernel.h>
30 #include <asm/processor.h>
33 
34 /* arch/tile/kernel/head.S */
36 
37 /* arch/tile/lib/, various memcpy files */
42 #ifdef __tilegx__
43 EXPORT_SYMBOL(__copy_in_user_inatomic);
44 #endif
45 
46 /* hypervisor glue */
47 #include <hv/hypervisor.h>
58 
59 /* libgcc.a */
66 int64_t __divdi3(int64_t dividend, int64_t divisor);
74 int64_t __moddi3(int64_t dividend, int64_t divisor);
76 #ifndef __tilegx__
77 int64_t __muldi3(int64_t, int64_t);
79 uint64_t __lshrdi3(uint64_t, unsigned int);
81 uint64_t __ashrdi3(uint64_t, unsigned int);
83 uint64_t __ashldi3(uint64_t, unsigned int);
85 #endif