Пример #1
0
        public override void Visit(StackIR.OperationRegion node)
        {
            ulong startIndex = thread.Pop().Read().GetAsInt().Value;
            ulong length     = thread.Pop().Read().GetAsInt().Value;

            Node namespaceNode = thread.CreateNodeAt(node.NodePath);

            namespaceNode.Value = new AcpiObject.OperationRegion(thread.OperationRegionAccessor,
                                                                 node.OperationSpace,
                                                                 startIndex, length);
        }
Пример #2
0
 public abstract void Visit(OperationRegion node);