mirror of
https://github.com/acpica/acpica/
synced 2025-02-12 11:34:42 +03:00
Remove unused code, no functional change.
Removed unused code for dump of args and locals. General cleanup and splitting of long lines.
This commit is contained in:
parent
aa203e9e24
commit
5b1d2828ff
@ -305,7 +305,6 @@ static ACPI_EXDUMP_INFO AcpiExDumpIndexField[5] =
|
||||
{ACPI_EXD_POINTER, ACPI_EXD_OFFSET (IndexField.DataObj), "Data Object"}
|
||||
};
|
||||
|
||||
|
||||
static ACPI_EXDUMP_INFO AcpiExDumpReference[8] =
|
||||
{
|
||||
{ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpReference), NULL},
|
||||
@ -346,7 +345,6 @@ static ACPI_EXDUMP_INFO AcpiExDumpCommon[4] =
|
||||
{ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Common.Flags), "Flags"}
|
||||
};
|
||||
|
||||
|
||||
static ACPI_EXDUMP_INFO AcpiExDumpFieldCommon[7] =
|
||||
{
|
||||
{ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpFieldCommon), NULL},
|
||||
@ -450,6 +448,7 @@ AcpiExDumpObject (
|
||||
break;
|
||||
|
||||
case ACPI_EXD_TYPE:
|
||||
|
||||
AcpiExOutString ("Type", AcpiUtGetObjectTypeName (ObjDesc));
|
||||
break;
|
||||
|
||||
@ -471,7 +470,7 @@ AcpiExDumpObject (
|
||||
case ACPI_EXD_UINT64:
|
||||
|
||||
AcpiOsPrintf ("%20s : %8.8X%8.8X\n", "Value",
|
||||
ACPI_FORMAT_UINT64 (ACPI_GET64 (Target)));
|
||||
ACPI_FORMAT_UINT64 (ACPI_GET64 (Target)));
|
||||
break;
|
||||
|
||||
case ACPI_EXD_POINTER:
|
||||
@ -506,12 +505,15 @@ AcpiExDumpObject (
|
||||
|
||||
case ACPI_EXD_REFERENCE:
|
||||
|
||||
AcpiExOutString ("Class Name", (char *) AcpiUtGetReferenceName (ObjDesc));
|
||||
AcpiExOutString ("Class Name",
|
||||
(char *) AcpiUtGetReferenceName (ObjDesc));
|
||||
AcpiExDumpReferenceObj (ObjDesc);
|
||||
break;
|
||||
|
||||
default:
|
||||
AcpiOsPrintf ("**** Invalid table opcode [%X] ****\n", Info->Opcode);
|
||||
|
||||
AcpiOsPrintf ("**** Invalid table opcode [%X] ****\n",
|
||||
Info->Opcode);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -623,44 +625,19 @@ AcpiExDumpOperand (
|
||||
break;
|
||||
|
||||
|
||||
case ACPI_REFCLASS_ARG:
|
||||
|
||||
AcpiOsPrintf ("%X", ObjDesc->Reference.Value);
|
||||
|
||||
if (ObjDesc->Common.Type == ACPI_TYPE_INTEGER)
|
||||
{
|
||||
/* Value is an Integer */
|
||||
|
||||
AcpiOsPrintf (" value is [%8.8X%8.8x]",
|
||||
ACPI_FORMAT_UINT64 (ObjDesc->Integer.Value));
|
||||
}
|
||||
|
||||
AcpiOsPrintf ("\n");
|
||||
break;
|
||||
|
||||
|
||||
case ACPI_REFCLASS_LOCAL:
|
||||
|
||||
AcpiOsPrintf ("%X", ObjDesc->Reference.Value);
|
||||
|
||||
if (ObjDesc->Common.Type == ACPI_TYPE_INTEGER)
|
||||
{
|
||||
/* Value is an Integer */
|
||||
|
||||
AcpiOsPrintf (" value is [%8.8X%8.8x]",
|
||||
ACPI_FORMAT_UINT64 (ObjDesc->Integer.Value));
|
||||
}
|
||||
|
||||
AcpiOsPrintf ("\n");
|
||||
break;
|
||||
|
||||
|
||||
case ACPI_REFCLASS_NAME:
|
||||
|
||||
AcpiOsPrintf ("- [%4.4s]\n", ObjDesc->Reference.Node->Name.Ascii);
|
||||
break;
|
||||
|
||||
|
||||
case ACPI_REFCLASS_ARG:
|
||||
case ACPI_REFCLASS_LOCAL:
|
||||
|
||||
AcpiOsPrintf ("%X\n", ObjDesc->Reference.Value);
|
||||
break;
|
||||
|
||||
|
||||
default: /* Unknown reference class */
|
||||
|
||||
AcpiOsPrintf ("%2.2X\n", ObjDesc->Reference.Class);
|
||||
@ -674,7 +651,6 @@ AcpiExDumpOperand (
|
||||
AcpiOsPrintf ("Buffer length %.2X @ %p\n",
|
||||
ObjDesc->Buffer.Length, ObjDesc->Buffer.Pointer);
|
||||
|
||||
|
||||
/* Debug only -- dump the buffer contents */
|
||||
|
||||
if (ObjDesc->Buffer.Pointer)
|
||||
@ -685,7 +661,8 @@ AcpiExDumpOperand (
|
||||
Length = 128;
|
||||
}
|
||||
|
||||
AcpiOsPrintf ("Buffer Contents: (displaying length 0x%.2X)\n", Length);
|
||||
AcpiOsPrintf ("Buffer Contents: (displaying length 0x%.2X)\n",
|
||||
Length);
|
||||
ACPI_DUMP_BUFFER (ObjDesc->Buffer.Pointer, Length);
|
||||
}
|
||||
break;
|
||||
@ -761,8 +738,8 @@ AcpiExDumpOperand (
|
||||
|
||||
case ACPI_TYPE_LOCAL_REGION_FIELD:
|
||||
|
||||
AcpiOsPrintf (
|
||||
"RegionField: Bits=%X AccWidth=%X Lock=%X Update=%X at byte=%X bit=%X of below:\n",
|
||||
AcpiOsPrintf ("RegionField: Bits=%X AccWidth=%X Lock=%X Update=%X at "
|
||||
"byte=%X bit=%X of below:\n",
|
||||
ObjDesc->Field.BitLength,
|
||||
ObjDesc->Field.AccessByteWidth,
|
||||
ObjDesc->Field.FieldFlags & AML_FIELD_LOCK_RULE_MASK,
|
||||
@ -782,8 +759,7 @@ AcpiExDumpOperand (
|
||||
|
||||
case ACPI_TYPE_BUFFER_FIELD:
|
||||
|
||||
AcpiOsPrintf (
|
||||
"BufferField: %X bits at byte %X bit %X of\n",
|
||||
AcpiOsPrintf ("BufferField: %X bits at byte %X bit %X of\n",
|
||||
ObjDesc->BufferField.BitLength,
|
||||
ObjDesc->BufferField.BaseByteOffset,
|
||||
ObjDesc->BufferField.StartFieldBitOffset);
|
||||
@ -968,10 +944,10 @@ AcpiExDumpNamespaceNode (
|
||||
}
|
||||
}
|
||||
|
||||
AcpiOsPrintf ("%20s : %4.4s\n", "Name", AcpiUtGetNodeName (Node));
|
||||
AcpiExOutString ("Type", AcpiUtGetTypeName (Node->Type));
|
||||
AcpiExOutPointer ("Attached Object", AcpiNsGetAttachedObject (Node));
|
||||
AcpiExOutPointer ("Parent", AcpiNsGetParentNode (Node));
|
||||
AcpiOsPrintf ("%20s : %4.4s\n", "Name", AcpiUtGetNodeName (Node));
|
||||
AcpiExOutString ("Type", AcpiUtGetTypeName (Node->Type));
|
||||
AcpiExOutPointer ("Attached Object", AcpiNsGetAttachedObject (Node));
|
||||
AcpiExOutPointer ("Parent", AcpiNsGetParentNode (Node));
|
||||
|
||||
AcpiExDumpObject (ACPI_CAST_PTR (ACPI_OPERAND_OBJECT, Node),
|
||||
AcpiExDumpNode);
|
||||
@ -1020,21 +996,18 @@ AcpiExDumpReferenceObj (
|
||||
AcpiOsPrintf (" Target: %p", ObjDesc->Reference.Object);
|
||||
if (ObjDesc->Reference.Class == ACPI_REFCLASS_TABLE)
|
||||
{
|
||||
AcpiOsPrintf (" Table Index: %X\n",
|
||||
ObjDesc->Reference.Value);
|
||||
AcpiOsPrintf (" Table Index: %X\n", ObjDesc->Reference.Value);
|
||||
}
|
||||
else
|
||||
{
|
||||
AcpiOsPrintf (" Target: %p [%s]\n",
|
||||
ObjDesc->Reference.Object,
|
||||
AcpiOsPrintf (" Target: %p [%s]\n", ObjDesc->Reference.Object,
|
||||
AcpiUtGetTypeName (((ACPI_OPERAND_OBJECT *)
|
||||
ObjDesc->Reference.Object)->Common.Type));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
AcpiOsPrintf (" Target: %p\n",
|
||||
ObjDesc->Reference.Object);
|
||||
AcpiOsPrintf (" Target: %p\n", ObjDesc->Reference.Object);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1090,7 +1063,7 @@ AcpiExDumpPackageObj (
|
||||
case ACPI_TYPE_INTEGER:
|
||||
|
||||
AcpiOsPrintf ("[Integer] = %8.8X%8.8X\n",
|
||||
ACPI_FORMAT_UINT64 (ObjDesc->Integer.Value));
|
||||
ACPI_FORMAT_UINT64 (ObjDesc->Integer.Value));
|
||||
break;
|
||||
|
||||
|
||||
@ -1111,7 +1084,7 @@ AcpiExDumpPackageObj (
|
||||
if (ObjDesc->Buffer.Length)
|
||||
{
|
||||
AcpiUtDumpBuffer (ACPI_CAST_PTR (UINT8, ObjDesc->Buffer.Pointer),
|
||||
ObjDesc->Buffer.Length, DB_DWORD_DISPLAY, _COMPONENT);
|
||||
ObjDesc->Buffer.Length, DB_DWORD_DISPLAY, _COMPONENT);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1123,7 +1096,7 @@ AcpiExDumpPackageObj (
|
||||
case ACPI_TYPE_PACKAGE:
|
||||
|
||||
AcpiOsPrintf ("[Package] Contains %d Elements:\n",
|
||||
ObjDesc->Package.Count);
|
||||
ObjDesc->Package.Count);
|
||||
|
||||
for (i = 0; i < ObjDesc->Package.Count; i++)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user