Difference between one pass and multi pass compilers?

后端 未结 6 1227
逝去的感伤
逝去的感伤 2021-02-06 03:24

I have seen a lot of posts regarding one pass and multi pass compilers but i dont seem to get the point.

  • What are one

6条回答
  •  自闭症患者
    2021-02-06 03:40

    A "pass" reads the source program or the output of the previous pass, makes the transformations according to its phases and writes output into an intermediate file, which may then be read through next pass.

提交回复
热议问题