The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1 | /* |
David 'Digit' Turner | 5c73464 | 2010-01-20 12:36:51 -0800 | [diff] [blame] | 2 | * Copyright (C) 2008-2010 The Android Open Source Project |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 3 | * All rights reserved. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 8 | * * Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * * Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in |
| 12 | * the documentation and/or other materials provided with the |
| 13 | * distribution. |
| 14 | * |
| 15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 16 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 17 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 18 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 19 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 20 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 21 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 22 | * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 23 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 24 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 25 | * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 26 | * SUCH DAMAGE. |
| 27 | */ |
| 28 | |
| 29 | #ifndef _LINKER_DEBUG_H_ |
| 30 | #define _LINKER_DEBUG_H_ |
| 31 | |
| 32 | #include <stdio.h> |
| 33 | |
David 'Digit' Turner | 5c73464 | 2010-01-20 12:36:51 -0800 | [diff] [blame] | 34 | /* set LINKER_DEBUG_TO_LOG to 1 to send the logs to logcat, |
| 35 | * or 0 to use stdout instead. |
| 36 | */ |
| 37 | #define LINKER_DEBUG_TO_LOG 1 |
| 38 | #define TRACE_DEBUG 1 |
| 39 | #define DO_TRACE_LOOKUP 1 |
| 40 | #define DO_TRACE_RELO 1 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 41 | #define TIMING 0 |
| 42 | #define STATS 0 |
| 43 | #define COUNT_PAGES 0 |
| 44 | |
| 45 | /********************************************************************* |
| 46 | * You shouldn't need to modify anything below unless you are adding |
| 47 | * more debugging information. |
| 48 | * |
| 49 | * To enable/disable specific debug options, change the defines above |
| 50 | *********************************************************************/ |
| 51 | |
| 52 | |
| 53 | /*********************************************************************/ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 54 | |
Elliott Hughes | 1e980b6 | 2013-01-17 18:36:06 -0800 | [diff] [blame^] | 55 | #include <private/debug_format.h> |
Nick Kralevich | 3697b52 | 2012-08-24 13:40:25 -0700 | [diff] [blame] | 56 | |
David 'Digit' Turner | 5c73464 | 2010-01-20 12:36:51 -0800 | [diff] [blame] | 57 | #if LINKER_DEBUG_TO_LOG |
Elliott Hughes | bedfe38 | 2012-08-14 14:07:59 -0700 | [diff] [blame] | 58 | #define _PRINTVF(v,x...) \ |
David 'Digit' Turner | 5c73464 | 2010-01-20 12:36:51 -0800 | [diff] [blame] | 59 | do { \ |
Elliott Hughes | 1e980b6 | 2013-01-17 18:36:06 -0800 | [diff] [blame^] | 60 | if (debug_verbosity > (v)) __libc_format_log(5-(v),"linker",x); \ |
Dima Zavin | 2e85579 | 2009-05-20 18:28:09 -0700 | [diff] [blame] | 61 | } while (0) |
David 'Digit' Turner | 5c73464 | 2010-01-20 12:36:51 -0800 | [diff] [blame] | 62 | #else /* !LINKER_DEBUG_TO_LOG */ |
Elliott Hughes | bedfe38 | 2012-08-14 14:07:59 -0700 | [diff] [blame] | 63 | #define _PRINTVF(v,x...) \ |
David 'Digit' Turner | 5c73464 | 2010-01-20 12:36:51 -0800 | [diff] [blame] | 64 | do { \ |
Elliott Hughes | 1e980b6 | 2013-01-17 18:36:06 -0800 | [diff] [blame^] | 65 | if (debug_verbosity > (v)) __libc_format_fd(1, x); \ |
David 'Digit' Turner | 5c73464 | 2010-01-20 12:36:51 -0800 | [diff] [blame] | 66 | } while (0) |
| 67 | #endif /* !LINKER_DEBUG_TO_LOG */ |
Nick Kralevich | 3697b52 | 2012-08-24 13:40:25 -0700 | [diff] [blame] | 68 | |
Elliott Hughes | bedfe38 | 2012-08-14 14:07:59 -0700 | [diff] [blame] | 69 | #define PRINT(x...) _PRINTVF(-1, x) |
| 70 | #define INFO(x...) _PRINTVF(0, x) |
| 71 | #define TRACE(x...) _PRINTVF(1, x) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 72 | |
| 73 | #if TRACE_DEBUG |
Elliott Hughes | bedfe38 | 2012-08-14 14:07:59 -0700 | [diff] [blame] | 74 | #define DEBUG(x...) _PRINTVF(2, "DEBUG: " x) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 75 | #else /* !TRACE_DEBUG */ |
| 76 | #define DEBUG(x...) do {} while (0) |
| 77 | #endif /* TRACE_DEBUG */ |
| 78 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 79 | #define TRACE_TYPE(t,x...) do { if (DO_TRACE_##t) { TRACE(x); } } while (0) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 80 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 81 | #endif /* _LINKER_DEBUG_H_ */ |