|
Last change
on this file since 111 was
111,
checked in by rosiere, 17 years ago
|
|
1) Decod_queue : multi implementation (one_fifo, multi_fifo)
2) Issue_queue : multi implementation (in_order, out_of_order)
3) Direction : Add Meta predictor
4) Context_State : re add Branch_complete, More priority to Load miss (is not speculative)
5) Return_Address_Stack : update reg_PREDICT pointer on decod miss prediction
6) UPT : Fix bug in multi event
7) Prediction_glue : in read_stack case, insert in UPT pc_next
8) Rename select : when rob have an event (need flush), read_r{a,b,c} and write_r{d,e} is set at 0
|
-
Property svn:keywords set to
Id
|
|
File size:
461 bytes
|
| Line | |
|---|
| 1 | // $Id: main.c 111 2009-02-27 18:37:40Z rosiere $ |
|---|
| 2 | |
|---|
| 3 | //=====[ main ]================================================================= |
|---|
| 4 | /* |
|---|
| 5 | * All thread execute this routine |
|---|
| 6 | * Initialize the thread and attribute a Workload at each thread |
|---|
| 7 | */ |
|---|
| 8 | |
|---|
| 9 | #include <stdlib.h> |
|---|
| 10 | #include <stdio.h> |
|---|
| 11 | #include <unistd.h> |
|---|
| 12 | #include <string.h> |
|---|
| 13 | |
|---|
| 14 | int main() |
|---|
| 15 | { |
|---|
| 16 | //fprintf(stdout,"Message de Bienvenue !!!\n"); |
|---|
| 17 | |
|---|
| 18 | printf("Hello World !!!\n"); |
|---|
| 19 | |
|---|
| 20 | for (int i=0; i<10; ++i) |
|---|
| 21 | printf("i : %d",i); |
|---|
| 22 | |
|---|
| 23 | exit (0); |
|---|
| 24 | |
|---|
| 25 | while (1); |
|---|
| 26 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.