From 341a42a441691a7ba0bbaa4c8cb83fcdd4e7c88a Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 16:18:55 +0000 Subject: [PATCH] Removed concept of a "static" acpi internal object. This mechanism conflicted with the object ref count mechanism. date 2001.09.05.15.11.00; author rmoore1; state Exp; --- source/components/debugger/dbdisply.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/source/components/debugger/dbdisply.c b/source/components/debugger/dbdisply.c index 0aacfca1d..bab78eb15 100644 --- a/source/components/debugger/dbdisply.c +++ b/source/components/debugger/dbdisply.c @@ -1,7 +1,7 @@ /******************************************************************************* * * Module Name: dbdisply - debug display commands - * $Revision: 1.51 $ + * $Revision: 1.52 $ * ******************************************************************************/ @@ -500,7 +500,6 @@ AcpiDbDisplayInternalObject ( else if (VALID_DESCRIPTOR_TYPE (ObjDesc, ACPI_DESC_TYPE_INTERNAL)) { - AcpiOsPrintf (" "); Type = ObjDesc->Common.Type; if (Type > INTERNAL_TYPE_MAX) { @@ -516,35 +515,37 @@ AcpiDbDisplayInternalObject ( switch (ObjDesc->Reference.Opcode) { case AML_ZERO_OP: - AcpiOsPrintf ("[Const] Zero (0) [Null Target]", 0); + AcpiOsPrintf ("[Const] Zero (0) [Null Target]", 0); break; case AML_ONES_OP: - AcpiOsPrintf ("[Const] Ones (0xFFFFFFFFFFFFFFFF) [No Limit]"); + AcpiOsPrintf ("[Const] Ones (0xFFFFFFFFFFFFFFFF) [No Limit]"); break; case AML_ONE_OP: - AcpiOsPrintf ("[Const] One (1)"); + AcpiOsPrintf ("[Const] One (1)"); break; case AML_REVISION_OP: - AcpiOsPrintf ("[Const] Revision (%X)", ACPI_CA_VERSION); + AcpiOsPrintf ("[Const] Revision (%X)", ACPI_CA_VERSION); break; case AML_LOCAL_OP: - AcpiOsPrintf ("[Local%d] ", ObjDesc->Reference.Offset); + AcpiOsPrintf ("[Local%d]", ObjDesc->Reference.Offset); if (WalkState) { ObjDesc = WalkState->LocalVariables[ObjDesc->Reference.Offset].Object; + AcpiOsPrintf (" %p", ObjDesc); AcpiDbDecodeInternalObject (ObjDesc); } break; case AML_ARG_OP: - AcpiOsPrintf ("[Arg%d] ", ObjDesc->Reference.Offset); + AcpiOsPrintf ("[Arg%d] ", ObjDesc->Reference.Offset); if (WalkState) { ObjDesc = WalkState->Arguments[ObjDesc->Reference.Offset].Object; + AcpiOsPrintf (" %p", ObjDesc); AcpiDbDecodeInternalObject (ObjDesc); } break; @@ -565,6 +566,7 @@ AcpiDbDisplayInternalObject ( break; default: + AcpiOsPrintf (" "); AcpiOsPrintf (" "); AcpiDbDecodeInternalObject (ObjDesc); break;