免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: pxinyu
打印 上一主题 下一主题

汇编终于派上用场了:) [复制链接]

论坛徽章:
0
11 [报告]
发表于 2008-08-29 22:58 |只看该作者
原帖由 mik 于 2008-8-29 22:22 发表


实际项目,是否有人这样使用

还是用最平实的代码为好,有歧义的代码绝对不使用。

就是,我觉得写代码有几个阶段。
一是初学阶段,这个阶段会有很多错误的用法;二是对语言较为熟悉了,这个阶段喜欢炫技,写一些自己觉得炫的代码,实际上也包含了不少错误;三是语言已经很熟练,这个阶段写的代码比较简洁,但会让读的人比较费劲;四是写文章阶段,这时代码写的可能没上一个阶段简洁,但代码就像文章一样,让读的人可以很快了解你的意图;五是对语言之外很多东西都了解了,写的代码注意了在不同环境下可能出错的情况,这时的代码比较保险;最后一个阶段会插入很多调试代码在程序中,平常用一个DEBUG宏或者调试等级关闭调试功能,但代码出错时通过打开这些调试功能很快定位出错的位置,让人找到原因。至此可以说写出的代码就比较成熟了。

论坛徽章:
0
12 [报告]
发表于 2008-08-29 23:46 |只看该作者
原帖由 koolcoy 于 2008-8-29 21:36 发表
lz应该把C学好了再学汇编

C标准规定函数参数的计算顺序是不确定的.


顶这句话.
不要出现什么问题都去看实现,看源码,好好看看别人是怎么规定的更靠谱些.

论坛徽章:
0
13 [报告]
发表于 2008-08-29 23:47 |只看该作者
原帖由 mik 于 2008-8-29 22:22 发表


实际项目,是否有人这样使用

还是用最平实的代码为好,有歧义的代码绝对不使用。


这句话也顶.代码是写给人看的.

论坛徽章:
0
14 [报告]
发表于 2008-08-29 23:48 |只看该作者
原帖由 converse 于 2008-8-29 23:46 发表


顶这句话.
不要出现什么问题都去看实现,看源码,好好看看别人是怎么规定的更靠谱些.

顶这句话
实现里充满了dirty trick
还是规范更有普适性和学习价值

论坛徽章:
0
15 [报告]
发表于 2008-08-30 00:42 |只看该作者
曾经也研究过,那时是为了那些破题,结果发现C语言中有很多东西都是不确定的,各个编译器的实现也不尽相同,实际中应该不会有人写这种代码吧!

论坛徽章:
0
16 [报告]
发表于 2008-08-30 08:46 |只看该作者

回复 #11 zx_wing 的帖子

确实应该好好看看基础东西! 工作这么多年,很少拿回原来的书本翻翻!看看大家发言,很有感触。
另外觉得,zx_wing 的帖子很有见解! 学习了!

论坛徽章:
0
17 [报告]
发表于 2008-08-30 21:59 |只看该作者
原帖由 zx_wing 于 2008-8-29 22:58 发表

就是,我觉得写代码有几个阶段。
一是初学阶段,这个阶段会有很多错误的用法;二是对语言较为熟悉了,这个阶段喜欢炫技,写一些自己觉得炫的代码,实际上也包含了不少错误;三是语言已经很熟练,这个阶段写的 ...


还分6个阶段呀,估计我也就第2个阶段啦

论坛徽章:
0
18 [报告]
发表于 2008-08-31 09:08 |只看该作者
进军第六阶段中。。。。。。

论坛徽章:
0
19 [报告]
发表于 2008-08-31 11:07 |只看该作者
说和汇编有关,倒不如说和编译器有关

论坛徽章:
0
20 [报告]
发表于 2008-08-31 14:34 |只看该作者
汇编的用处可不止这些:
Use of assembly language

[edit] Historical perspective

