[AArch64] Split X-reg UBFIZ into W-reg LSL when possible
[official-gcc.git] / libcilkrts / runtime / sslib / safeclib_private.h
blob7280e879a8e48ddd1c647aab93cd6de542d34fe1
1 /*------------------------------------------------------------------
2 * safeclib_private.h - Internal library references
4 * 2012, Jonathan Toppins <jtoppins@users.sourceforge.net>
6 * Copyright (c) 2012, 2013 by Cisco Systems, Inc
7 * All rights reserved.
9 * Permission is hereby granted, free of charge, to any person
10 * obtaining a copy of this software and associated documentation
11 * files (the "Software"), to deal in the Software without
12 * restriction, including without limitation the rights to use,
13 * copy, modify, merge, publish, distribute, sublicense, and/or
14 * sell copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following
16 * conditions:
18 * The above copyright notice and this permission notice shall be
19 * included in all copies or substantial portions of the Software.
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
23 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
25 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
26 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * OTHER DEALINGS IN THE SOFTWARE.
29 *------------------------------------------------------------------
32 #ifndef __SAFECLIB_PRIVATE_H__
33 #define __SAFECLIB_PRIVATE_H__
35 #ifdef __KERNEL__
36 /* linux kernel environment */
38 #include <linux/kernel.h>
39 #include <linux/module.h>
40 #include <linux/ctype.h>
42 #define RCNEGATE(x) ( -(x) )
44 #define slprintf(...) printk(KERN_EMERG __VA_ARGS__)
45 #define slabort()
46 #ifdef DEBUG
47 #define sldebug_printf(...) printk(KERN_DEBUG __VA_ARGS__)
48 #endif
50 #else /* !__KERNEL__ */
52 #if HAVE_CONFIG_H
53 #include "config.h"
54 #endif
56 #include <stdio.h>
57 #ifdef STDC_HEADERS
58 # include <ctype.h>
59 # include <stdlib.h>
60 # include <stddef.h>
61 #else
62 # ifdef HAVE_STDLIB_H
63 # include <stdlib.h>
64 # endif
65 #endif
66 #ifdef HAVE_STRING_H
67 # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
68 # include <memory.h>
69 # endif
70 # include <string.h>
71 #endif
72 #ifdef HAVE_LIMITS_H
73 # include <limits.h>
74 #endif
76 #define EXPORT_SYMBOL(sym)
77 #define RCNEGATE(x) (x)
79 #define slprintf(...) fprintf(stderr, __VA_ARGS__)
80 #define slabort() abort()
81 #ifdef DEBUG
82 #define sldebug_printf(...) printf(__VA_ARGS__)
83 #endif
85 #endif /* __KERNEL__ */
87 #ifndef sldebug_printf
88 #define sldebug_printf(...)
89 #endif
91 #include "safe_lib.h"
93 #endif /* __SAFECLIB_PRIVATE_H__ */