Deleted Added
sdiff udiff text old ( 241973 ) new ( 243347 )
full compact
1/******************************************************************************
2 *
3 * Module Name: adisasm - Application-level disassembler routines
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2012, Intel Corp.

--- 74 unchanged lines hidden (view full) ---

83AdGetFileSize (
84 FILE *File);
85
86static void
87AdCreateTableHeader (
88 char *Filename,
89 ACPI_TABLE_HEADER *Table);
90
91/* Stubs for ASL compiler */
92
93#ifndef ACPI_ASL_COMPILER
94BOOLEAN
95AcpiDsIsResultUsed (
96 ACPI_PARSE_OBJECT *Op,
97 ACPI_WALK_STATE *WalkState)
98{

--- 638 unchanged lines hidden (view full) ---

737 }
738
739 return (AE_OK);
740}
741
742
743/******************************************************************************
744 *
745 * FUNCTION: AdGetLocalTables
746 *
747 * PARAMETERS: Filename - Not used
748 * GetAllTables - TRUE if all tables are desired
749 *
750 * RETURN: Status
751 *
752 * DESCRIPTION: Get the ACPI tables from either memory or a file

--- 221 unchanged lines hidden (view full) ---

974
975 if (External)
976 {
977 return (AE_OK);
978 }
979
980 /* Pass 3: Parse control methods and link their parse trees into the main parse tree */
981
982 fprintf (stderr, "Parsing Deferred Opcodes (Methods/Buffers/Packages/Regions)\n");
983 Status = AcpiDmParseDeferredOps (AcpiGbl_ParseOpRoot);
984 fprintf (stderr, "\n");
985
986 /* Process Resource Templates */
987
988 AcpiDmFindResources (AcpiGbl_ParseOpRoot);
989
990 fprintf (stderr, "Parsing completed\n");
991 return (AE_OK);
992}