Generation for Win64

date	2001.12.13.17.23.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 15:40:40 +00:00
parent 920903d6a1
commit ccd7562273
3 changed files with 18 additions and 22 deletions

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: aslanalyze.c - check for semantic errors
* $Revision: 1.51 $
* $Revision: 1.52 $
*
*****************************************************************************/
@ -1275,7 +1275,7 @@ AnOperandTypecheckWalkEnd (
/* TBD: implement analysis of current value (type) of the local */
/* For now, just treat any local as a typematch */
//ThisNodeBtype = RequiredBtypes;
/*ThisNodeBtype = RequiredBtypes;*/
break;
case ARG0:
@ -1289,7 +1289,7 @@ AnOperandTypecheckWalkEnd (
/* Hard to analyze argument types, sow we won't */
/* For now, just treat any arg as a typematch */
//ThisNodeBtype = RequiredBtypes;
/* ThisNodeBtype = RequiredBtypes; */
break;
case DEBUG:

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: aslcompile - top level compile module
* $Revision: 1.36 $
* $Revision: 1.37 $
*
*****************************************************************************/
@ -115,7 +115,8 @@
*
*****************************************************************************/
#include <stdio.h>
#include <io.h>
#include "aslcompiler.h"
#include "acnamesp.h"
#include "acdebug.h"
@ -464,19 +465,19 @@ CmCleanupAndExit (void)
{
if (AslGbl_Events[i].Valid)
{
printf ("%8ld ms : %s\n",
printf ("%8lu ms : %s\n",
AslGbl_Events[i].EndTime -
AslGbl_Events[i].StartTime,
AslGbl_Events[i].EventName);
}
}
printf ("\nMiscellaneous compile statistics\n\n");
printf ("%11d : %s\n", TotalParseNodes, "Parse nodes");
printf ("%11d : %s\n", Gbl_NsLookupCount, "Namespace searches");
printf ("%11d : %s\n", TotalNamedObjects, "Named objects");
printf ("%11d : %s\n", TotalMethods, "Control methods");
printf ("%11d : %s\n", TotalAllocations, "Memory Allocations");
printf ("%11d : %s\n", TotalAllocated, "Total allocated memory");
printf ("%11u : %s\n", TotalParseNodes, "Parse nodes");
printf ("%11u : %s\n", Gbl_NsLookupCount, "Namespace searches");
printf ("%11u : %s\n", TotalNamedObjects, "Named objects");
printf ("%11u : %s\n", TotalMethods, "Control methods");
printf ("%11u : %s\n", TotalAllocations, "Memory Allocations");
printf ("%11u : %s\n", TotalAllocated, "Total allocated memory");
printf ("\n");
}

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: aslcompiler.h - common include file
* $Revision: 1.79 $
* $Revision: 1.84 $
*
*****************************************************************************/
@ -122,7 +122,7 @@
/* Microsoft-specific */
#ifdef WIN32
#if (defined WIN32 || defined WIN64)
/* warn : used #pragma pack */
#pragma warning(disable:4103)
@ -164,8 +164,8 @@ getopt (
* Compiler versions and names
*/
#define CompilerVersion "X2031"
#define CompilerCreatorRevision 0x02002031 /* Acpi 2.0, Version # */
#define CompilerVersion "X2034"
#define CompilerCreatorRevision 0x02002034 /* Acpi 2.0, Version # */
#define CompilerId "Intel ACPI Component Architecture ASL Compiler"
#define CompilerCopyright "Copyright (C) 2000, 2001 Intel Corporation"
@ -209,11 +209,6 @@ getopt (
#define AML_DEFAULT_ARG_OP (UINT16) 0xDDDD
/* TBD: Is this a real opcode? */
#define AML_CONCAT_TPL_OP (UINT16) 0x00FE
/* filename suffixes for output files */
#define FILE_SUFFIX_AML_CODE "aml"
@ -456,7 +451,7 @@ CgWriteNode (
* aslmap
*/
ACPI_OBJECT_TYPE8
ACPI_OBJECT_TYPE
AslMapNamedOpcodeToDataType (
UINT16 Opcode);