public override void VisitAssemblyProcessorTable(AssemblyProcessorTable table)
        {
            int number = m_rows [AssemblyProcessorTable.RId];

            table.Rows = new RowCollection(number);
            for (int i = 0; i < number; i++)
            {
                table.Rows.Add(new AssemblyProcessorRow());
            }
        }
        public AssemblyProcessorTable GetAssemblyProcessorTable()
        {
            int rid = AssemblyProcessorTable.RId;
            if (m_heap.HasTable (rid))
                return m_heap [rid] as AssemblyProcessorTable;

            AssemblyProcessorTable table = new AssemblyProcessorTable ();
            table.Rows = new RowCollection ();
            m_heap.Valid |= 1L << rid;
            m_heap.Tables.Add (table);
            return table;
        }
Beispiel #3
0
        public AssemblyProcessorTable GetAssemblyProcessorTable()
        {
            AssemblyProcessorTable table = m_heap [AssemblyProcessorTable.RId] as AssemblyProcessorTable;

            if (table != null)
            {
                return(table);
            }

            table = new AssemblyProcessorTable();
            InitializeTable(table);
            return(table);
        }
Beispiel #4
0
        public AssemblyProcessorTable GetAssemblyProcessorTable()
        {
            int rid = AssemblyProcessorTable.RId;

            if (m_heap.HasTable(rid))
            {
                return(m_heap [rid] as AssemblyProcessorTable);
            }

            AssemblyProcessorTable table = new AssemblyProcessorTable();

            table.Rows    = new RowCollection();
            m_heap.Valid |= 1L << rid;
            m_heap.Tables.Add(table);
            return(table);
        }
Beispiel #5
0
		public AssemblyProcessorTable GetAssemblyProcessorTable ()
		{
			AssemblyProcessorTable table = m_heap [AssemblyProcessorTable.RId] as AssemblyProcessorTable;
			if (table != null)
				return table;

			table = new AssemblyProcessorTable ();
			InitializeTable (table);
			return table;
		}
 public override void VisitAssemblyProcessorTable(AssemblyProcessorTable table)
 {
     int number = m_rows [AssemblyProcessorTable.RId];
     table.Rows = new RowCollection (number);
     for (int i = 0; i < number; i++)
         table.Rows.Add (new AssemblyProcessorRow ());
 }