Historically, a large number of programs have been written entirely in assembly language. Operating systems were almost exclusively written in assembly language until the widespread acceptance of C in the 1970s and early 1980s. Many commercial applications were written in assembly language as well, including a large amount of the IBM mainframe software written by large corporations. COBOL and FORTRAN eventually displaced much of this work, although a number of large organizations retained assembly-language application infrastructures well into the 90s.

Most early microcomputers relied on hand-coded assembly language, including most operating systems and large applications. This was because these systems had severe resource constraints, imposed idiosyncratic memory and display architectures, and provided limited, buggy system services. Perhaps more important was the lack of first-class high-level language compilers suitable for microcomputer use. A psychological factor may have also played a role: the first generation of microcomputer programmers retained a hobbyist, "wires and pliers" attitude.

In a more commercial context, the biggest reasons for using assembly language were size, speed, and reliability: the writers of Cardbox-Plus said simply "we use assembler because then all the bugs are ours". This held true for 8-bit versions of the program, which had no bugs at all, but ironically it turned out to be false with 16 bits: Cardbox-Plus 2.0 had to be upgraded to Cardbox-Plus 2.1 because a bug in Microsoft's macro assembler caused Cardbox-Plus to index the number "-0" differently from the number "0".[citation needed]

Typical examples of large assembly language programs from this time are the MS-DOS operating system, the early IBM PC spreadsheet program Lotus 1-2-3, and almost all popular games for the Atari 800 family of home computers. Even into the 1990s, most console video games were written in assembly, including most games for the Mega Drive/Genesis and the Super Nintendo Entertainment System[citation needed]. According to some industry insiders, the assembly language was the best computer language to use to get the best performance out the Sega Saturn, a console that was notoriously challenging to develop and program games for [4]. The popular arcade game NBA Jam (1993) is another example. On the Commodore 64, Amiga, Atari ST, as well as ZX Spectrum home computers, assembler has long been the primary development language. This was in large part due to the fact that BASIC dialects on these systems offered insufficient execution speed, as well as insufficient facilities to take full advantage of the available hardware on these systems. Some systems, most notably Amiga, even have IDEs with highly advanced debugging and macro facilities, such as the freeware ASM-One assembler, comparable to that of Microsoft Visual Studio facilities (ASM-One predates Microsoft Visual Studio).

The Assembler for the VIC-20 was written by Don French and published by French Silk. At 1639 bytes in length, its author believes it is the smallest symbolic assembler ever written. The assembler supported the usual symbolic addressing and the definition of character strings or hex strings. It also allowed address expressions which could be combined with addition, subtraction, multiplication, division, logical AND, logical OR, and exponentiation operators.[5]

[edit] Current usage

There have always been debates over the usefulness and performance of assembly language relative to high-level languages, though this gets less attention today[citation needed]. Assembly language has specific niche uses where it is important; see below. But in general, modern optimizing compilers are claimed to render high-level languages into code that can run as fast as hand-written assembly, despite some counter-examples that can be created. The complexity of modern processors makes effective hand-optimization increasingly difficult.[6] Moreover, and to the dismay of efficiency lovers, increasing processor performance has meant that most CPUs sit idle most of the time, with delays caused by predictable bottlenecks such as I/O operations and paging. This has made raw code execution speed a non-issue for most programmers.

