Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS import: src/sys/external/bsd/acpica/dist



Module Name:    src
Committed By:   christos
Date:           Tue Aug 18 09:53:46 UTC 2015

Update of /cvsroot/src/sys/external/bsd/acpica/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv26132

Log Message:
----------------------------------------
17 July 2015. Summary of changes for version 20150717:

1) ACPICA kernel-resident subsystem:

Improved the partitioning between the Debugger and Disassembler 
components. This allows the Debugger to be used standalone within kernel 
code without the Disassembler (which is used for single stepping also). 
This renames and moves one file, dmobject.c to dbobject.c. Lv Zheng.

Debugger: Implemented a new command to trace the execution of control 
methods (Trace). This is especially useful for the in-kernel version of 
the debugger when file I/O may not be available for method trace output. 
See the ACPICA reference for more information. Lv Zheng.

Moved all C library prototypes (used for the local versions of these 
functions when requested) to a new header, acclib.h
Cleaned up the use of non-ANSI C library functions. These functions are 
implemented locally in ACPICA. Moved all such functions to a common 
source file, utnonansi.c

Debugger: Fixed a problem with the "!!" command (get last command 
executed) where the debugger could enter an infinite loop and eventually 
crash.

Removed the use of local macros that were used for some of the standard C 
library functions to automatically cast input parameters. This mostly 
affected the is* functions where the input parameter is defined to be an 
int. This required a few modifications to the main ACPICA source code to 
provide casting for these functions and eliminate possible compiler 
warnings for these parameters.

Across the source code, added additional status/error checking to resolve 
issues discovered by static source code analysis tools such as Coverity.

Example Code and Data Size: These are the sizes for the OS-independent 
acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
debug version of the code includes the debug output trace mechanism and 
has a much larger code and data size.

  Current Release:
    Non-Debug Version: 100.9K Code, 24.5K Data, 125.4K Total
    Debug Version:     197.8K Code, 81.5K Data, 279.3K Total
  Previous Release:
    Non-Debug Version: 100.6K Code, 27.6K Data, 128.2K Total
    Debug Version:     196.2K Code, 81.0K Data, 277.2K Total


2) iASL Compiler/Disassembler and Tools:

iASL: Fixed a regression where the device map file feature no longer 
worked properly when used in conjunction with the disassembler. It only 
worked properly with the compiler itself.

iASL: Implemented a new warning for method LocalX variables that are set 
but never used (similar to a C compiler such as gcc). This also applies 
to ArgX variables that are not defined by the parent method, and are 
instead (legally) used as local variables.

iASL/Preprocessor: Finished the pass-through of line numbers from the 
preprocessor to the compiler. This ensures that compiler errors/warnings 
have the correct original line numbers and filenames, regardless of any 
#include files.

iASL/Preprocessor: Fixed a couple of issues with comment handling and the 
pass-through of comments to the preprocessor output file (which becomes 
the compiler input file). Also fixed a problem with // comments that 
appear after a math expression.

iASL: Added support for the TCPA server table to the table compiler and 
template generator. (The client table was already previously supported)

iASL/Preprocessor: Added a permanent #define of the symbol "__IASL__" to 
identify the iASL compiler.

Cleaned up the use of the macros NEGATIVE and POSITIVE which were defined 
multiple times. The new names are ACPI_SIGN_NEGATIVE and 
ACPI_SIGN_POSITIVE.

AcpiHelp: Update to expand help messages for the iASL preprocessor 
directives.


----------------------------------------
19 June 2015. Summary of changes for version 20150619:

Two regressions in version 20150616 have been addressed:

Fixes some problems/issues with the C library macro removal (ACPI_STRLEN, 
etc.) This update changes ACPICA to only use the standard headers for 
functions, or the prototypes for the local versions of the C library 
functions. Across the source code, this required some additional casts 
for some Clib invocations for portability. Moved all local prototypes to 
a new file, acclib.h

Fixes several problems with recent changes to the handling of the FACS 
table that could cause some systems not to boot.


----------------------------------------
16 June 2015. Summary of changes for version 20150616:


1) ACPICA kernel-resident subsystem:

Across the entire ACPICA source code base, the various macros for the C 
library functions (such as ACPI_STRLEN, etc.) have been removed and 
replaced by the standard C library names (strlen, etc.) The original 
purpose for these macros is no longer applicable. This simplification 
reduces the number of macros used in the ACPICA source code 
significantly, improving readability and maintainability.

Implemented support for a new ACPI table, the OSDT. This table, the 
"override" SDT, can be loaded directly by the host OS at boot time. It 
enables the replacement of existing namespace objects that were installed 
via the DSDT and/or SSDTs. The primary purpose for this is to replace 
buggy or incorrect ASL/AML code obtained via the BIOS. The OSDT is slated 
for inclusion in a future version of the ACPI Specification. Lv Zheng/Bob 
Moore.

Added support for systems with (improperly) two FACS tables -- a "32-bit" 
table (via FADT 32-bit legacy field) and a "64-bit" table (via the 64-bit 
X field). This change will support both automatically. There continues to 
be systems found with this issue. This support requires a change to the 
AcpiSetFirmwareWakingVector interface. Also, a public global variable has 
been added to allow the host to select which FACS is desired 
(AcpiGbl_Use32BitFacsAddresses). See the ACPICA reference for more 
details Lv Zheng.

