Deleted Added
full compact
asltree.c (151937) asltree.c (167802)
1
2/******************************************************************************
3 *
4 * Module Name: asltree - parse tree management
1
2/******************************************************************************
3 *
4 * Module Name: asltree - parse tree management
5 * $Revision: 1.60 $
5 * $Revision: 1.63 $
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999 - 2005, Intel Corp.
13 * Some or all of this work - Copyright (c) 1999 - 2007, Intel Corp.
14 * All rights reserved.
15 *
16 * 2. License
17 *
18 * 2.1. This is your license from Intel Corp. under its intellectual property
19 * rights. You may have additional license terms from the party that provided
20 * you this software, covering your right to use that party's intellectual
21 * property rights.

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

462 UINT32 ParseOpcode)
463{
464 ACPI_PARSE_OBJECT *Op;
465
466
467 Op = TrAllocateNode (ParseOpcode);
468
469 DbgPrint (ASL_PARSE_OUTPUT,
14 * All rights reserved.
15 *
16 * 2. License
17 *
18 * 2.1. This is your license from Intel Corp. under its intellectual property
19 * rights. You may have additional license terms from the party that provided
20 * you this software, covering your right to use that party's intellectual
21 * property rights.

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

462 UINT32 ParseOpcode)
463{
464 ACPI_PARSE_OBJECT *Op;
465
466
467 Op = TrAllocateNode (ParseOpcode);
468
469 DbgPrint (ASL_PARSE_OUTPUT,
470 "\nCreateLeafNode Line %d NewNode %p Op %s\n\n",
471 Op->Asl.LineNumber, Op, UtGetOpName(ParseOpcode));
470 "\nCreateLeafNode Ln/Col %d/%d NewNode %p Op %s\n\n",
471 Op->Asl.LineNumber, Op->Asl.Column, Op, UtGetOpName(ParseOpcode));
472
473 return Op;
474}
475
476
477/*******************************************************************************
478 *
479 * FUNCTION: TrCreateValuedLeafNode

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

494 ACPI_INTEGER Value)
495{
496 ACPI_PARSE_OBJECT *Op;
497
498
499 Op = TrAllocateNode (ParseOpcode);
500
501 DbgPrint (ASL_PARSE_OUTPUT,
472
473 return Op;
474}
475
476
477/*******************************************************************************
478 *
479 * FUNCTION: TrCreateValuedLeafNode

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

494 ACPI_INTEGER Value)
495{
496 ACPI_PARSE_OBJECT *Op;
497
498
499 Op = TrAllocateNode (ParseOpcode);
500
501 DbgPrint (ASL_PARSE_OUTPUT,
502 "\nCreateValuedLeafNode Line %d NewNode %p Op %s Value %8.8X%8.8X ",
503 Op->Asl.LineNumber, Op, UtGetOpName(ParseOpcode),
502 "\nCreateValuedLeafNode Ln/Col %d/%d NewNode %p Op %s Value %8.8X%8.8X ",
503 Op->Asl.LineNumber, Op->Asl.Column, Op, UtGetOpName(ParseOpcode),
504 ACPI_FORMAT_UINT64 (Value));
505 Op->Asl.Value.Integer = Value;
506
507 switch (ParseOpcode)
508 {
509 case PARSEOP_STRING_LITERAL:
510 DbgPrint (ASL_PARSE_OUTPUT, "STRING->%s", Value);
511 break;

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

571
572 va_start (ap, NumChildren);
573
574 /* Allocate one new node */
575
576 Op = TrAllocateNode (ParseOpcode);
577
578 DbgPrint (ASL_PARSE_OUTPUT,
504 ACPI_FORMAT_UINT64 (Value));
505 Op->Asl.Value.Integer = Value;
506
507 switch (ParseOpcode)
508 {
509 case PARSEOP_STRING_LITERAL:
510 DbgPrint (ASL_PARSE_OUTPUT, "STRING->%s", Value);
511 break;

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

571
572 va_start (ap, NumChildren);
573
574 /* Allocate one new node */
575
576 Op = TrAllocateNode (ParseOpcode);
577
578 DbgPrint (ASL_PARSE_OUTPUT,
579 "\nCreateNode Line %d NewParent %p Child %d Op %s ",
580 Op->Asl.LineNumber, Op, NumChildren, UtGetOpName(ParseOpcode));
579 "\nCreateNode Ln/Col %d/%d NewParent %p Child %d Op %s ",
580 Op->Asl.LineNumber, Op->Asl.Column, Op, NumChildren, UtGetOpName(ParseOpcode));
581
582 /* Some extra debug output based on the parse opcode */
583
584 switch (ParseOpcode)
585 {
586 case PARSEOP_DEFINITIONBLOCK:
587 RootNode = Op;
588 DbgPrint (ASL_PARSE_OUTPUT, "DEFINITION_BLOCK (Tree Completed)->");

--- 606 unchanged lines hidden ---
581
582 /* Some extra debug output based on the parse opcode */
583
584 switch (ParseOpcode)
585 {
586 case PARSEOP_DEFINITIONBLOCK:
587 RootNode = Op;
588 DbgPrint (ASL_PARSE_OUTPUT, "DEFINITION_BLOCK (Tree Completed)->");

--- 606 unchanged lines hidden ---