1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
|
/** @file
AML Tree Traversal.
Copyright (c) 2019 - 2020, Arm Limited. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Tree/AmlTreeTraversal.h>
#include <AmlCoreInterface.h>
#include <Tree/AmlTree.h>
/** Get the sibling node among the nodes being in
the same variable argument list.
(ParentNode) /-i # Child of fixed argument b
\ /
|- [a][b][c][d] # Fixed Arguments
|- {(VarArgNode)->(f)->(g)} # Variable Arguments
\
\-h # Child of variable argument e
Node must be in a variable list of arguments.
Traversal Order: VarArgNode, f, g, NULL
@ingroup CoreNavigationApis
@param [in] VarArgNode Pointer to a node.
Must be in a variable list of arguments.
@return The next node after VarArgNode in the variable list of arguments.
Return NULL if
- VarArgNode is the last node of the list, or
- VarArgNode is not part of a variable list of arguments.
**/
AML_NODE_HEADER *
EFIAPI
AmlGetSiblingVariableArgument (
IN AML_NODE_HEADER *VarArgNode
)
{
EAML_PARSE_INDEX Index;
AML_NODE_HEADER *ParentNode;
// VarArgNode must be an object node or a data node,
// and be in a variable list of arguments.
if ((!IS_AML_OBJECT_NODE (VarArgNode) &&
!IS_AML_DATA_NODE (VarArgNode)) ||
AmlIsNodeFixedArgument (VarArgNode, &Index))
{
ASSERT (0);
return NULL;
}
ParentNode = AmlGetParent (VarArgNode);
if (!IS_AML_NODE_VALID (ParentNode)) {
ASSERT (0);
return NULL;
}
return AmlGetNextVariableArgument (ParentNode, VarArgNode);
}
/** Get the next variable argument.
(Node) /-i # Child of fixed argument b
\ /
|- [a][b][c][d] # Fixed Arguments
|- {(e)->(f)->(g)} # Variable Arguments
\
\-h # Child of variable argument e
Traversal Order: e, f, g, NULL
@param [in] Node Pointer to a Root node or Object Node.
@param [in] CurrVarArg Pointer to the Current Variable Argument.
@return The node after the CurrVarArg in the variable list of arguments.
If CurrVarArg is NULL, return the first node of the
variable argument list.
Return NULL if
- CurrVarArg is the last node of the list, or
- Node does not have a variable list of arguments.
**/
AML_NODE_HEADER *
EFIAPI
AmlGetNextVariableArgument (
IN AML_NODE_HEADER *Node,
IN AML_NODE_HEADER *CurrVarArg
)
{
CONST LIST_ENTRY *StartLink;
CONST LIST_ENTRY *NextLink;
// Node must be a RootNode or an Object Node
// and the CurrVarArg must not be a Root Node.
if ((!IS_AML_ROOT_NODE (Node) &&
!IS_AML_OBJECT_NODE (Node)) ||
((CurrVarArg != NULL) &&
(!IS_AML_OBJECT_NODE (CurrVarArg) &&
!IS_AML_DATA_NODE (CurrVarArg))))
{
ASSERT (0);
return NULL;
}
StartLink = AmlNodeGetVariableArgList (Node);
if (StartLink == NULL) {
return NULL;
}
// Get the first child of the variable list of arguments.
if (CurrVarArg == NULL) {
NextLink = StartLink->ForwardLink;
if (NextLink != StartLink) {
return (AML_NODE_HEADER *)NextLink;
}
// List is empty.
return NULL;
}
// Check if CurrVarArg is in the VariableArgument List.
if (!IsNodeInList (StartLink, &CurrVarArg->Link)) {
ASSERT (0);
return NULL;
}
// Get the node following the CurrVarArg.
NextLink = CurrVarArg->Link.ForwardLink;
if (NextLink != StartLink) {
return (AML_NODE_HEADER *)NextLink;
}
// End of the list has been reached.
return NULL;
}
/** Get the previous variable argument.
(Node) /-i # Child of fixed argument b
\ /
|- [a][b][c][d] # Fixed Arguments
|- {(e)->(f)->(g)} # Variable Arguments
\
\-h # Child of variable argument e
Traversal Order: g, f, e, NULL
@param [in] Node Pointer to a root node or an object node.
@param [in] CurrVarArg Pointer to the Current Variable Argument.
@return The node before the CurrVarArg in the variable list of
arguments.
If CurrVarArg is NULL, return the last node of the
variable list of arguments.
Return NULL if:
- CurrVarArg is the first node of the list, or
- Node doesn't have a variable list of arguments.
**/
AML_NODE_HEADER *
EFIAPI
AmlGetPreviousVariableArgument (
IN AML_NODE_HEADER *Node,
IN AML_NODE_HEADER *CurrVarArg
)
{
CONST LIST_ENTRY *StartLink;
CONST LIST_ENTRY *PreviousLink;
// Node must be a RootNode or an Object Node
// and the CurrVarArg must not be a Root Node.
if ((!IS_AML_ROOT_NODE (Node) &&
!IS_AML_OBJECT_NODE (Node)) ||
((CurrVarArg != NULL) &&
(!IS_AML_OBJECT_NODE (CurrVarArg) &&
!IS_AML_DATA_NODE (CurrVarArg))))
{
ASSERT (0);
return NULL;
}
StartLink = AmlNodeGetVariableArgList (Node);
if (StartLink == NULL) {
return NULL;
}
// Get the last child of the variable list of arguments.
if (CurrVarArg == NULL) {
PreviousLink = StartLink->BackLink;
if (PreviousLink != StartLink) {
return (AML_NODE_HEADER *)PreviousLink;
}
// List is empty.
return NULL;
}
// Check if CurrVarArg is in the VariableArgument List.
if (!IsNodeInList (StartLink, &CurrVarArg->Link)) {
ASSERT (0);
return NULL;
}
// Get the node before the CurrVarArg.
PreviousLink = CurrVarArg->Link.BackLink;
if (PreviousLink != StartLink) {
return (AML_NODE_HEADER *)PreviousLink;
}
// We have reached the beginning of the list.
return NULL;
}
/** Get the next sibling node among the children of the input Node.
This function traverses the FixedArguments followed by the
VariableArguments at the same level in the hierarchy.
Fixed arguments are before variable arguments.
(Node) /-i # Child of fixed argument b
\ /
|- [a][b][c][d] # Fixed Arguments
|- {(e)->(f)->(g)} # Variable Arguments
\
\-h # Child of variable argument e
Traversal Order: a, b, c, d, e, f, g, NULL
@param [in] Node Pointer to a root node or an object node.
@param [in] ChildNode Get the node after the ChildNode.
@return The node after the ChildNode among the children of the input Node.
- If ChildNode is NULL, return the first available node among
the fixed argument list then variable list of arguments;
- If ChildNode is the last node of the fixed argument list,
return the first argument of the variable list of arguments;
- If ChildNode is the last node of the variable list of arguments,
return NULL.
**/
AML_NODE_HEADER *
EFIAPI
AmlGetNextSibling (
IN CONST AML_NODE_HEADER *Node,
IN CONST AML_NODE_HEADER *ChildNode
)
{
EAML_PARSE_INDEX Index;
AML_NODE_HEADER *CandidateNode;
// Node must be a RootNode or an Object Node
// and the CurrVarArg must not be a Root Node.
if ((!IS_AML_ROOT_NODE (Node) &&
!IS_AML_OBJECT_NODE (Node)) ||
((ChildNode != NULL) &&
(!IS_AML_OBJECT_NODE (ChildNode) &&
!IS_AML_DATA_NODE (ChildNode))))
{
ASSERT (0);
return NULL;
}
if (IS_AML_OBJECT_NODE (Node)) {
if (ChildNode == NULL) {
// Get the fixed argument at index 0 of the ChildNode.
CandidateNode = AmlGetFixedArgument (
(AML_OBJECT_NODE *)Node,
EAmlParseIndexTerm0
);
if (CandidateNode != NULL) {
return CandidateNode;
}
} else {
// (ChildNode != NULL)
if (AmlIsNodeFixedArgument (ChildNode, &Index)) {
// Increment index to point to the next fixed argument.
Index++;
// The node is part of the list of fixed arguments.
if (Index == (EAML_PARSE_INDEX)AmlGetFixedArgumentCount (
(AML_OBJECT_NODE *)Node
)
)
{
// It is at the last argument of the fixed argument list.
// Get the first argument of the variable list of arguments.
ChildNode = NULL;
} else {
// Else return the next node in the list of fixed arguments.
return AmlGetFixedArgument ((AML_OBJECT_NODE *)Node, Index);
}
}
}
} // IS_AML_OBJECT_NODE (Node)
// Else, get the next node in the variable list of arguments.
return AmlGetNextVariableArgument (
(AML_NODE_HEADER *)Node,
(AML_NODE_HEADER *)ChildNode
);
}
/** Get the previous sibling node among the children of the input Node.
This function traverses the FixedArguments followed by the
VariableArguments at the same level in the hierarchy.
Fixed arguments are before variable arguments.
(Node) /-i # Child of fixed argument b
\ /
|- [a][b][c][d] # Fixed Arguments
|- {(e)->(f)->(g)} # Variable Arguments
\
\-h # Child of variable argument e
Traversal Order: g, f, e, d, c, b, a, NULL
@param [in] Node The node to get the fixed argument from.
@param [in] ChildNode Get the node before the ChildNode.
@return The node before the ChildNode among the children of the input Node.
- If ChildNode is NULL, return the last available node among
the variable list of arguments then fixed argument list;
- If ChildNode is the first node of the variable list of arguments,
return the last argument of the fixed argument list;
- If ChildNode is the first node of the fixed argument list,
return NULL.
**/
AML_NODE_HEADER *
EFIAPI
AmlGetPreviousSibling (
IN CONST AML_NODE_HEADER *Node,
IN CONST AML_NODE_HEADER *ChildNode
)
{
EAML_PARSE_INDEX Index;
EAML_PARSE_INDEX MaxIndex;
AML_NODE_HEADER *CandidateNode;
// Node must be a Root Node or an Object Node
// and the ChildNode must not be a Root Node.
if ((!IS_AML_ROOT_NODE (Node) &&
!IS_AML_OBJECT_NODE (Node)) ||
((ChildNode != NULL) &&
(!IS_AML_OBJECT_NODE (ChildNode) &&
!IS_AML_DATA_NODE (ChildNode))))
{
ASSERT (0);
return NULL;
}
MaxIndex = (EAML_PARSE_INDEX)AmlGetFixedArgumentCount (
(AML_OBJECT_NODE *)Node
);
// Get the last variable argument if no ChildNode.
// Otherwise the fixed argument list is checked first.
if ((ChildNode != NULL) &&
IS_AML_OBJECT_NODE (Node) &&
(MaxIndex != EAmlParseIndexTerm0))
{
if (AmlIsNodeFixedArgument (ChildNode, &Index)) {
// The node is part of the list of fixed arguments.
if (Index == EAmlParseIndexTerm0) {
// The node is the first fixed argument, return NULL.
return NULL;
} else {
// Return the previous node in the fixed argument list.
return AmlGetFixedArgument (
(AML_OBJECT_NODE *)Node,
(EAML_PARSE_INDEX)(Index - 1)
);
}
}
}
// ChildNode is in the variable list of arguments.
CandidateNode = AmlGetPreviousVariableArgument (
(AML_NODE_HEADER *)Node,
(AML_NODE_HEADER *)ChildNode
);
if (CandidateNode != NULL) {
if (!IS_AML_NODE_VALID (CandidateNode)) {
ASSERT (0);
return NULL;
}
// A Node has been found
return CandidateNode;
} else if (MaxIndex != EAmlParseIndexTerm0) {
// ChildNode was the first node of the variable list of arguments.
return AmlGetFixedArgument (
(AML_OBJECT_NODE *)Node,
(EAML_PARSE_INDEX)(MaxIndex - 1)
);
} else {
// No fixed arguments or variable arguments.
return NULL;
}
}
/** Iterate through the nodes in the same order as the AML bytestream.
The iteration is similar to a depth-first path.
(Node) /-i # Child of fixed argument b
\ /
|- [a][b][c][d] # Fixed Arguments
|- {(e)->(f)->(g)} # Variable Arguments
\
\-h # Child of variable argument e
Traversal Order: a, b, i, c, d, e, h, f, g, NULL
Note: The branch i and h will be traversed if it has any children.
@param [in] Node Pointer to a node.
@return The next node in the AML bytestream order.
Return NULL if Node is the Node corresponding to the last
bytecode of the tree.
**/
AML_NODE_HEADER *
EFIAPI
AmlGetNextNode (
IN CONST AML_NODE_HEADER *Node
)
{
AML_NODE_HEADER *ParentNode;
AML_NODE_HEADER *CandidateNode;
if (!IS_AML_NODE_VALID (Node)) {
ASSERT (0);
return NULL;
}
if (IS_AML_ROOT_NODE (Node) || IS_AML_OBJECT_NODE (Node)) {
// The node has children. Get the first child.
CandidateNode = AmlGetNextSibling (Node, NULL);
if (CandidateNode != NULL) {
if (!IS_AML_NODE_VALID (CandidateNode)) {
ASSERT (0);
return NULL;
}
// A Node has been found
return CandidateNode;
} else if (IS_AML_ROOT_NODE (Node)) {
// The node is the root node and it doesn't have children.
return NULL;
}
}
// We have traversed the current branch, go to the parent node
// and start traversing the next branch.
// Keep going up the tree until you reach the root node.
while (1) {
if (IS_AML_ROOT_NODE (Node)) {
// This is the last node of the tree.
return NULL;
}
ParentNode = AmlGetParent ((AML_NODE_HEADER *)Node);
if (!IS_AML_NODE_VALID (ParentNode)) {
ASSERT (0);
return NULL;
}
CandidateNode = AmlGetNextSibling (ParentNode, Node);
if (CandidateNode != NULL) {
if (!IS_AML_NODE_VALID (CandidateNode)) {
ASSERT (0);
return NULL;
}
// A Node has been found
return CandidateNode;
}
Node = ParentNode;
} // while
return NULL;
}
/** Iterate through the nodes in the reverse order of the AML bytestream.
The iteration is similar to a depth-first path,
but done in a reverse order.
(Node) /-i # Child of fixed argument b
\ /
|- [a][b][c][d] # Fixed Arguments
|- {(e)->(f)->(g)} # Variable Arguments
\
\-h # Child of variable argument e
Traversal Order: g, f, h, e, d, c, i, b, a, NULL
Note: The branch i and h will be traversed if it has any children.
@param [in] Node Pointer to a node.
@return The previous node in the AML bytestream order.
Return NULL if Node is the Node corresponding to the last
bytecode of the tree.
**/
AML_NODE_HEADER *
EFIAPI
AmlGetPreviousNode (
IN CONST AML_NODE_HEADER *Node
)
{
AML_NODE_HEADER *ParentNode;
AML_NODE_HEADER *CandidateNode;
AML_NODE_HEADER *PreviousNode;
if (!IS_AML_NODE_VALID (Node)) {
ASSERT (0);
return NULL;
}
while (1) {
if (IS_AML_ROOT_NODE (Node)) {
// This is the root node.
return NULL;
}
ParentNode = AmlGetParent ((AML_NODE_HEADER *)Node);
CandidateNode = AmlGetPreviousSibling (ParentNode, Node);
if (CandidateNode == NULL) {
// Node is the first child of its parent.
return ParentNode;
} else if (IS_AML_DATA_NODE (CandidateNode)) {
// CandidateNode is a data node, thus it has no children.
return CandidateNode;
} else if (IS_AML_OBJECT_NODE (CandidateNode)) {
// Get the previous node in the list of children of ParentNode,
// then get the last child of this node.
// If this node has children, get its last child, etc.
while (1) {
PreviousNode = CandidateNode;
CandidateNode = AmlGetPreviousSibling (PreviousNode, NULL);
if (CandidateNode == NULL) {
return PreviousNode;
} else if (IS_AML_DATA_NODE (CandidateNode)) {
return CandidateNode;
}
} // while
} else {
ASSERT (0);
return NULL;
}
} // while
}
|