1 /******************************************************************************
3 * Module Name: asllookup- Namespace lookup functions
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2015, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #include "aslcompiler.h"
45 #include "aslcompiler.y.h"
52 #define _COMPONENT ACPI_COMPILER
53 ACPI_MODULE_NAME ("asllookup")
55 /* Local prototypes */
59 ACPI_HANDLE ObjHandle
,
64 static ACPI_PARSE_OBJECT
*
66 ACPI_PARSE_OBJECT
*Op
);
69 /*******************************************************************************
71 * FUNCTION: LkFindUnreferencedObjects
77 * DESCRIPTION: Namespace walk to find objects that are not referenced in any
78 * way. Must be called after the namespace has been cross
81 ******************************************************************************/
84 LkFindUnreferencedObjects (
88 /* Walk entire namespace from the supplied root */
90 (void) AcpiNsWalkNamespace (ACPI_TYPE_ANY
, ACPI_ROOT_OBJECT
,
91 ACPI_UINT32_MAX
, FALSE
, LkIsObjectUsed
, NULL
,
96 /*******************************************************************************
98 * FUNCTION: LkIsObjectUsed
100 * PARAMETERS: ACPI_WALK_CALLBACK
104 * DESCRIPTION: Check for an unreferenced namespace object and emit a warning.
105 * We have to be careful, because some types and names are
106 * typically or always unreferenced, we don't want to issue
107 * excessive warnings. Note: Names that are declared within a
108 * control method are temporary, so we always issue a remark
109 * if they are not referenced.
111 ******************************************************************************/
115 ACPI_HANDLE ObjHandle
,
120 ACPI_NAMESPACE_NODE
*Node
= ACPI_CAST_PTR (ACPI_NAMESPACE_NODE
, ObjHandle
);
121 ACPI_NAMESPACE_NODE
*Next
;
122 ASL_METHOD_LOCAL
*MethodLocals
;
123 ASL_METHOD_LOCAL
*MethodArgs
;
127 if (Node
->Type
== ACPI_TYPE_METHOD
)
129 if (!Node
->Op
|| !Node
->MethodLocals
)
134 MethodLocals
= (ASL_METHOD_LOCAL
*) Node
->MethodLocals
;
135 MethodArgs
= (ASL_METHOD_LOCAL
*) Node
->MethodArgs
;
138 * Analysis of LocalX variables
140 for (i
= 0; i
< ACPI_METHOD_NUM_LOCALS
; i
++)
142 /* Warn for Locals that are set but never referenced */
144 if ((MethodLocals
[i
].Flags
& ASL_LOCAL_INITIALIZED
) &&
145 (!(MethodLocals
[i
].Flags
& ASL_LOCAL_REFERENCED
)))
147 sprintf (MsgBuffer
, "Local%u", i
);
148 AslError (ASL_WARNING
, ASL_MSG_LOCAL_NOT_USED
,
149 MethodLocals
[i
].Op
, MsgBuffer
);
154 * Analysis of ArgX variables (standard method arguments,
155 * and remaining unused ArgX can also be used as locals)
157 for (i
= 0; i
< ACPI_METHOD_NUM_ARGS
; i
++)
159 if (MethodArgs
[i
].Flags
& ASL_ARG_IS_LOCAL
)
161 /* Warn if ArgX is being used as a local, but not referenced */
163 if ((MethodArgs
[i
].Flags
& ASL_ARG_INITIALIZED
) &&
164 (!(MethodArgs
[i
].Flags
& ASL_ARG_REFERENCED
)))
166 sprintf (MsgBuffer
, "Arg%u", i
);
167 AslError (ASL_WARNING
, ASL_MSG_ARG_AS_LOCAL_NOT_USED
,
168 MethodArgs
[i
].Op
, MsgBuffer
);
174 * Remark if a normal method ArgX is not referenced.
175 * We ignore the predefined methods since often, not
176 * all arguments are needed or used.
178 if ((Node
->Name
.Ascii
[0] != '_') &&
179 (!(MethodArgs
[i
].Flags
& ASL_ARG_REFERENCED
)))
181 sprintf (MsgBuffer
, "Arg%u", i
);
182 AslError (ASL_REMARK
, ASL_MSG_ARG_NOT_USED
,
183 MethodArgs
[i
].Op
, MsgBuffer
);
189 /* Referenced flag is set during the namespace xref */
191 if (Node
->Flags
& ANOBJ_IS_REFERENCED
)
201 /* These types are typically never directly referenced, ignore them */
205 case ACPI_TYPE_DEVICE
:
206 case ACPI_TYPE_PROCESSOR
:
207 case ACPI_TYPE_POWER
:
208 case ACPI_TYPE_THERMAL
:
209 case ACPI_TYPE_LOCAL_RESOURCE
:
218 /* Determine if the name is within a control method */
223 if (Next
->Type
== ACPI_TYPE_METHOD
)
226 * Name is within a method, therefore it is temporary.
227 * Issue a remark even if it is a reserved name (starts
228 * with an underscore).
230 sprintf (MsgBuffer
, "Name is within method [%4.4s]",
232 AslError (ASL_REMARK
, ASL_MSG_NOT_REFERENCED
,
233 LkGetNameOp (Node
->Op
), MsgBuffer
);
240 /* The name is not within a control method */
243 * Ignore names that start with an underscore. These are the reserved
244 * ACPI names and are typically not referenced since they are meant
245 * to be called by the host OS.
247 if (Node
->Name
.Ascii
[0] == '_')
253 * What remains is an unresolved user name that is not within a method.
254 * However, the object could be referenced via another table, so issue
255 * the warning at level 2.
257 AslError (ASL_WARNING2
, ASL_MSG_NOT_REFERENCED
,
258 LkGetNameOp (Node
->Op
), NULL
);
263 /*******************************************************************************
265 * FUNCTION: LkGetNameOp
267 * PARAMETERS: Op - Current Op
269 * RETURN: NameOp associated with the input op
271 * DESCRIPTION: Find the name declaration op associated with the operator
273 ******************************************************************************/
275 static ACPI_PARSE_OBJECT
*
277 ACPI_PARSE_OBJECT
*Op
)
279 const ACPI_OPCODE_INFO
*OpInfo
;
280 ACPI_PARSE_OBJECT
*NameOp
= Op
;
283 OpInfo
= AcpiPsGetOpcodeInfo (Op
->Asl
.AmlOpcode
);
286 /* Get the NamePath from the appropriate place */
288 if (OpInfo
->Flags
& AML_NAMED
)
290 /* For nearly all NAMED operators, the name reference is the first child */
292 NameOp
= Op
->Asl
.Child
;
293 if (Op
->Asl
.AmlOpcode
== AML_ALIAS_OP
)
296 * ALIAS is the only oddball opcode, the name declaration
297 * (alias name) is the second operand
299 NameOp
= Op
->Asl
.Child
->Asl
.Next
;
302 else if (OpInfo
->Flags
& AML_CREATE
)
304 /* Name must appear as the last parameter */
306 NameOp
= Op
->Asl
.Child
;
307 while (!(NameOp
->Asl
.CompileFlags
& NODE_IS_NAME_DECLARATION
))
309 NameOp
= NameOp
->Asl
.Next
;