Skip to content

Commit e6c0f46

Browse files
committed
wrong links are fixed
1 parent 44e8995 commit e6c0f46

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ These steps are Front-End, Optimizer and Back-End and these steps consist of sub
3030
* [Semantic Analyzer](#semantic)
3131
* [Optimizer](#optimizer)
3232
* [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)
3636

3737
<a name="front"></a>
3838

@@ -144,6 +144,7 @@ x = p - c;
144144
&nbsp; 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.
145145

146146
&nbsp; Optimizer and Compiler solutions are a kind of <b>heuristic algorithms.</b>
147+
147148
<a name="back"></a>
148149

149150
### <b> Back-End </b>
@@ -167,7 +168,7 @@ div r4, r5 -> r6
167168
add r3, r6 -> r7
168169
store r7 -> num
169170
```
170-
<a name="insSel"></a>
171+
<a name="iselection"></a>
171172

172173
#### <b> Instruction Selection </b>
173174
&nbsp; There are different processors that can perform different operations in different ways at nowadays.
@@ -182,7 +183,7 @@ For example; compiler can select
182183

183184
&nbsp; Compiler tries to choose the most performing option from the available options for our target machine <b>in Instruction Selection</b>.
184185

185-
<a name="insSch"></a>
186+
<a name="ischeduling"></a>
186187

187188
#### <b> Instruction Scheduling </b>
188189

@@ -202,7 +203,7 @@ add r3, r6 -> r7
202203
store r7 -> num
203204
```
204205

205-
<a name="regAlloc"></a>
206+
<a name="rallocation"></a>
206207

207208
#### <b> Register Allocation </b>
208209

0 commit comments

Comments
 (0)