Basic Theory Of Computer Science

来自osdev
Zhang3讨论 | 贡献2022年1月24日 (一) 02:57的版本 (创建页面,内容为“{{In_Progress}} This article is intend to explain to new users, who are unfamiliar with computer theory, basic concepts of computing and computer systems organization and structure. The idea of the creation of this article was inspired by the general disorganization of such kind of theoretic articles and pages at OSDev.org. And as long as theory is '''very''' important for beginners ''(and as long as they generally never ever read serious books)'', this c…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳到导航 跳到搜索

这个页面正在建设中! 此页面或部分内容仍在改进中,因此可能还不完整。 其内容可能会在不久的将来更改。

This article is intend to explain to new users, who are unfamiliar with computer theory, basic concepts of computing and computer systems organization and structure.

The idea of the creation of this article was inspired by the general disorganization of such kind of theoretic articles and pages at OSDev.org. And as long as theory is very important for beginners (and as long as they generally never ever read serious books), this chaotic structure of theoretic material will cause problems in comprehensive study of OS development. But this article is meant to fix the problem

It's impossible to study all the topics of physics, circuitry and computer science in within one article. Instead, all these subjects will be briefly touched. To do so in organized order, we must divide system into layers, each having its own rules and aims. To do so, we must manage complexity of the system

Managing the complexity of electronic systems

Levels of abstraction

The system you are using to read this article (let me guess it's a personal computer) is one of most complex systems ever created by the mankind. Just imagine hundreds of billions transistors on several separate integrated circuits joint together and operating at gigahertz rates, running hundreds of millions lines of code in a blink of an eye - hundreds of thousands of computer scientists, engineers and programmers united their efforts to make this miracle come true in less than 80 years...

However, I bet you are not experiencing any kind of trouble with using such a "miracle". The main reason of it is that, despite you don't realize it really, you are managing complexity of your system. It have let you to open this article in few mouse clicks without having to keep in mind details of, for example, the HTML protocol your browser used to obtain this article from the website. Instead, you delegate this task to your web-browser - this is an application softwareApplication Software.png, which uses abilities of operating systemOperating System.png to run, which uses definitions and rules of architecture Architecture.png layers, and so on

Usually developers define 9 layers of abstraction for an average electronic computing system:

  1. Application Software Application Software.png
    Programs, which use operating system features to solve user problems
  2. Operating System Operating System.png
    Operates computer hardware, manage system resources and provide API and drivers for application software
  3. Architecture Architecture.png (also known as ISA)
    Describes electronic system from programmer's perspective. Defines instruction set, visible registers. Is implemented by microarchitecture
  4. Microarchitecture Microarchitecture.png
    Implements an architecture using logic elements
  5. Logic Logic.png
    Combines digital circuits to create functional blocks, such as adders, multiplexers and so on.
  6. Digital Circuits Digital Circuits.png
    Uses analog circuits to create models of the digital circuits, which can be used in digital design
  7. Analog Circuits Analog Circuits.png
    Combines devices to create circuits with desired properties
  8. Devices Devices.png
    Uses physical models to create devices, such as transistors and diodes, usable in circuits
  9. Physics Physics.png
    Explores the world and systematizes obtained knowledge to laws and theories which can be relatively easily studied by other persons

As you can see, each abstraction level use models and features of underlying level (e.g. logic uses digital circuits as much as application software uses operating system features) Also, each level hides details of implementation from the overlying level (e.g. user do not have to bother about representing their requests in "computer" form as long as application software provides the human-understandable GUI)

And it means, that each layer accomplishes two tasks:

  • Provides simplified interfaces for overlying layers
    For example, there are no files on the hard disk of your PC - only some bytes written to it in the specified order. File is just an abstract model of storing files on the physical drive, implemented by a filesystem - one of the parts of your operating system. So, filesystem provides a very convenient interface for application software, by implementing a simple file I/O
  • Hides implementation details from overlying layer and manages them
    For example, filesystem also contains drivers for different types of storage devices, such as hard drives, optical drives and so on. Each one have its own interface to handle. However, you, as a user, don't want to keep these details in mind. So, filesystem takes care of it, hiding such a details from user, managing all that low-level things by itself

Since this tutorial was written for OS and applications developers, detailed description of three lower levels of hierarchy will be skipped

Digital Circuits

Difference between analog and digital signals being interfered. While analog signal turns out to be totally messed up, digital one still remains understandable

As you surely know, all the modern computers are implemented using digital logic, but why?

There are few major reasons:

  1. Digital signals are more stable and reliable than analog ones, because they are less prone for distortions, noises, and interferences.
  2. Digital circuits are easy and cheap to design and implement in hardware using different technologies
  3. Different digital circuits can be easily combined, creating more complex circuits.

These facts are the main reasons of domination of the digital logic over analog today.

So, what helps digital logic to attain such appealing properties? It operates only two signal states - LOW and HIGH, instead of wide spectrum of voltages as in analog circuits.