aslmessages.c revision 284460
1163953Srrs/******************************************************************************
2169382Srrs *
3235828Stuexen * Module Name: aslmessages.c - Compiler error/warning message strings
4235828Stuexen *
5163953Srrs *****************************************************************************/
6163953Srrs
7163953Srrs/*
8163953Srrs * Copyright (C) 2000 - 2015, Intel Corp.
9163953Srrs * All rights reserved.
10228653Stuexen *
11163953Srrs * Redistribution and use in source and binary forms, with or without
12163953Srrs * modification, are permitted provided that the following conditions
13163953Srrs * are met:
14228653Stuexen * 1. Redistributions of source code must retain the above copyright
15163953Srrs *    notice, this list of conditions, and the following disclaimer,
16163953Srrs *    without modification.
17163953Srrs * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18163953Srrs *    substantially similar to the "NO WARRANTY" disclaimer below
19163953Srrs *    ("Disclaimer") and any redistribution must be conditioned upon
20163953Srrs *    including a substantially similar Disclaimer requirement for further
21163953Srrs *    binary redistribution.
22163953Srrs * 3. Neither the names of the above-listed copyright holders nor the names
23163953Srrs *    of any contributors may be used to endorse or promote products derived
24163953Srrs *    from this software without specific prior written permission.
25163953Srrs *
26163953Srrs * Alternatively, this software may be distributed under the terms of the
27163953Srrs * GNU General Public License ("GPL") version 2 as published by the Free
28163953Srrs * Software Foundation.
29163953Srrs *
30163953Srrs * NO WARRANTY
31163953Srrs * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32163953Srrs * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33163953Srrs * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34163953Srrs * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35163953Srrs * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36235828Stuexen * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37235828Stuexen * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38163953Srrs * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39180387Srrs * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40163953Srrs * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41163953Srrs * POSSIBILITY OF SUCH DAMAGES.
42163953Srrs */
43163953Srrs
44163953Srrs#include <contrib/dev/acpica/compiler/aslcompiler.h>
45163953Srrs
46163953Srrs#define _COMPONENT          ACPI_COMPILER
47163953Srrs        ACPI_MODULE_NAME    ("aslmessages")
48163953Srrs
49163953Srrs
50252585Stuexen/*
51163953Srrs * Strings for message reporting levels, must match error
52166023Srrs * type string tables in aslmessages.c
53163953Srrs */
54163953Srrsconst char              *AslErrorLevel [ASL_NUM_REPORT_LEVELS] = {
55163953Srrs    "Optimize",
56163953Srrs    "Remark  ",
57252585Stuexen    "Warning ",
58163953Srrs    "Warning ",
59163953Srrs    "Warning ",
60163953Srrs    "Error   "
61166023Srrs};
62166023Srrs
63166023Srrs/* All lowercase versions for IDEs */
64163953Srrs
65163953Srrsconst char              *AslErrorLevelIde [ASL_NUM_REPORT_LEVELS] = {
66163953Srrs    "optimize",
67169352Srrs    "remark  ",
68166023Srrs    "warning ",
69166023Srrs    "warning ",
70166023Srrs    "warning ",
71163953Srrs    "error   "
72163953Srrs};
73166023Srrs
74168943Srrs
75163953Srrs/*
76163953Srrs * Actual message strings for each compiler message ID. There are currently
77163953Srrs * three distinct blocks of error messages (so that they can be expanded
78163953Srrs * individually):
79163953Srrs *      Main ASL compiler
80163953Srrs *      Data Table compiler
81163953Srrs *      Preprocessor
82163953Srrs *
83163953Srrs * NOTE1: These tables must match the enum list of message IDs in the file
84163953Srrs * aslmessages.h exactly.
85163953Srrs *
86163953Srrs * NOTE2: With the introduction of the -vw option to disable specific messages,
87163953Srrs * new messages should only be added to the end of this list, so that values
88163953Srrs * for existing messages are not disturbed.
89163953Srrs */
90163953Srrs
91218186Srrs/* ASL compiler */
92163953Srrs
93163953Srrsconst char                      *AslCompilerMsgs [] =
94202526Stuexen{
95228653Stuexen/*    The zeroth message is reserved */    "",
96202526Stuexen/*    ASL_MSG_ALIGNMENT */                  "Must be a multiple of alignment/granularity value",
97202526Stuexen/*    ASL_MSG_ALPHANUMERIC_STRING */        "String must be entirely alphanumeric",
98218186Srrs/*    ASL_MSG_AML_NOT_IMPLEMENTED */        "Opcode is not implemented in compiler AML code generator",
99163953Srrs/*    ASL_MSG_ARG_COUNT_HI */               "Too many arguments",
100163953Srrs/*    ASL_MSG_ARG_COUNT_LO */               "Too few arguments",
101163953Srrs/*    ASL_MSG_ARG_INIT */                   "Method argument is not initialized",
102163953Srrs/*    ASL_MSG_BACKWARDS_OFFSET */           "Invalid backwards offset",
103170992Srrs/*    ASL_MSG_BUFFER_LENGTH */              "Effective AML buffer length is zero",
104163953Srrs/*    ASL_MSG_CLOSE */                      "Could not close file",
105163953Srrs/*    ASL_MSG_COMPILER_INTERNAL */          "Internal compiler error",
106163953Srrs/*    ASL_MSG_COMPILER_RESERVED */          "Use of compiler reserved name",
107163953Srrs/*    ASL_MSG_CONNECTION_MISSING */         "A Connection operator is required for this field SpaceId",
108163953Srrs/*    ASL_MSG_CONNECTION_INVALID */         "Invalid OpRegion SpaceId for use of Connection operator",
109163953Srrs/*    ASL_MSG_CONSTANT_EVALUATION */        "Could not evaluate constant expression",
110163953Srrs/*    ASL_MSG_CONSTANT_FOLDED */            "Constant expression evaluated and reduced",
111228653Stuexen/*    ASL_MSG_CORE_EXCEPTION */             "From ACPICA Subsystem",
112163953Srrs/*    ASL_MSG_DEBUG_FILE_OPEN */            "Could not open debug file",
113163953Srrs/*    ASL_MSG_DEBUG_FILENAME */             "Could not create debug filename",
114237715Stuexen/*    ASL_MSG_DEPENDENT_NESTING */          "Dependent function macros cannot be nested",
115169208Srrs/*    ASL_MSG_DMA_CHANNEL */                "Invalid DMA channel (must be 0-7)",
116294147Stuexen/*    ASL_MSG_DMA_LIST */                   "Too many DMA channels (8 max)",
117163953Srrs/*    ASL_MSG_DUPLICATE_CASE */             "Case value already specified",
118206137Stuexen/*    ASL_MSG_DUPLICATE_ITEM */             "Duplicate value in list",
119163953Srrs/*    ASL_MSG_EARLY_EOF */                  "Premature end-of-file reached",
120228653Stuexen/*    ASL_MSG_ENCODING_LENGTH */            "Package length too long to encode",
121206137Stuexen/*    ASL_MSG_EX_INTERRUPT_LIST */          "Too many interrupts (255 max)",
122163953Srrs/*    ASL_MSG_EX_INTERRUPT_LIST_MIN */      "Too few interrupts (1 minimum required)",
123163953Srrs/*    ASL_MSG_EX_INTERRUPT_NUMBER */        "Invalid interrupt number (must be 32 bits)",
124/*    ASL_MSG_FIELD_ACCESS_WIDTH */         "Access width is greater than region size",
125/*    ASL_MSG_FIELD_UNIT_ACCESS_WIDTH */    "Access width of Field Unit extends beyond region limit",
126/*    ASL_MSG_FIELD_UNIT_OFFSET */          "Field Unit extends beyond region limit",
127/*    ASL_MSG_GPE_NAME_CONFLICT */          "Name conflicts with a previous GPE method",
128/*    ASL_MSG_HID_LENGTH */                 "_HID string must be exactly 7 or 8 characters",
129/*    ASL_MSG_HID_PREFIX */                 "_HID prefix must be all uppercase or decimal digits",
130/*    ASL_MSG_HID_SUFFIX */                 "_HID suffix must be all hex digits",
131/*    ASL_MSG_INCLUDE_FILE_OPEN */          "Could not open include file",
132/*    ASL_MSG_INPUT_FILE_OPEN */            "Could not open input file",
133/*    ASL_MSG_INTEGER_LENGTH */             "64-bit integer in 32-bit table, truncating (DSDT version < 2)",
134/*    ASL_MSG_INTEGER_OPTIMIZATION */       "Integer optimized to single-byte AML opcode",
135/*    ASL_MSG_INTERRUPT_LIST */             "Too many interrupts (16 max)",
136/*    ASL_MSG_INTERRUPT_NUMBER */           "Invalid interrupt number (must be 0-15)",
137/*    ASL_MSG_INVALID_ACCESS_SIZE */        "Invalid AccessSize (Maximum is 4 - QWord access)",
138/*    ASL_MSG_INVALID_ADDR_FLAGS */         "Invalid combination of Length and Min/Max fixed flags",
139/*    ASL_MSG_INVALID_CONSTANT_OP */        "Invalid operator in constant expression (not type 3/4/5)",
140/*    ASL_MSG_INVALID_EISAID */             "EISAID string must be of the form \"UUUXXXX\" (3 uppercase, 4 hex digits)",
141/*    ASL_MSG_INVALID_ESCAPE */             "Invalid or unknown escape sequence",
142/*    ASL_MSG_INVALID_GRAN_FIXED */         "Granularity must be zero for fixed Min/Max",
143/*    ASL_MSG_INVALID_GRANULARITY */        "Granularity must be zero or a power of two minus one",
144/*    ASL_MSG_INVALID_LENGTH */             "Length is larger than Min/Max window",
145/*    ASL_MSG_INVALID_LENGTH_FIXED */       "Length is not equal to fixed Min/Max window",
146/*    ASL_MSG_INVALID_MIN_MAX */            "Address Min is greater than Address Max",
147/*    ASL_MSG_INVALID_OPERAND */            "Invalid operand",
148/*    ASL_MSG_INVALID_PERFORMANCE */        "Invalid performance/robustness value",
149/*    ASL_MSG_INVALID_PRIORITY */           "Invalid priority value",
150/*    ASL_MSG_INVALID_STRING */             "Invalid Hex/Octal Escape - Non-ASCII or NULL",
151/*    ASL_MSG_INVALID_TARGET */             "Target operand not allowed in constant expression",
152/*    ASL_MSG_INVALID_TIME */               "Time parameter too long (255 max)",
153/*    ASL_MSG_INVALID_TYPE */               "Invalid type",
154/*    ASL_MSG_INVALID_UUID */               "UUID string must be of the form \"aabbccdd-eeff-gghh-iijj-kkllmmnnoopp\"",
155/*    ASL_MSG_ISA_ADDRESS */                "Maximum 10-bit ISA address (0x3FF)",
156/*    ASL_MSG_LEADING_ASTERISK */           "Invalid leading asterisk",
157/*    ASL_MSG_LIST_LENGTH_LONG */           "Initializer list longer than declared package length",
158/*    ASL_MSG_LIST_LENGTH_SHORT */          "Initializer list shorter than declared package length",
159/*    ASL_MSG_LISTING_FILE_OPEN */          "Could not open listing file",
160/*    ASL_MSG_LISTING_FILENAME */           "Could not create listing filename",
161/*    ASL_MSG_LOCAL_INIT */                 "Method local variable is not initialized",
162/*    ASL_MSG_LOCAL_OUTSIDE_METHOD */       "Local or Arg used outside a control method",
163/*    ASL_MSG_LONG_LINE */                  "Splitting long input line",
164/*    ASL_MSG_MEMORY_ALLOCATION */          "Memory allocation failure",
165/*    ASL_MSG_MISSING_ENDDEPENDENT */       "Missing EndDependentFn() macro in dependent resource list",
166/*    ASL_MSG_MISSING_STARTDEPENDENT */     "Missing StartDependentFn() macro in dependent resource list",
167/*    ASL_MSG_MULTIPLE_DEFAULT */           "More than one Default statement within Switch construct",
168/*    ASL_MSG_MULTIPLE_TYPES */             "Multiple types",
169/*    ASL_MSG_NAME_EXISTS */                "Name already exists in scope",
170/*    ASL_MSG_NAME_OPTIMIZATION */          "NamePath optimized",
171/*    ASL_MSG_NAMED_OBJECT_IN_WHILE */      "Creating a named object in a While loop",
172/*    ASL_MSG_NESTED_COMMENT */             "Nested comment found",
173/*    ASL_MSG_NO_CASES */                   "No Case statements under Switch",
174/*    ASL_MSG_NO_REGION */                  "_REG has no corresponding Operation Region",
175/*    ASL_MSG_NO_RETVAL */                  "Called method returns no value",
176/*    ASL_MSG_NO_WHILE */                   "No enclosing While statement",
177/*    ASL_MSG_NON_ASCII */                  "Invalid characters found in file",
178/*    ASL_MSG_NON_ZERO */                   "Operand evaluates to zero",
179/*    ASL_MSG_NOT_EXIST */                  "Object does not exist",
180/*    ASL_MSG_NOT_FOUND */                  "Object not found or not accessible from scope",
181/*    ASL_MSG_NOT_METHOD */                 "Not a control method, cannot invoke",
182/*    ASL_MSG_NOT_PARAMETER */              "Not a parameter, used as local only",
183/*    ASL_MSG_NOT_REACHABLE */              "Object is not accessible from this scope",
184/*    ASL_MSG_NOT_REFERENCED */             "Object is not referenced",
185/*    ASL_MSG_NULL_DESCRIPTOR */            "Min/Max/Length/Gran are all zero, but no resource tag",
186/*    ASL_MSG_NULL_STRING */                "Invalid zero-length (null) string",
187/*    ASL_MSG_OPEN */                       "Could not open file",
188/*    ASL_MSG_OUTPUT_FILE_OPEN */           "Could not open output AML file",
189/*    ASL_MSG_OUTPUT_FILENAME */            "Could not create output filename",
190/*    ASL_MSG_PACKAGE_LENGTH */             "Effective AML package length is zero",
191/*    ASL_MSG_PREPROCESSOR_FILENAME */      "Could not create preprocessor filename",
192/*    ASL_MSG_READ */                       "Could not read file",
193/*    ASL_MSG_RECURSION */                  "Recursive method call",
194/*    ASL_MSG_REGION_BUFFER_ACCESS */       "Host Operation Region requires BufferAcc access",
195/*    ASL_MSG_REGION_BYTE_ACCESS */         "Host Operation Region requires ByteAcc access",
196/*    ASL_MSG_RESERVED_ARG_COUNT_HI */      "Reserved method has too many arguments",
197/*    ASL_MSG_RESERVED_ARG_COUNT_LO */      "Reserved method has too few arguments",
198/*    ASL_MSG_RESERVED_METHOD */            "Reserved name must be a control method",
199/*    ASL_MSG_RESERVED_NO_RETURN_VAL */     "Reserved method should not return a value",
200/*    ASL_MSG_RESERVED_OPERAND_TYPE */      "Invalid object type for reserved name",
201/*    ASL_MSG_RESERVED_PACKAGE_LENGTH */    "Invalid package length for reserved name",
202/*    ASL_MSG_RESERVED_RETURN_VALUE */      "Reserved method must return a value",
203/*    ASL_MSG_RESERVED_USE */               "Invalid use of reserved name",
204/*    ASL_MSG_RESERVED_WORD */              "Use of reserved name",
205/*    ASL_MSG_RESOURCE_FIELD */             "Resource field name cannot be used as a target",
206/*    ASL_MSG_RESOURCE_INDEX */             "Missing ResourceSourceIndex (required)",
207/*    ASL_MSG_RESOURCE_LIST */              "Too many resource items (internal error)",
208/*    ASL_MSG_RESOURCE_SOURCE */            "Missing ResourceSource string (required)",
209/*    ASL_MSG_RESULT_NOT_USED */            "Result is not used, operator has no effect",
210/*    ASL_MSG_RETURN_TYPES */               "Not all control paths return a value",
211/*    ASL_MSG_SCOPE_FWD_REF */              "Forward references from Scope operator not allowed",
212/*    ASL_MSG_SCOPE_TYPE */                 "Existing object has invalid type for Scope operator",
213/*    ASL_MSG_SEEK */                       "Could not seek file",
214/*    ASL_MSG_SERIALIZED */                 "Control Method marked Serialized",
215/*    ASL_MSG_SERIALIZED_REQUIRED */        "Control Method should be made Serialized",
216/*    ASL_MSG_SINGLE_NAME_OPTIMIZATION */   "NamePath optimized to NameSeg (uses run-time search path)",
217/*    ASL_MSG_SOME_NO_RETVAL */             "Called method may not always return a value",
218/*    ASL_MSG_STRING_LENGTH */              "String literal too long",
219/*    ASL_MSG_SWITCH_TYPE */                "Switch expression is not a static Integer/Buffer/String data type, defaulting to Integer",
220/*    ASL_MSG_SYNC_LEVEL */                 "SyncLevel must be in the range 0-15",
221/*    ASL_MSG_SYNTAX */                     "",
222/*    ASL_MSG_TABLE_SIGNATURE */            "Invalid Table Signature",
223/*    ASL_MSG_TAG_LARGER */                 "ResourceTag larger than Field",
224/*    ASL_MSG_TAG_SMALLER */                "ResourceTag smaller than Field",
225/*    ASL_MSG_TIMEOUT */                    "Result is not used, possible operator timeout will be missed",
226/*    ASL_MSG_TOO_MANY_TEMPS */             "Method requires too many temporary variables (_T_x)",
227/*    ASL_MSG_TRUNCATION */                 "64-bit return value will be truncated to 32 bits (DSDT version < 2)",
228/*    ASL_MSG_UNKNOWN_RESERVED_NAME */      "Unknown reserved name",
229/*    ASL_MSG_UNREACHABLE_CODE */           "Statement is unreachable",
230/*    ASL_MSG_UNSUPPORTED */                "Unsupported feature",
231/*    ASL_MSG_UPPER_CASE */                 "Non-hex letters must be upper case",
232/*    ASL_MSG_VENDOR_LIST */                "Too many vendor data bytes (7 max)",
233/*    ASL_MSG_WRITE */                      "Could not write file",
234/*    ASL_MSG_RANGE */                      "Constant out of range",
235/*    ASL_MSG_BUFFER_ALLOCATION */          "Could not allocate line buffer",
236/*    ASL_MSG_MISSING_DEPENDENCY */         "Missing dependency",
237/*    ASL_MSG_ILLEGAL_FORWARD_REF */        "Illegal forward reference within a method",
238/*    ASL_MSG_ILLEGAL_METHOD_REF */         "Illegal reference across two methods"
239};
240
241/* Table compiler */
242
243const char                      *AslTableCompilerMsgs [] =
244{
245/*    ASL_MSG_BUFFER_ELEMENT */             "Invalid element in buffer initializer list",
246/*    ASL_MSG_DIVIDE_BY_ZERO */             "Expression contains divide-by-zero",
247/*    ASL_MSG_FLAG_VALUE */                 "Flag value is too large",
248/*    ASL_MSG_INTEGER_SIZE */               "Integer too large for target",
249/*    ASL_MSG_INVALID_EXPRESSION */         "Invalid expression",
250/*    ASL_MSG_INVALID_FIELD_NAME */         "Invalid Field Name",
251/*    ASL_MSG_INVALID_HEX_INTEGER */        "Invalid hex integer constant",
252/*    ASL_MSG_OEM_TABLE */                  "OEM table - unknown contents",
253/*    ASL_MSG_RESERVED_VALUE */             "Reserved field",
254/*    ASL_MSG_UNKNOWN_LABEL */              "Label is undefined",
255/*    ASL_MSG_UNKNOWN_SUBTABLE */           "Unknown subtable type",
256/*    ASL_MSG_UNKNOWN_TABLE */              "Unknown ACPI table signature",
257/*    ASL_MSG_ZERO_VALUE */                 "Value must be non-zero"
258};
259
260/* Preprocessor */
261
262const char                      *AslPreprocessorMsgs [] =
263{
264/*    ASL_MSG_DIRECTIVE_SYNTAX */           "Invalid directive syntax",
265/*    ASL_MSG_ENDIF_MISMATCH */             "Mismatched #endif",
266/*    ASL_MSG_ERROR_DIRECTIVE */            "#error",
267/*    ASL_MSG_EXISTING_NAME */              "Name is already defined",
268/*    ASL_MSG_INVALID_INVOCATION */         "Invalid macro invocation",
269/*    ASL_MSG_MACRO_SYNTAX */               "Invalid macro syntax",
270/*    ASL_MSG_TOO_MANY_ARGUMENTS */         "Too many macro arguments",
271/*    ASL_MSG_UNKNOWN_DIRECTIVE */          "Unknown directive",
272/*    ASL_MSG_UNKNOWN_PRAGMA */             "Unknown pragma",
273/*    ASL_MSG_WARNING_DIRECTIVE */          "#warning",
274/*    ASL_MSG_INCLUDE_FILE */               "Found a # preprocessor directive in ASL Include() file"
275};
276
277
278/*******************************************************************************
279 *
280 * FUNCTION:    AeDecodeMessageId
281 *
282 * PARAMETERS:  MessageId               - ASL message ID (exception code) to be
283 *                                        formatted. Possibly fully encoded.
284 *
285 * RETURN:      A string containing the exception message text.
286 *
287 * DESCRIPTION: This function validates and translates an ASL message ID into
288 *              an ASCII string.
289 *
290 ******************************************************************************/
291
292const char *
293AeDecodeMessageId (
294    UINT16                  MessageId)
295{
296    UINT32                  Index;
297    const char              **MessageTable;
298
299
300    /* Main ASL Compiler messages */
301
302    if (MessageId <= ASL_MSG_MAIN_COMPILER_END)
303    {
304        MessageTable = AslCompilerMsgs;
305        Index = MessageId;
306
307        if (Index >= ACPI_ARRAY_LENGTH (AslCompilerMsgs))
308        {
309            return ("[Unknown ASL Compiler exception ID]");
310        }
311    }
312
313    /* Data Table Compiler messages */
314
315    else if (MessageId <= ASL_MSG_TABLE_COMPILER_END)
316    {
317        MessageTable = AslTableCompilerMsgs;
318        Index = MessageId - ASL_MSG_TABLE_COMPILER;
319
320        if (Index >= ACPI_ARRAY_LENGTH (AslTableCompilerMsgs))
321        {
322            return ("[Unknown Table Compiler exception ID]");
323        }
324    }
325
326    /* Preprocessor messages */
327
328    else if (MessageId <= ASL_MSG_PREPROCESSOR_END)
329    {
330        MessageTable = AslPreprocessorMsgs;
331        Index = MessageId - ASL_MSG_PREPROCESSOR;
332
333        if (Index >= ACPI_ARRAY_LENGTH (AslPreprocessorMsgs))
334        {
335            return ("[Unknown Preprocessor exception ID]");
336        }
337    }
338
339    /* Everything else is unknown */
340
341    else
342    {
343        return ("[Unknown exception/component ID]");
344    }
345
346    return (MessageTable[Index]);
347}
348
349
350/*******************************************************************************
351 *
352 * FUNCTION:    AeDecodeExceptionLevel
353 *
354 * PARAMETERS:  Level               - The ASL error level to be decoded
355 *
356 * RETURN:      A string containing the error level text
357 *
358 * DESCRIPTION: This function validates and translates an ASL error level into
359 *              an ASCII string.
360 *
361 ******************************************************************************/
362
363const char *
364AeDecodeExceptionLevel (
365    UINT8                   Level)
366{
367    /* Range check on Level */
368
369    if (Level >= ACPI_ARRAY_LENGTH (AslErrorLevel))
370    {
371        return ("Unknown exception level");
372    }
373
374    /* Differentiate the string type to be used (IDE is all lower case) */
375
376    if (Gbl_VerboseErrors)
377    {
378        return (AslErrorLevel[Level]);
379    }
380
381    return (AslErrorLevelIde[Level]);
382}
383
384
385/*******************************************************************************
386 *
387 * FUNCTION:    AeBuildFullExceptionCode
388 *
389 * PARAMETERS:  Level               - ASL error level
390 *              MessageId           - ASL exception code to be formatted
391 *
392 * RETURN:      Fully encoded exception code
393 *
394 * DESCRIPTION: Build the full exception code from the error level and the
395 *              actual message ID.
396 *
397 ******************************************************************************/
398
399UINT16
400AeBuildFullExceptionCode (
401    UINT8                   Level,
402    UINT16                  MessageId)
403{
404
405    /*
406     * Error level is in the thousands slot (error/warning/remark, etc.)
407     * Error codes are 0 - 999
408     */
409    return (((Level + 1) * 1000) + MessageId);
410}
411