You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+7-6
Original file line number
Diff line number
Diff line change
@@ -30,9 +30,9 @@ These steps are Front-End, Optimizer and Back-End and these steps consist of sub
30
30
*[Semantic Analyzer](#semantic)
31
31
*[Optimizer](#optimizer)
32
32
*[Back-End](#back)
33
-
*[Instruction Selection](#insSel)
34
-
*[Instruction Scheduling](#insSch)
35
-
*[Register Allocation](#regAlloc)
33
+
*[Instruction Selection](#iselection)
34
+
*[Instruction Scheduling](#ischeduling)
35
+
*[Register Allocation](#rallocation)
36
36
37
37
<aname="front"></a>
38
38
@@ -144,6 +144,7 @@ x = p - c;
144
144
There are different methods and approaches for these optimization processes. The most common of these is the Command Subexpression Elimination(CSE). To summarize the CSE approach roughly and to give a simple example, if there are more than one repetitive operations, those operations are assigned to a variable. When those operations are needed, they are used from the variables they are assigned.
145
145
146
146
Optimizer and Compiler solutions are a kind of <b>heuristic algorithms.</b>
147
+
147
148
<aname="back"></a>
148
149
149
150
### <b> Back-End </b>
@@ -167,7 +168,7 @@ div r4, r5 -> r6
167
168
add r3, r6 -> r7
168
169
store r7 -> num
169
170
```
170
-
<aname="insSel"></a>
171
+
<aname="iselection"></a>
171
172
172
173
#### <b> Instruction Selection </b>
173
174
There are different processors that can perform different operations in different ways at nowadays.
@@ -182,7 +183,7 @@ For example; compiler can select
182
183
183
184
Compiler tries to choose the most performing option from the available options for our target machine <b>in Instruction Selection</b>.
0 commit comments