Added a new feature to allow for systems that do not contain an FACS. 
Although this is already supported on hardware-reduced platforms, the 
feature has been extended for all platforms. The reasoning is that we do 
not want to abort the entire ACPICA initialization just because the 
system is seriously buggy and has no FACS.

Fixed a problem where the GUID strings for NFIT tables (in acuuid.h) were 
not correctly transcribed from the ACPI specification in ACPICA version 
20150515.

Implemented support for the _CLS object in the AcpiGetObjectInfo external 
interface.

Updated the definitions of the TCPA and TPM2 ACPI tables to the more 
recent TCG ACPI Specification, December 14, 2014. Table disassembler and 
compiler also updated. Note: The TCPA "server" table is not supported by 
the disassembler/table-compiler at this time.

ACPI 6.0: Added definitions for the new GIC version field in the MADT.

Example Code and Data Size: These are the sizes for the OS-independent 
acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
debug version of the code includes the debug output trace mechanism and 
has a much larger code and data size.

  Current Release:
    Non-Debug Version: 100.6K Code, 27.6K Data, 128.2K Total
    Debug Version:     196.2K Code, 81.0K Data, 277.2K Total
  Previous Release:
    Non-Debug Version:  99.9K Code, 27.5K Data, 127.4K Total
    Debug Version:     195.2K Code, 80.8K Data, 276.0K Total


2) iASL Compiler/Disassembler and Tools:

Disassembler: Fixed a problem with the new symbolic operator disassembler 
where incorrect ASL code could be emitted in some cases for the "non-
commutative" operators -- Subtract, Divide, Modulo, ShiftLeft, and 
ShiftRight. The actual problem cases seem to be rather unusual in common 
ASL code, however. David Box.

Modified the linux version of acpidump to obtain ACPI tables from not 
just /dev/mem (which may not exist) and /sys/firmware/acpi/tables. Lv 
Zheng.

iASL: Fixed a problem where the user preprocessor output file (.i) 
contained extra data that was not expected. The compiler was using this 
file as a temporary file and passed through #line directives in order to 
keep compiler error messages in sync with the input file and line number 
across multiple include files. The (.i) is no longer a temporary file as 
the compiler uses a new, different file for the original purpose.

iASL: Fixed a problem where comments within the original ASL source code 
file were not passed through to the preprocessor output file, nor any 
listing files.

iASL: Fixed some issues for the handling of the "#include" preprocessor 
directive and the similar (but not the same) "Include" ASL operator.

iASL: Add support for the new OSDT in both the disassembler and compiler.

iASL: Fixed a problem with the constant folding support where a Buffer 
object could be incorrectly generated (incorrectly formed) during a 
conversion to a Store() operator.

AcpiHelp: Updated for new NFIT GUIDs, "External" AML opcode, and new 
description text for the _REV predefined name. _REV now permanently 
returns 2, as per the ACPI 6.0 specification.

Debugger: Enhanced the output of the Debug ASL object for references 
produced by the Index operator. For Buffers and strings, only output the 
actual byte pointed to by the index. For packages, only print the single 
package element decoded by the index. Previously, the entire 
buffer/string/package was emitted.

iASL/Table-compiler: Fixed a regression where the "generic" data types 
were no longer recognized, causing errors.


----------------------------------------
15 May 2015. Summary of changes for version 20150515:

This release implements most of ACPI 6.0 as described below.

1) ACPICA kernel-resident subsystem:

Implemented runtime argument checking and return value checking for all 
new ACPI 6.0 predefined names. This includes: _BTH, _CR3, _DSD, _LPI, 
_MTL, _PRR, _RDI, _RST, _TFP, _TSN.

Example Code and Data Size: These are the sizes for the OS-independent 
acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
debug version of the code includes the debug output trace mechanism and 
has a much larger code and data size.

  Current Release:
    Non-Debug Version:  99.9K Code, 27.5K Data, 127.4K Total
    Debug Version:     195.2K Code, 80.8K Data, 276.0K Total
  Previous Release:
    Non-Debug Version:  99.1K Code, 27.3K Data, 126.4K Total
    Debug Version:     192.8K Code, 79.9K Data, 272.7K Total


2) iASL Compiler/Disassembler and Tools:

iASL compiler: Added compile-time support for all new ACPI 6.0 predefined 
names (argument count validation and return value typechecking.)

iASL disassembler and table compiler: implemented support for all new 
ACPI 6.0 tables. This includes: DRTM, IORT, LPIT, NFIT, STAO, WPBT, XENV. 

iASL disassembler and table compiler: Added ACPI 6.0 changes to existing 
tables: FADT, MADT.

iASL preprocessor: Added a new directive to enable inclusion of binary 
blobs into ASL code. The new directive is #includebuffer. It takes a 
binary file as input and emits a named ascii buffer object into the ASL 
code.

AcpiHelp: Added support for all new ACPI 6.0 predefined names.

AcpiHelp: Added a new option, -d, to display all iASL preprocessor 
directives.

AcpiHelp: Added a new option, -t, to display all known/supported ACPI 
tables.


Status:

Vendor Tag:     intel
Release Tags:   acpica-20150717
                
