2018-04-12 10:20:31 +01:00
|
|
|
|
/******************************************************************************
|
|
|
|
|
|
// Canary Islands Computer Museum Website
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
2018-04-15 17:51:07 +01:00
|
|
|
|
// Filename : Processor.cs
|
2018-04-12 10:20:31 +01:00
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
|
//
|
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
|
//
|
2018-04-15 17:51:07 +01:00
|
|
|
|
// High level representation of a processor .
|
2018-04-12 10:20:31 +01:00
|
|
|
|
//
|
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
|
// it under the terms of the GNU General Public License as
|
|
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
//
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
// Copyright © 2003-2018 Natalia Portillo
|
|
|
|
|
|
*******************************************************************************/
|
2018-04-12 11:50:02 +01:00
|
|
|
|
|
2018-04-20 22:09:33 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
|
2018-04-12 10:20:31 +01:00
|
|
|
|
namespace Cicm.Database.Schemas
|
2018-04-12 06:43:45 +01:00
|
|
|
|
{
|
2018-04-15 17:51:07 +01:00
|
|
|
|
/// <summary>Processor</summary>
|
|
|
|
|
|
public class Processor
|
2018-04-12 06:43:45 +01:00
|
|
|
|
{
|
2018-04-20 22:09:33 +01:00
|
|
|
|
/// <summary>Size in bits of address bus with host (not interprocessor)</summary>
|
|
|
|
|
|
public int AddressBus;
|
|
|
|
|
|
/// <summary>Company</summary>
|
|
|
|
|
|
public Company Company;
|
|
|
|
|
|
/// <summary>How many processor cores per processor package</summary>
|
|
|
|
|
|
public int Cores;
|
|
|
|
|
|
/// <summary>Size in bits of data bus with host (not interprocessor)</summary>
|
|
|
|
|
|
public int DataBus;
|
|
|
|
|
|
/// <summary>Size of die in square milimeters</summary>
|
|
|
|
|
|
public float DieSize;
|
|
|
|
|
|
/// <summary>Number of available Floating Point Registers</summary>
|
|
|
|
|
|
public int Fpr;
|
|
|
|
|
|
/// <summary>Size in bits of FPRs</summary>
|
|
|
|
|
|
public int FprSize;
|
|
|
|
|
|
/// <summary>Number of available General Purpose Registers</summary>
|
|
|
|
|
|
public int Gpr;
|
|
|
|
|
|
/// <summary>Size in bits of GPRs</summary>
|
|
|
|
|
|
public int GprSize;
|
2018-04-12 11:50:02 +01:00
|
|
|
|
/// <summary>ID</summary>
|
2018-04-12 12:02:56 +01:00
|
|
|
|
public int Id;
|
2018-04-20 22:09:33 +01:00
|
|
|
|
/// <summary>Instruction set</summary>
|
|
|
|
|
|
public InstructionSet InstructionSet;
|
|
|
|
|
|
/// <summary>Extensions to the instruction set that are implemented in this processor</summary>
|
|
|
|
|
|
public InstructionSetExtension[] InstructionSetExtensions;
|
|
|
|
|
|
/// <summary>Datetime of introduction</summary>
|
|
|
|
|
|
public DateTime Introduced;
|
2018-04-22 01:35:57 +01:00
|
|
|
|
/// <summary>Size in kibibytes of L1 data cache. If -1, <see cref="L1Instruction" /> is size of L1 unified cache</summary>
|
2018-04-20 22:09:33 +01:00
|
|
|
|
public float L1Data;
|
2018-04-22 01:35:57 +01:00
|
|
|
|
/// <summary>Size in kibibytes of L1 instruction cache. If <see cref="L1Data" /> is -1, this is size of L1 unified cache</summary>
|
2018-04-20 22:09:33 +01:00
|
|
|
|
public float L1Instruction;
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Size in kibibytes of L2 cache. It includes cache that's in same physical package but not in same chip die
|
|
|
|
|
|
/// (e.g. Pentium II)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public float L2;
|
|
|
|
|
|
/// <summary>Size in kibibytes of L3 cache</summary>
|
|
|
|
|
|
public float L3;
|
|
|
|
|
|
/// <summary>Model/SKU code</summary>
|
|
|
|
|
|
public string ModelCode;
|
2018-04-12 11:50:02 +01:00
|
|
|
|
/// <summary>Name</summary>
|
2018-04-12 12:02:56 +01:00
|
|
|
|
public string Name;
|
2018-04-20 22:09:33 +01:00
|
|
|
|
/// <summary>Package</summary>
|
|
|
|
|
|
public string Package;
|
|
|
|
|
|
/// <summary>Name of litography process</summary>
|
|
|
|
|
|
public string Process;
|
|
|
|
|
|
/// <summary>Nanometers of litography process</summary>
|
|
|
|
|
|
public float ProcessNm;
|
|
|
|
|
|
/// <summary>Number of available SIMD registers</summary>
|
|
|
|
|
|
public int Simd;
|
|
|
|
|
|
/// <summary>Size in bits of SIMD registers</summary>
|
|
|
|
|
|
public int SimdSize;
|
|
|
|
|
|
/// <summary>Nominal speed, in MHz</summary>
|
|
|
|
|
|
public double Speed;
|
|
|
|
|
|
/// <summary>How many simultaneos threads can run on each processor core</summary>
|
|
|
|
|
|
public int ThreadsPerCore;
|
|
|
|
|
|
/// <summary>How many transistors in package</summary>
|
|
|
|
|
|
public ulong Transistors;
|
2018-04-12 06:43:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|