There are really only a handful of situations where today's expert practitioners would choose assembly language[citation needed]:

    * When a stand-alone binary executable is required, i.e. one that must execute without recourse to the run-time components or libraries associated with a high-level language; this is perhaps the most common situation. These are embedded programs that store only a small amount of memory and the device is intended to do single purpose tasks. Such examples consist of telephones, automobile fuel and ignition systems, air-conditioning control systems, security systems, and sensors.
    * When interacting directly with the hardware, for example in device drivers.
    * When using processor-specific instructions not exploited by or available to the compiler. A common example is the bitwise rotation instruction at the core of many encryption algorithms.
    * Embedded systems.
    * When extreme optimization is required, e.g., in an inner loop in a processor-intensive algorithm. Some game programmers are experts at writing code that takes advantage of the capabilities of hardware features in systems enabling the games to run faster.
    * When a system with severe resource constraints (e.g., an embedded system) must be hand-coded to maximize the use of limited resources; but this is becoming less common as processor price/performance improves
    * When no high-level language exists, e.g., on a new or specialized processor
    * Real-time programs that need precise timing and responses, such as simulations, flight navigation systems, and medical equipment. (For example, in a fly-by-wire system, telemetry must be interpreted and acted upon within strict time constraints. Such systems must eliminate sources of unpredictable delays – such as may be created by interpreted languages, automatic garbage collection, paging operations, or preemptive multitasking. Some higher-level languages incorporate run-time components and operating system interfaces that can introduce such delays. Choosing assembly or lower-level languages for such systems gives the programmer greater visibility and control over processing details.)
    * When complete control over the environment is required (for example in extremely high security situations, where nothing can be taken for granted).
    * When writing computer viruses, bootloaders, certain device drivers, or other items very close to the hardware or low-level operating system.
    * When reverse-engineering existing binaries, which may or may not have originally been written in a high-level language, for example when cracking copy protection of proprietary software.
    * Reverse engineering and modification of video games (known as ROM Hacking), commonly done to games for Nintendo hardware such as the SNES and NES, is possible with a range of techniques, of which the most widely employed is altering the program code at the assembly language level.
    * Assembly language is still used for writing games and other software for graphing calculators.[7]
    * Finally, compiler writers usually write software that generates assembly code, and should therefore be expert assembly language programmers themselves

Nevertheless, assembly language is still taught in most Computer Science and Electronic Engineering programs. Although few programmers today regularly work with assembly language as a tool, the underlying concepts remain very important. Such fundamental topics as binary arithmetic, memory allocation, stack processing, character set encoding, interrupt processing, and compiler design would be hard to study in detail without a grasp of how a computer operates at the hardware level. Since a computer's behavior is fundamentally defined by its instruction set, the logical way to learn such concepts is to study an assembly language. Most modern computers have similar instruction sets. Therefore, studying a single assembly language is sufficient to learn: i) The basic concepts; ii) To recognize situations where the use of assembly language might be appropriate; and iii) To see how efficient executable code can be created from high-level languages.[8]

[edit] Typical applications

Hard-coded assembly language is typically used in a system's boot ROM (BIOS on IBM-compatible PC systems). This low-level code is used, among other things, to initialize and test the system hardware prior to booting the OS, and is stored in ROM. Once a certain level of hardware initialization has taken place, execution transfers to other code, typically written in higher level languages; but the code running immediately after power is applied is usually written in assembly language. The same is true of most boot loaders.

Many compilers render high-level languages into assembly first before fully compiling, allowing the assembly code to be viewed for debugging and optimization purposes. Relatively low-level languages, such as C, often provide special syntax to embed assembly language directly in the source code. Programs using such facilities, such as the Linux kernel, can then construct abstractions utilizing different assembly language on each hardware platform. The system's portable code can then utilize these processor-specific components through a uniform interface.

Assembly language is also valuable in reverse engineering, since many programs are distributed only in machine code form, and machine code is usually easy to translate into assembly language and carefully examine in this form, but very difficult to translate into a higher-level language. Tools such as the Interactive Disassembler make extensive use of disassembly for such a purpose.

A particular niche that makes use of assembly language is the demoscene. Certain competitions require the contestants to restrict their creations to a very small size (e.g. 256B, 1KB, 4KB or 64 KB), and assembly language is the language of choice to achieve this goal.[9] When resources, particularly CPU-processing constrained systems, like the Amiga and the Commodore 64, are a concern, assembler coding is a must: optimized assembler code is written "by hand" and instructions are sequenced manually by the coders in an attempt to minimize the number of CPU cycles used; the CPU constraints are so great that every CPU cycle counts. However, using such techniques has enabled systems like the Commodore 64 to produce real-time 3D graphics with advanced effects, a feat which would be considered unlikely or even impossible for a system with a 0.99MHz processor.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP