Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Name: acdebug.h - ACPI/AML debugger |
| 4 | * |
| 5 | *****************************************************************************/ |
| 6 | |
| 7 | /* |
David E. Box | 82a8094 | 2015-02-05 15:20:45 +0800 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2015, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * All rights reserved. |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or without |
| 12 | * modification, are permitted provided that the following conditions |
| 13 | * are met: |
| 14 | * 1. Redistributions of source code must retain the above copyright |
| 15 | * notice, this list of conditions, and the following disclaimer, |
| 16 | * without modification. |
| 17 | * 2. Redistributions in binary form must reproduce at minimum a disclaimer |
| 18 | * substantially similar to the "NO WARRANTY" disclaimer below |
| 19 | * ("Disclaimer") and any redistribution must be conditioned upon |
| 20 | * including a substantially similar Disclaimer requirement for further |
| 21 | * binary redistribution. |
| 22 | * 3. Neither the names of the above-listed copyright holders nor the names |
| 23 | * of any contributors may be used to endorse or promote products derived |
| 24 | * from this software without specific prior written permission. |
| 25 | * |
| 26 | * Alternatively, this software may be distributed under the terms of the |
| 27 | * GNU General Public License ("GPL") version 2 as published by the Free |
| 28 | * Software Foundation. |
| 29 | * |
| 30 | * NO WARRANTY |
| 31 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 32 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 33 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR |
| 34 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 35 | * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 36 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 37 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 38 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 39 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING |
| 40 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 41 | * POSSIBILITY OF SUCH DAMAGES. |
| 42 | */ |
| 43 | |
| 44 | #ifndef __ACDEBUG_H__ |
| 45 | #define __ACDEBUG_H__ |
| 46 | |
Bob Moore | 9355611 | 2015-10-19 10:24:26 +0800 | [diff] [blame] | 47 | /* The debugger is used in conjunction with the disassembler most of time */ |
| 48 | |
| 49 | #ifdef ACPI_DISASSEMBLER |
| 50 | #include "acdisasm.h" |
| 51 | #endif |
| 52 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 53 | #define ACPI_DEBUG_BUFFER_SIZE 0x4000 /* 16K buffer for return objects */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 55 | struct acpi_db_command_info { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 56 | char *name; /* Command Name */ |
| 57 | u8 min_args; /* Minimum arguments required */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | }; |
| 59 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 60 | struct acpi_db_command_help { |
| 61 | u8 line_count; /* Number of help lines */ |
| 62 | char *invocation; /* Command Invocation */ |
| 63 | char *description; /* Command Description */ |
| 64 | }; |
| 65 | |
| 66 | struct acpi_db_argument_info { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 67 | char *name; /* Argument Name */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | }; |
| 69 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 70 | struct acpi_db_execute_walk { |
| 71 | u32 count; |
| 72 | u32 max_count; |
| 73 | }; |
| 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | #define PARAM_LIST(pl) pl |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | #define EX_NO_SINGLE_STEP 1 |
| 78 | #define EX_SINGLE_STEP 2 |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | /* |
| 81 | * dbxface - external debugger interfaces |
| 82 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 84 | acpi_db_single_step(struct acpi_walk_state *walk_state, |
| 85 | union acpi_parse_object *op, u32 op_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
| 87 | /* |
| 88 | * dbcmds - debug commands and output routines |
| 89 | */ |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 90 | struct acpi_namespace_node *acpi_db_convert_to_node(char *in_string); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 91 | |
| 92 | void acpi_db_display_table_info(char *table_arg); |
| 93 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 94 | void acpi_db_display_template(char *buffer_arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 96 | void acpi_db_unload_acpi_table(char *name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 98 | void acpi_db_send_notify(char *name, u32 value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 100 | void acpi_db_display_interfaces(char *action_arg, char *interface_name_arg); |
| 101 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 102 | acpi_status acpi_db_sleep(char *object_arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Lv Zheng | ab6c573 | 2015-07-23 12:52:59 +0800 | [diff] [blame] | 104 | void acpi_db_trace(char *enable_arg, char *method_arg, char *once_arg); |
| 105 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 106 | void acpi_db_display_locks(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 108 | void acpi_db_display_resources(char *object_arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 110 | ACPI_HW_DEPENDENT_RETURN_VOID(void acpi_db_display_gpes(void)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 112 | void acpi_db_display_handlers(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 114 | ACPI_HW_DEPENDENT_RETURN_VOID(void |
| 115 | acpi_db_generate_gpe(char *gpe_arg, |
| 116 | char *block_arg)) |
Lv Zheng | cd27d79 | 2013-10-29 09:30:22 +0800 | [diff] [blame] | 117 | ACPI_HW_DEPENDENT_RETURN_VOID(void acpi_db_generate_sci(void)) |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 118 | |
Bob Moore | eb60c4d | 2014-02-08 09:42:39 +0800 | [diff] [blame] | 119 | void acpi_db_execute_test(char *type_arg); |
| 120 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 121 | /* |
Bob Moore | 42f8fb7 | 2013-01-11 13:08:51 +0100 | [diff] [blame] | 122 | * dbconvert - miscellaneous conversion routines |
| 123 | */ |
Lv Zheng | a2fd4b4 | 2013-09-23 09:52:05 +0800 | [diff] [blame] | 124 | acpi_status acpi_db_hex_char_to_value(int hex_char, u8 *return_value); |
Bob Moore | 42f8fb7 | 2013-01-11 13:08:51 +0100 | [diff] [blame] | 125 | |
| 126 | acpi_status acpi_db_convert_to_package(char *string, union acpi_object *object); |
| 127 | |
| 128 | acpi_status |
| 129 | acpi_db_convert_to_object(acpi_object_type type, |
| 130 | char *string, union acpi_object *object); |
| 131 | |
| 132 | u8 *acpi_db_encode_pld_buffer(struct acpi_pld_info *pld_info); |
| 133 | |
| 134 | void acpi_db_dump_pld_buffer(union acpi_object *obj_desc); |
| 135 | |
| 136 | /* |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 137 | * dbmethod - control method commands |
| 138 | */ |
| 139 | void |
| 140 | acpi_db_set_method_breakpoint(char *location, |
| 141 | struct acpi_walk_state *walk_state, |
| 142 | union acpi_parse_object *op); |
| 143 | |
| 144 | void acpi_db_set_method_call_breakpoint(union acpi_parse_object *op); |
| 145 | |
| 146 | void acpi_db_set_method_data(char *type_arg, char *index_arg, char *value_arg); |
| 147 | |
| 148 | acpi_status acpi_db_disassemble_method(char *name); |
| 149 | |
| 150 | void acpi_db_disassemble_aml(char *statements, union acpi_parse_object *op); |
| 151 | |
| 152 | void acpi_db_batch_execute(char *count_arg); |
| 153 | |
| 154 | /* |
| 155 | * dbnames - namespace commands |
| 156 | */ |
| 157 | void acpi_db_set_scope(char *name); |
| 158 | |
| 159 | void acpi_db_dump_namespace(char *start_arg, char *depth_arg); |
| 160 | |
Bob Moore | 424deb3 | 2013-09-23 09:52:19 +0800 | [diff] [blame] | 161 | void acpi_db_dump_namespace_paths(void); |
| 162 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 163 | void acpi_db_dump_namespace_by_owner(char *owner_arg, char *depth_arg); |
| 164 | |
| 165 | acpi_status acpi_db_find_name_in_namespace(char *name_arg); |
| 166 | |
Bob Moore | 1044f1f | 2008-09-27 11:08:41 +0800 | [diff] [blame] | 167 | void acpi_db_check_predefined_names(void); |
| 168 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 169 | acpi_status |
| 170 | acpi_db_display_objects(char *obj_type_arg, char *display_count_arg); |
| 171 | |
| 172 | void acpi_db_check_integrity(void); |
| 173 | |
| 174 | void acpi_db_find_references(char *object_arg); |
| 175 | |
| 176 | void acpi_db_get_bus_info(void); |
Bob Moore | 1044f1f | 2008-09-27 11:08:41 +0800 | [diff] [blame] | 177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | /* |
| 179 | * dbdisply - debug display commands |
| 180 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 181 | void acpi_db_display_method_info(union acpi_parse_object *op); |
| 182 | |
| 183 | void acpi_db_decode_and_display_object(char *target, char *output_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
| 185 | void |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 186 | acpi_db_display_result_object(union acpi_operand_object *obj_desc, |
| 187 | struct acpi_walk_state *walk_state); |
| 188 | |
| 189 | acpi_status acpi_db_display_all_methods(char *display_count_arg); |
| 190 | |
| 191 | void acpi_db_display_arguments(void); |
| 192 | |
| 193 | void acpi_db_display_locals(void); |
| 194 | |
| 195 | void acpi_db_display_results(void); |
| 196 | |
| 197 | void acpi_db_display_calling_tree(void); |
| 198 | |
| 199 | void acpi_db_display_object_type(char *object_arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
| 201 | void |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 202 | acpi_db_display_argument_object(union acpi_operand_object *obj_desc, |
| 203 | struct acpi_walk_state *walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
| 205 | /* |
| 206 | * dbexec - debugger control method execution |
| 207 | */ |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 208 | void |
| 209 | acpi_db_execute(char *name, char **args, acpi_object_type * types, u32 flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
| 211 | void |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 212 | acpi_db_create_execution_threads(char *num_threads_arg, |
| 213 | char *num_loops_arg, char *method_name_arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
Bob Moore | 42f8fb7 | 2013-01-11 13:08:51 +0100 | [diff] [blame] | 215 | void acpi_db_delete_objects(u32 count, union acpi_object *objects); |
| 216 | |
Valery A. Podrezov | afbb9e6 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 217 | #ifdef ACPI_DBG_TRACK_ALLOCATIONS |
| 218 | u32 acpi_db_get_cache_info(struct acpi_memory_list *cache); |
| 219 | #endif |
| 220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | /* |
| 222 | * dbfileio - Debugger file I/O commands |
| 223 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | acpi_object_type |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 225 | acpi_db_match_argument(char *user_argument, |
| 226 | struct acpi_db_argument_info *arguments); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 228 | void acpi_db_close_debug_file(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 230 | void acpi_db_open_debug_file(char *name); |
| 231 | |
| 232 | acpi_status acpi_db_load_acpi_table(char *filename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
| 234 | acpi_status |
Bob Moore | 5b0bbfb | 2015-05-21 10:31:44 +0800 | [diff] [blame] | 235 | acpi_db_get_table_from_file(char *filename, |
| 236 | struct acpi_table_header **table, |
| 237 | u8 must_be_aml_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | /* |
| 240 | * dbhistry - debugger HISTORY command |
| 241 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 242 | void acpi_db_add_to_history(char *command_line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 244 | void acpi_db_display_history(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 246 | char *acpi_db_get_from_history(char *command_num_arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
Bob Moore | 1d98e9e | 2013-10-29 09:29:09 +0800 | [diff] [blame] | 248 | char *acpi_db_get_history_by_index(u32 commandd_num); |
| 249 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | /* |
| 251 | * dbinput - user front-end to the AML debugger |
| 252 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 254 | acpi_db_command_dispatch(char *input_buffer, |
| 255 | struct acpi_walk_state *walk_state, |
| 256 | union acpi_parse_object *op); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 258 | void ACPI_SYSTEM_XFACE acpi_db_execute_thread(void *context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 260 | acpi_status acpi_db_user_commands(char prompt, union acpi_parse_object *op); |
| 261 | |
| 262 | char *acpi_db_get_next_token(char *string, |
| 263 | char **next, acpi_object_type * return_type); |
| 264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | /* |
Lv Zheng | fdd8d83 | 2015-07-23 12:54:17 +0800 | [diff] [blame] | 266 | * dbobject |
| 267 | */ |
| 268 | void acpi_db_decode_internal_object(union acpi_operand_object *obj_desc); |
| 269 | |
| 270 | void |
| 271 | acpi_db_display_internal_object(union acpi_operand_object *obj_desc, |
| 272 | struct acpi_walk_state *walk_state); |
| 273 | |
| 274 | void acpi_db_decode_arguments(struct acpi_walk_state *walk_state); |
| 275 | |
| 276 | void acpi_db_decode_locals(struct acpi_walk_state *walk_state); |
| 277 | |
| 278 | void |
| 279 | acpi_db_dump_method_info(acpi_status status, |
| 280 | struct acpi_walk_state *walk_state); |
| 281 | |
| 282 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | * dbstats - Generation and display of ACPI table statistics |
| 284 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 285 | void acpi_db_generate_statistics(union acpi_parse_object *root, u8 is_method); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 287 | acpi_status acpi_db_display_statistics(char *type_arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | |
| 289 | /* |
| 290 | * dbutils - AML debugger utilities |
| 291 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 292 | void acpi_db_set_output_destination(u32 where); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 294 | void acpi_db_dump_external_object(union acpi_object *obj_desc, u32 level); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 296 | void acpi_db_prep_namestring(char *name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 298 | struct acpi_namespace_node *acpi_db_local_ns_lookup(char *name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Bob Moore | 2e23f85 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 300 | void acpi_db_uint32_to_hex_string(u32 value, char *buffer); |
| 301 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 302 | #endif /* __ACDEBUG_H__ */ |