U src/sys/external/bsd/acpica/dist/changes.txt
U src/sys/external/bsd/acpica/dist/Makefile
U src/sys/external/bsd/acpica/dist/generate/lint/files.lnt
U src/sys/external/bsd/acpica/dist/generate/lint/lint.bat
U src/sys/external/bsd/acpica/dist/generate/lint/lset.bat
U src/sys/external/bsd/acpica/dist/generate/lint/options.lnt
U src/sys/external/bsd/acpica/dist/generate/lint/readme.txt
U src/sys/external/bsd/acpica/dist/generate/lint/std16.lnt
U src/sys/external/bsd/acpica/dist/generate/lint/std32.lnt
U src/sys/external/bsd/acpica/dist/generate/lint/std64.lnt
U src/sys/external/bsd/acpica/dist/generate/release/release.sh
U src/sys/external/bsd/acpica/dist/generate/release/build.sh
U src/sys/external/bsd/acpica/dist/generate/unix/Makefile.common
U src/sys/external/bsd/acpica/dist/generate/unix/Makefile
U src/sys/external/bsd/acpica/dist/generate/unix/Makefile.config
U src/sys/external/bsd/acpica/dist/generate/unix/Makefile.rules
U src/sys/external/bsd/acpica/dist/generate/unix/readme.txt
U src/sys/external/bsd/acpica/dist/generate/unix/acpibin/Makefile
U src/sys/external/bsd/acpica/dist/generate/unix/acpidump/Makefile
U src/sys/external/bsd/acpica/dist/generate/unix/acpiexamples/Makefile
U src/sys/external/bsd/acpica/dist/generate/unix/acpiexec/Makefile
U src/sys/external/bsd/acpica/dist/generate/unix/acpihelp/Makefile
U src/sys/external/bsd/acpica/dist/generate/unix/acpinames/Makefile
U src/sys/external/bsd/acpica/dist/generate/unix/acpisrc/Makefile
U src/sys/external/bsd/acpica/dist/generate/unix/acpixtract/Makefile
U src/sys/external/bsd/acpica/dist/generate/unix/iasl/Makefile
U src/sys/external/bsd/acpica/dist/common/acgetline.c
U src/sys/external/bsd/acpica/dist/common/adfile.c
U src/sys/external/bsd/acpica/dist/common/adisasm.c
U src/sys/external/bsd/acpica/dist/common/adwalk.c
U src/sys/external/bsd/acpica/dist/common/ahids.c
U src/sys/external/bsd/acpica/dist/common/ahpredef.c
N src/sys/external/bsd/acpica/dist/common/ahtable.c
U src/sys/external/bsd/acpica/dist/common/ahuuids.c
U src/sys/external/bsd/acpica/dist/common/cmfsize.c
U src/sys/external/bsd/acpica/dist/common/dmextern.c
U src/sys/external/bsd/acpica/dist/common/dmrestag.c
U src/sys/external/bsd/acpica/dist/common/dmtable.c
C src/sys/external/bsd/acpica/dist/common/dmtbdump.c
C src/sys/external/bsd/acpica/dist/common/dmtbinfo.c
U src/sys/external/bsd/acpica/dist/common/getopt.c
U src/sys/external/bsd/acpica/dist/tests/misc/badcode.asl
U src/sys/external/bsd/acpica/dist/tests/misc/grammar.asl
U src/sys/external/bsd/acpica/dist/tests/templates/templates.sh
U src/sys/external/bsd/acpica/dist/tests/templates/Makefile
C src/sys/external/bsd/acpica/dist/compiler/aslcompiler.h
C src/sys/external/bsd/acpica/dist/compiler/aslanalyze.c
U src/sys/external/bsd/acpica/dist/compiler/aslascii.c
U src/sys/external/bsd/acpica/dist/compiler/aslbtypes.c
U src/sys/external/bsd/acpica/dist/compiler/aslcodegen.c
C src/sys/external/bsd/acpica/dist/compiler/aslcompile.c
C src/sys/external/bsd/acpica/dist/compiler/aslcompiler.l
U src/sys/external/bsd/acpica/dist/compiler/asldefine.h
C src/sys/external/bsd/acpica/dist/compiler/aslerror.c
C src/sys/external/bsd/acpica/dist/compiler/aslfileio.c
C src/sys/external/bsd/acpica/dist/compiler/aslfiles.c
U src/sys/external/bsd/acpica/dist/compiler/aslfold.c
U src/sys/external/bsd/acpica/dist/compiler/aslglobal.h
U src/sys/external/bsd/acpica/dist/compiler/aslhex.c
U src/sys/external/bsd/acpica/dist/compiler/asllength.c
U src/sys/external/bsd/acpica/dist/compiler/asllisting.c
U src/sys/external/bsd/acpica/dist/compiler/asllistsup.c
U src/sys/external/bsd/acpica/dist/compiler/aslload.c
C src/sys/external/bsd/acpica/dist/compiler/asllookup.c
U src/sys/external/bsd/acpica/dist/compiler/aslmain.c
U src/sys/external/bsd/acpica/dist/compiler/aslmap.c
U src/sys/external/bsd/acpica/dist/compiler/aslmapenter.c
U src/sys/external/bsd/acpica/dist/compiler/aslmapoutput.c
U src/sys/external/bsd/acpica/dist/compiler/aslmaputils.c
U src/sys/external/bsd/acpica/dist/compiler/aslmessages.c
U src/sys/external/bsd/acpica/dist/compiler/aslmessages.h
U src/sys/external/bsd/acpica/dist/compiler/aslmethod.c
U src/sys/external/bsd/acpica/dist/compiler/aslnamesp.c
U src/sys/external/bsd/acpica/dist/compiler/asloffset.c
C src/sys/external/bsd/acpica/dist/compiler/aslopcodes.c
U src/sys/external/bsd/acpica/dist/compiler/asloperands.c
U src/sys/external/bsd/acpica/dist/compiler/aslopt.c
U src/sys/external/bsd/acpica/dist/compiler/asloptions.c
U src/sys/external/bsd/acpica/dist/compiler/aslparser.y
U src/sys/external/bsd/acpica/dist/compiler/aslpredef.c
C src/sys/external/bsd/acpica/dist/compiler/aslprepkg.c
U src/sys/external/bsd/acpica/dist/compiler/aslprintf.c
U src/sys/external/bsd/acpica/dist/compiler/aslprune.c
U src/sys/external/bsd/acpica/dist/compiler/aslresource.c
U src/sys/external/bsd/acpica/dist/compiler/aslrestype1.c
U src/sys/external/bsd/acpica/dist/compiler/aslrestype1i.c
U src/sys/external/bsd/acpica/dist/compiler/aslrestype2.c
U src/sys/external/bsd/acpica/dist/compiler/aslrestype2d.c
U src/sys/external/bsd/acpica/dist/compiler/aslrules.y
U src/sys/external/bsd/acpica/dist/compiler/aslrestype2e.c
U src/sys/external/bsd/acpica/dist/compiler/aslrestype2q.c
U src/sys/external/bsd/acpica/dist/compiler/aslrestype2s.c
U src/sys/external/bsd/acpica/dist/compiler/aslrestype2w.c
U src/sys/external/bsd/acpica/dist/compiler/aslstartup.c
U src/sys/external/bsd/acpica/dist/compiler/aslstubs.c
C src/sys/external/bsd/acpica/dist/compiler/aslsupport.l
U src/sys/external/bsd/acpica/dist/compiler/aslsupport.y
U src/sys/external/bsd/acpica/dist/compiler/asltokens.y
U src/sys/external/bsd/acpica/dist/compiler/asltransform.c
U src/sys/external/bsd/acpica/dist/compiler/asltree.c
U src/sys/external/bsd/acpica/dist/compiler/asltypes.h
U src/sys/external/bsd/acpica/dist/compiler/asltypes.y
C src/sys/external/bsd/acpica/dist/compiler/aslutils.c
U src/sys/external/bsd/acpica/dist/compiler/asluuid.c
U src/sys/external/bsd/acpica/dist/compiler/aslwalks.c
C src/sys/external/bsd/acpica/dist/compiler/aslxref.c
C src/sys/external/bsd/acpica/dist/compiler/dtcompile.c
U src/sys/external/bsd/acpica/dist/compiler/dtcompiler.h
U src/sys/external/bsd/acpica/dist/compiler/dtexpress.c
C src/sys/external/bsd/acpica/dist/compiler/dtfield.c
U src/sys/external/bsd/acpica/dist/compiler/dtio.c
U src/sys/external/bsd/acpica/dist/compiler/dtparser.l
C src/sys/external/bsd/acpica/dist/compiler/dtparser.y
C src/sys/external/bsd/acpica/dist/compiler/dtsubtable.c
C src/sys/external/bsd/acpica/dist/compiler/dttable.c
U src/sys/external/bsd/acpica/dist/compiler/dttemplate.c
U src/sys/external/bsd/acpica/dist/compiler/dttemplate.h
C src/sys/external/bsd/acpica/dist/compiler/dtutils.c
U src/sys/external/bsd/acpica/dist/compiler/new_table.txt
U src/sys/external/bsd/acpica/dist/compiler/preprocess.h
U src/sys/external/bsd/acpica/dist/compiler/prexpress.c
U src/sys/external/bsd/acpica/dist/compiler/prmacros.c
U src/sys/external/bsd/acpica/dist/compiler/prparser.l
C src/sys/external/bsd/acpica/dist/compiler/prparser.y
U src/sys/external/bsd/acpica/dist/compiler/prscan.c
C src/sys/external/bsd/acpica/dist/compiler/prutils.c
U src/sys/external/bsd/acpica/dist/compiler/readme.txt
U src/sys/external/bsd/acpica/dist/include/acbuffer.h
U src/sys/external/bsd/acpica/dist/include/acapps.h
U src/sys/external/bsd/acpica/dist/include/accommon.h
N src/sys/external/bsd/acpica/dist/include/acclib.h
U src/sys/external/bsd/acpica/dist/include/acconfig.h
C src/sys/external/bsd/acpica/dist/include/acdebug.h
C src/sys/external/bsd/acpica/dist/include/acdisasm.h
U src/sys/external/bsd/acpica/dist/include/acdispat.h
U src/sys/external/bsd/acpica/dist/include/acevents.h
U src/sys/external/bsd/acpica/dist/include/acexcep.h
C src/sys/external/bsd/acpica/dist/include/acglobal.h
U src/sys/external/bsd/acpica/dist/include/achware.h
C src/sys/external/bsd/acpica/dist/include/acinterp.h
C src/sys/external/bsd/acpica/dist/include/aclocal.h
C src/sys/external/bsd/acpica/dist/include/acmacros.h
U src/sys/external/bsd/acpica/dist/include/acnames.h
C src/sys/external/bsd/acpica/dist/include/acnamesp.h
U src/sys/external/bsd/acpica/dist/include/acobject.h
U src/sys/external/bsd/acpica/dist/include/acopcode.h
U src/sys/external/bsd/acpica/dist/include/acoutput.h
U src/sys/external/bsd/acpica/dist/include/acparser.h
U src/sys/external/bsd/acpica/dist/include/acpi.h
C src/sys/external/bsd/acpica/dist/include/acpiosxf.h
C src/sys/external/bsd/acpica/dist/include/acpixf.h
U src/sys/external/bsd/acpica/dist/include/acpredef.h
U src/sys/external/bsd/acpica/dist/include/acresrc.h
U src/sys/external/bsd/acpica/dist/include/acrestyp.h
U src/sys/external/bsd/acpica/dist/include/acstruct.h
U src/sys/external/bsd/acpica/dist/include/actables.h
U src/sys/external/bsd/acpica/dist/include/actbl.h
C src/sys/external/bsd/acpica/dist/include/actbl1.h
U src/sys/external/bsd/acpica/dist/include/actbl2.h
U src/sys/external/bsd/acpica/dist/include/actbl3.h
C src/sys/external/bsd/acpica/dist/include/actypes.h
C src/sys/external/bsd/acpica/dist/include/acutils.h
N src/sys/external/bsd/acpica/dist/include/acuuid.h
U src/sys/external/bsd/acpica/dist/include/amlcode.h
U src/sys/external/bsd/acpica/dist/include/amlresrc.h
U src/sys/external/bsd/acpica/dist/include/platform/acdragonfly.h
U src/sys/external/bsd/acpica/dist/include/platform/accygwin.h
U src/sys/external/bsd/acpica/dist/include/platform/acdragonflyex.h
U src/sys/external/bsd/acpica/dist/include/platform/acefi.h
N src/sys/external/bsd/acpica/dist/include/platform/acefiex.h
U src/sys/external/bsd/acpica/dist/include/platform/acenv.h
U src/sys/external/bsd/acpica/dist/include/platform/acenvex.h
U src/sys/external/bsd/acpica/dist/include/platform/acfreebsd.h
U src/sys/external/bsd/acpica/dist/include/platform/acgcc.h
U src/sys/external/bsd/acpica/dist/include/platform/achaiku.h
U src/sys/external/bsd/acpica/dist/include/platform/acintel.h
U src/sys/external/bsd/acpica/dist/include/platform/aclinux.h
U src/sys/external/bsd/acpica/dist/include/platform/aclinuxex.h
U src/sys/external/bsd/acpica/dist/include/platform/acmacosx.h
U src/sys/external/bsd/acpica/dist/include/platform/acmsvc.h
N src/sys/external/bsd/acpica/dist/include/platform/acmsvcex.h
U src/sys/external/bsd/acpica/dist/include/platform/acnetbsd.h
U src/sys/external/bsd/acpica/dist/include/platform/acos2.h
U src/sys/external/bsd/acpica/dist/include/platform/acwin.h
U src/sys/external/bsd/acpica/dist/include/platform/acwin64.h
N src/sys/external/bsd/acpica/dist/include/platform/acwinex.h
U src/sys/external/bsd/acpica/dist/os_specific/service_layers/osbsdtbl.c
U src/sys/external/bsd/acpica/dist/os_specific/service_layers/osefitbl.c
U src/sys/external/bsd/acpica/dist/os_specific/service_layers/osefixf.c
U src/sys/external/bsd/acpica/dist/os_specific/service_layers/oslibcfs.c
C src/sys/external/bsd/acpica/dist/os_specific/service_layers/oslinuxtbl.c
U src/sys/external/bsd/acpica/dist/os_specific/service_layers/osunixdir.c
U src/sys/external/bsd/acpica/dist/os_specific/service_layers/osunixmap.c
U src/sys/external/bsd/acpica/dist/os_specific/service_layers/osunixxf.c
U src/sys/external/bsd/acpica/dist/os_specific/service_layers/oswindir.c
U src/sys/external/bsd/acpica/dist/os_specific/service_layers/oswintbl.c
U src/sys/external/bsd/acpica/dist/os_specific/service_layers/oswinxf.c
U src/sys/external/bsd/acpica/dist/tools/acpibin/abcompare.c
U src/sys/external/bsd/acpica/dist/tools/acpibin/abmain.c
U src/sys/external/bsd/acpica/dist/tools/acpibin/acpibin.h
U src/sys/external/bsd/acpica/dist/tools/acpidump/acpidump.h
U src/sys/external/bsd/acpica/dist/tools/acpidump/apdump.c
C src/sys/external/bsd/acpica/dist/tools/acpidump/apfiles.c
U src/sys/external/bsd/acpica/dist/tools/acpidump/apmain.c
U src/sys/external/bsd/acpica/dist/tools/acpiexec/aecommon.h
U src/sys/external/bsd/acpica/dist/tools/acpiexec/aeexec.c
U src/sys/external/bsd/acpica/dist/tools/acpiexec/aehandlers.c
U src/sys/external/bsd/acpica/dist/tools/acpiexec/aeinitfile.c
U src/sys/external/bsd/acpica/dist/tools/acpiexec/aemain.c
U src/sys/external/bsd/acpica/dist/tools/acpiexec/aeregion.c
U src/sys/external/bsd/acpica/dist/tools/acpiexec/aetables.c
U src/sys/external/bsd/acpica/dist/tools/acpiexec/aetables.h
U src/sys/external/bsd/acpica/dist/tools/acpihelp/acpihelp.h
U src/sys/external/bsd/acpica/dist/tools/acpihelp/ahamlops.c
U src/sys/external/bsd/acpica/dist/tools/acpihelp/ahaslkey.c
U src/sys/external/bsd/acpica/dist/tools/acpihelp/ahaslops.c
U src/sys/external/bsd/acpica/dist/tools/acpihelp/ahdecode.c
U src/sys/external/bsd/acpica/dist/tools/acpihelp/ahmain.c
U src/sys/external/bsd/acpica/dist/tools/acpinames/acpinames.h
U src/sys/external/bsd/acpica/dist/tools/acpinames/anmain.c
U src/sys/external/bsd/acpica/dist/tools/acpinames/anstubs.c
U src/sys/external/bsd/acpica/dist/tools/acpinames/antables.c
U src/sys/external/bsd/acpica/dist/tools/acpisrc/acpisrc.h
U src/sys/external/bsd/acpica/dist/tools/acpisrc/ascase.c
U src/sys/external/bsd/acpica/dist/tools/acpisrc/asconvrt.c
U src/sys/external/bsd/acpica/dist/tools/acpisrc/asfile.c
U src/sys/external/bsd/acpica/dist/tools/acpisrc/asmain.c
U src/sys/external/bsd/acpica/dist/tools/acpisrc/asremove.c
U src/sys/external/bsd/acpica/dist/tools/acpisrc/astable.c
U src/sys/external/bsd/acpica/dist/tools/acpisrc/asutils.c
C src/sys/external/bsd/acpica/dist/tools/acpixtract/acpixtract.c
U src/sys/external/bsd/acpica/dist/tools/acpixtract/axmain.c
U src/sys/external/bsd/acpica/dist/tools/examples/examples.c
U src/sys/external/bsd/acpica/dist/tools/examples/examples.h
U src/sys/external/bsd/acpica/dist/tools/examples/exstubs.c
U src/sys/external/bsd/acpica/dist/tools/examples/extables.c
U src/sys/external/bsd/acpica/dist/debugger/dbconvert.c
C src/sys/external/bsd/acpica/dist/debugger/dbcmds.c
C src/sys/external/bsd/acpica/dist/debugger/dbdisply.c
C src/sys/external/bsd/acpica/dist/debugger/dbexec.c
U src/sys/external/bsd/acpica/dist/debugger/dbfileio.c
U src/sys/external/bsd/acpica/dist/debugger/dbhistry.c
C src/sys/external/bsd/acpica/dist/debugger/dbinput.c
C src/sys/external/bsd/acpica/dist/debugger/dbmethod.c
C src/sys/external/bsd/acpica/dist/debugger/dbnames.c
N src/sys/external/bsd/acpica/dist/debugger/dbobject.c
U src/sys/external/bsd/acpica/dist/debugger/dbstats.c
C src/sys/external/bsd/acpica/dist/debugger/dbtest.c
C src/sys/external/bsd/acpica/dist/debugger/dbutils.c
U src/sys/external/bsd/acpica/dist/debugger/dbxface.c
C src/sys/external/bsd/acpica/dist/disassembler/dmbuffer.c
C src/sys/external/bsd/acpica/dist/disassembler/dmcstyle.c
U src/sys/external/bsd/acpica/dist/disassembler/dmdeferred.c
U src/sys/external/bsd/acpica/dist/disassembler/dmnames.c
U src/sys/external/bsd/acpica/dist/disassembler/dmopcode.c
U src/sys/external/bsd/acpica/dist/disassembler/dmresrc.c
U src/sys/external/bsd/acpica/dist/disassembler/dmresrcl.c
U src/sys/external/bsd/acpica/dist/disassembler/dmresrcl2.c
U src/sys/external/bsd/acpica/dist/disassembler/dmresrcs.c
U src/sys/external/bsd/acpica/dist/disassembler/dmutils.c
C src/sys/external/bsd/acpica/dist/disassembler/dmwalk.c
U src/sys/external/bsd/acpica/dist/dispatcher/dscontrol.c
U src/sys/external/bsd/acpica/dist/dispatcher/dsargs.c
N src/sys/external/bsd/acpica/dist/dispatcher/dsdebug.c
U src/sys/external/bsd/acpica/dist/dispatcher/dsfield.c
U src/sys/external/bsd/acpica/dist/dispatcher/dsinit.c
U src/sys/external/bsd/acpica/dist/dispatcher/dsmethod.c
U src/sys/external/bsd/acpica/dist/dispatcher/dsmthdat.c
U src/sys/external/bsd/acpica/dist/dispatcher/dsobject.c
U src/sys/external/bsd/acpica/dist/dispatcher/dsopcode.c
C src/sys/external/bsd/acpica/dist/dispatcher/dsutils.c
U src/sys/external/bsd/acpica/dist/dispatcher/dswexec.c
U src/sys/external/bsd/acpica/dist/dispatcher/dswload.c
U src/sys/external/bsd/acpica/dist/dispatcher/dswload2.c
U src/sys/external/bsd/acpica/dist/dispatcher/dswscope.c
U src/sys/external/bsd/acpica/dist/dispatcher/dswstate.c
U src/sys/external/bsd/acpica/dist/events/evevent.c
U src/sys/external/bsd/acpica/dist/events/evglock.c
U src/sys/external/bsd/acpica/dist/events/evgpe.c
U src/sys/external/bsd/acpica/dist/events/evgpeblk.c
U src/sys/external/bsd/acpica/dist/events/evgpeinit.c
U src/sys/external/bsd/acpica/dist/events/evgpeutil.c
U src/sys/external/bsd/acpica/dist/events/evhandler.c
U src/sys/external/bsd/acpica/dist/events/evmisc.c
U src/sys/external/bsd/acpica/dist/events/evregion.c
U src/sys/external/bsd/acpica/dist/events/evrgnini.c
U src/sys/external/bsd/acpica/dist/events/evsci.c
U src/sys/external/bsd/acpica/dist/events/evxface.c
U src/sys/external/bsd/acpica/dist/events/evxfevnt.c
U src/sys/external/bsd/acpica/dist/events/evxfgpe.c
U src/sys/external/bsd/acpica/dist/events/evxfregn.c
C src/sys/external/bsd/acpica/dist/executer/exconfig.c
U src/sys/external/bsd/acpica/dist/executer/exconvrt.c
U src/sys/external/bsd/acpica/dist/executer/excreate.c
C src/sys/external/bsd/acpica/dist/executer/exdebug.c
C src/sys/external/bsd/acpica/dist/executer/exdump.c
U src/sys/external/bsd/acpica/dist/executer/exfield.c
U src/sys/external/bsd/acpica/dist/executer/exfldio.c
U src/sys/external/bsd/acpica/dist/executer/exmisc.c
U src/sys/external/bsd/acpica/dist/executer/exmutex.c
U src/sys/external/bsd/acpica/dist/executer/exnames.c
U src/sys/external/bsd/acpica/dist/executer/exoparg1.c
U src/sys/external/bsd/acpica/dist/executer/exoparg2.c
U src/sys/external/bsd/acpica/dist/executer/exoparg3.c
U src/sys/external/bsd/acpica/dist/executer/exoparg6.c
U src/sys/external/bsd/acpica/dist/executer/exprep.c
U src/sys/external/bsd/acpica/dist/executer/exregion.c
U src/sys/external/bsd/acpica/dist/executer/exresnte.c
U src/sys/external/bsd/acpica/dist/executer/exresolv.c
U src/sys/external/bsd/acpica/dist/executer/exresop.c
U src/sys/external/bsd/acpica/dist/executer/exstore.c
U src/sys/external/bsd/acpica/dist/executer/exstoren.c
U src/sys/external/bsd/acpica/dist/executer/exstorob.c
U src/sys/external/bsd/acpica/dist/executer/exsystem.c
U src/sys/external/bsd/acpica/dist/executer/exutils.c
U src/sys/external/bsd/acpica/dist/hardware/hwesleep.c
U src/sys/external/bsd/acpica/dist/hardware/hwacpi.c
U src/sys/external/bsd/acpica/dist/hardware/hwsleep.c
U src/sys/external/bsd/acpica/dist/hardware/hwgpe.c
U src/sys/external/bsd/acpica/dist/hardware/hwpci.c
U src/sys/external/bsd/acpica/dist/hardware/hwregs.c
U src/sys/external/bsd/acpica/dist/hardware/hwtimer.c
U src/sys/external/bsd/acpica/dist/hardware/hwvalid.c
U src/sys/external/bsd/acpica/dist/hardware/hwxface.c
C src/sys/external/bsd/acpica/dist/hardware/hwxfsleep.c
U src/sys/external/bsd/acpica/dist/namespace/nsarguments.c
C src/sys/external/bsd/acpica/dist/namespace/nsaccess.c
U src/sys/external/bsd/acpica/dist/namespace/nsalloc.c
U src/sys/external/bsd/acpica/dist/namespace/nsconvert.c
C src/sys/external/bsd/acpica/dist/namespace/nsdump.c
U src/sys/external/bsd/acpica/dist/namespace/nsdumpdv.c
C src/sys/external/bsd/acpica/dist/namespace/nseval.c
C src/sys/external/bsd/acpica/dist/namespace/nsinit.c
U src/sys/external/bsd/acpica/dist/namespace/nsload.c
U src/sys/external/bsd/acpica/dist/namespace/nsnames.c
U src/sys/external/bsd/acpica/dist/namespace/nsobject.c
U src/sys/external/bsd/acpica/dist/namespace/nsparse.c
U src/sys/external/bsd/acpica/dist/namespace/nspredef.c
U src/sys/external/bsd/acpica/dist/namespace/nsprepkg.c
U src/sys/external/bsd/acpica/dist/namespace/nsrepair.c
C src/sys/external/bsd/acpica/dist/namespace/nsrepair2.c
U src/sys/external/bsd/acpica/dist/namespace/nssearch.c
U src/sys/external/bsd/acpica/dist/namespace/nsutils.c
U src/sys/external/bsd/acpica/dist/namespace/nswalk.c
C src/sys/external/bsd/acpica/dist/namespace/nsxfeval.c
C src/sys/external/bsd/acpica/dist/namespace/nsxfname.c
U src/sys/external/bsd/acpica/dist/namespace/nsxfobj.c
U src/sys/external/bsd/acpica/dist/parser/psobject.c
U src/sys/external/bsd/acpica/dist/parser/psargs.c
U src/sys/external/bsd/acpica/dist/parser/psloop.c
U src/sys/external/bsd/acpica/dist/parser/psopcode.c
C src/sys/external/bsd/acpica/dist/parser/psopinfo.c
U src/sys/external/bsd/acpica/dist/parser/psparse.c
U src/sys/external/bsd/acpica/dist/parser/psscope.c
U src/sys/external/bsd/acpica/dist/parser/pstree.c
U src/sys/external/bsd/acpica/dist/parser/psutils.c
U src/sys/external/bsd/acpica/dist/parser/pswalk.c
U src/sys/external/bsd/acpica/dist/parser/psxface.c
U src/sys/external/bsd/acpica/dist/resources/rscreate.c
U src/sys/external/bsd/acpica/dist/resources/rsaddr.c
U src/sys/external/bsd/acpica/dist/resources/rscalc.c
U src/sys/external/bsd/acpica/dist/resources/rsdumpinfo.c
U src/sys/external/bsd/acpica/dist/resources/rsdump.c
U src/sys/external/bsd/acpica/dist/resources/rsmemory.c
U src/sys/external/bsd/acpica/dist/resources/rsinfo.c
U src/sys/external/bsd/acpica/dist/resources/rsio.c
U src/sys/external/bsd/acpica/dist/resources/rsirq.c
U src/sys/external/bsd/acpica/dist/resources/rslist.c
U src/sys/external/bsd/acpica/dist/resources/rsserial.c
U src/sys/external/bsd/acpica/dist/resources/rsmisc.c
C src/sys/external/bsd/acpica/dist/resources/rsutils.c
C src/sys/external/bsd/acpica/dist/resources/rsxface.c
C src/sys/external/bsd/acpica/dist/tables/tbinstal.c
C src/sys/external/bsd/acpica/dist/tables/tbdata.c
C src/sys/external/bsd/acpica/dist/tables/tbfadt.c
U src/sys/external/bsd/acpica/dist/tables/tbfind.c
U src/sys/external/bsd/acpica/dist/tables/tbprint.c
C src/sys/external/bsd/acpica/dist/tables/tbutils.c
C src/sys/external/bsd/acpica/dist/tables/tbxface.c
U src/sys/external/bsd/acpica/dist/tables/tbxfload.c
U src/sys/external/bsd/acpica/dist/tables/tbxfroot.c
U src/sys/external/bsd/acpica/dist/utilities/utaddress.c
U src/sys/external/bsd/acpica/dist/utilities/utalloc.c
U src/sys/external/bsd/acpica/dist/utilities/utbuffer.c
C src/sys/external/bsd/acpica/dist/utilities/utcache.c
U src/sys/external/bsd/acpica/dist/utilities/utclib.c
U src/sys/external/bsd/acpica/dist/utilities/utcopy.c
C src/sys/external/bsd/acpica/dist/utilities/utdebug.c
U src/sys/external/bsd/acpica/dist/utilities/utdecode.c
U src/sys/external/bsd/acpica/dist/utilities/utdelete.c
U src/sys/external/bsd/acpica/dist/utilities/uterror.c
U src/sys/external/bsd/acpica/dist/utilities/uteval.c
U src/sys/external/bsd/acpica/dist/utilities/utexcep.c
U src/sys/external/bsd/acpica/dist/utilities/utfileio.c
U src/sys/external/bsd/acpica/dist/utilities/utglobal.c
U src/sys/external/bsd/acpica/dist/utilities/uthex.c
U src/sys/external/bsd/acpica/dist/utilities/utids.c
U src/sys/external/bsd/acpica/dist/utilities/utinit.c
U src/sys/external/bsd/acpica/dist/utilities/utlock.c
U src/sys/external/bsd/acpica/dist/utilities/utmath.c
C src/sys/external/bsd/acpica/dist/utilities/utmisc.c
U src/sys/external/bsd/acpica/dist/utilities/utmutex.c
N src/sys/external/bsd/acpica/dist/utilities/utnonansi.c
U src/sys/external/bsd/acpica/dist/utilities/utobject.c
C src/sys/external/bsd/acpica/dist/utilities/utosi.c
U src/sys/external/bsd/acpica/dist/utilities/utownerid.c
U src/sys/external/bsd/acpica/dist/utilities/utpredef.c
U src/sys/external/bsd/acpica/dist/utilities/utprint.c
U src/sys/external/bsd/acpica/dist/utilities/utresrc.c
U src/sys/external/bsd/acpica/dist/utilities/utstate.c
U src/sys/external/bsd/acpica/dist/utilities/utstring.c
C src/sys/external/bsd/acpica/dist/utilities/uttrack.c
U src/sys/external/bsd/acpica/dist/utilities/utuuid.c
U src/sys/external/bsd/acpica/dist/utilities/utxface.c
U src/sys/external/bsd/acpica/dist/utilities/utxferror.c
U src/sys/external/bsd/acpica/dist/utilities/utxfinit.c
U src/sys/external/bsd/acpica/dist/utilities/utxfmutex.c

74 conflicts created by this import.
Use the following command to help the merge:

        cvs checkout -jintel:yesterday -jintel src/sys/external/bsd/acpica/dist




Home | Main Index | Thread Index | Old Index