日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫cs250編程、代做C++程序語言
代寫cs250編程、代做C++程序語言

時間:2024-11-07  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Project 5: Profiling an Assembly Program
Goal
In this project you will learn how to find where a program spends most of the execution time
using statistical profiling, and you will implement your own statistical profiler.
Task 0: Download the initial sources and start tsearch_asm6.s
To start your project clone the project5 repository:
git clone /homes/cs250/sourcecontrol/work/$USER/project5-src.git
cd project5-src
The implementation of binary tree search in C is similar to the one from project4. You will copy
your implementation from tsearch_asm5.s into tsearch_asm6.s
To test the implementation type
data 149 $ ./run_bench.sh
================== Running TreeSearch Iterative in C benchmark ================
Total CPU time: 4.125084397 seconds
real 0m7.960s
user 0m7.830s
sys 0m0.124s
================== Running ASM 6 benchmark ================

It will also try to run the tsearch_asm6.s but it will fail if it is not implemented yet.
Task 1:Insert profiling code in the benchmark
The file profil.c implements the code that starts profiling the program, and writes the histogram
of the file at the end:
void start_histogram();
void print_histogram();
Open the file profil.c and see how start_histogram creates an array of counters, that is passed
to profil(), that creates the execution histogram. See "man profil". This histogram is an array of
integers, where every integer represents an instruction or group of instruction. profil() activates a
timer that every .01secs looks at the program counter of the program, and increments the
counter in the histogram that corresponds to that program counter.
Open the file tsearch_bench_better.c and find the main(). Then above main, you will insert the
external prototypes of start_histogram() and print_histogram(): as follows. Also call
start_histogram() at the beginning of main() and print_histogram() at the end.
extern void start_histogram();
extern void print_histogram();
/*
* Main program function. Runs the benchmark.
*/
__attribute__ (( visibility("default") ))
int
main(int argc, char **argv)
start_histogram();
…..
print_histogram();
}
Modify run_bench, so both gcc compilation commands link profil.c
echo ================== Running TreeSearch Iterative in C benchmark ================
gcc -g -static -o tsearch_bench_iterative_c tsearch_bench_better.c tsearch.c AVLTree.c tsearch_iterative.c profil.c || exit 1

gcc -g -static -o tsearch_bench_asm6 tsearch_bench_better.c tsearch.c AVLTree.c tsearch_asm6.s profil.c || exit 1

Now type run_bench.
data149 $ ./run_bench.sh
You will find the following file:
ls *.hist
tsearch_bench_iterative_c.hist
Open this file, and you will observe that it contains the program counters in the histogram that
are larger than 0. The counter is multiplied by 1ms, so the counters are displayed in ms. Identify
the program counter where the program is spent most of its time:

0x45b86a 60ms
0x45b870 1120ms
0x45b878 10ms
0x45b87c 30ms

Then run the command "nm -v tsearch_bench_iterative_c | less"that prints all the functions in
the program sorted by address, and finds the function that includes this program counter. Use
the up/down arrow keys to navigate "less".
data 163 $ nm -v tsearch_bench_iterative_c | less
….
000000000045aee0 T __stpcpy_evex
000000000045b340 T __strchr_evex
000000000045b5e0 T __strchrnul_evex
000000000045b840 T __strcmp_evex
000000000045bcb0 T __strcpy_evex
000000000045c100 T __strlen_evex
000000000045c280 T __strncmp_evex
000000000045c7f0 T __strncpy_evex
….
__strcmp_evex is the function where tsearch_bench_iterative_c spends most of its time.
Now to find the assembly instruction type "objdump -d tsearch_bench_iterative_c | less" that
prints the assembly instructions that make the program and their address in the program. Find
the assembly instruction that includes the counter 45b870, that is 45b86c . This is because
0x45b870 is larger than 45b86c but smaller than 45b8**.
objdump -d tsearch_bench_iterative_c | less
000000000045b840 <__strcmp_evex>:
45b840: f3 0f 1e fa endbr64
45b844: 89 f8 mov %edi,%eax
45b846: 31 d2 xor %edx,%edx
45b848: 62 a1 fd 00 ef c0 vpxorq %xmm16,%xmm16,%xmm16
45b84e: 09 f0 or %esi,%eax
45b850: 25 ff 0f 00 00 and $0xfff,%eax
45b855: 3d 80 0f 00 00 cmp $0xf80,%eax
45b85a: 0f 8f 70 03 00 00 jg 45bbd0 <__strcmp_evex+0x3**>
45b860: 62 e1 fe 28 6f 0f vmovdqu64 (%rdi),%ymm17
45b866: 62 b2 75 20 26 d1 vptestmb %ymm17,%ymm17,%k2
45b86c: 62 f3 75 22 3f 0e 00 vpcmpeqb (%rsi),%ymm17,%k1{%k2}
45b8**: c5 fb 93 c9 kmovd %k1,%ecx
45b877: ff c1 inc %ecx
45b879: 74 45 je 45b8c0 <__strcmp_evex+0x80>
45b87b: f3 0f bc d1 tzcnt %ecx,%edx
45b87f: 0f b6 04 17 movzbl (%rdi,%rdx,1),%eax
The instruction marked in red is the instruction that is taking the most time.
Task 2: Write your own profiler program.
Using the example in Task1, write a program myprof.c that prints a table with the top 10
functions where the program spends most of its time and it will also print for each function,
which instructions take most of the time . The program will take the following arguments:
myprof prog
The program will open prog.hist, and store the entries in an array of structs with the program
counter and the time in ms. Then it will call system("nm -v prog > nm.out") using the system()
function (see man system) that executes a command inside a C program, and redirect it into a
file nm.out. Myprof will read nm.out, and it will also store the entries in an array of structs with
program counters and function names. Then for every pc in the histogram, it will increment the
time in ms of the corresponding function. After this is done, it will sort the functions by time, and
identify the 10 top functions where the execution spends most of the time. Finally, it will also
print the assembly code of these functions using objdump, and print the time spend in each
assembly instruction. Only the instructions with a time greater than 0 are printed.
The output will look like the following example:
myprof tsearch_bench_iterative_c
Top 10 functions:
ith Function Time(ms) (%)
1: mystrcmp 120ms 25%
2: malloc 80ms 36%
….
Top 10 functions Assembly
1: mystrcmp 120ms 25%
120ms 42cf60: f6 c2 20 test $0x20,%dl
2: malloc 80ms 36%
20ms 4628cc: 48 89 de mov %rbx,%rsi
10ms 4628cf: e8 cc e3 ff ff call 460ca0
Task 3:Using your profiler, improve your tsearch_asm6.s
Using your profiler, optimize your implementation in tsearch_asm6.s
Grading
The grading will be done during lab time. You don't need to turn in the implementation since the
git repository will have your most recent implementation.

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

掃一掃在手機打開當前頁
  • 上一篇:代做COMP3230、Python語言程序代寫
  • 下一篇:MSE 280代做、代寫C++,Python程序
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        亚洲欧洲视频| 尤物yw午夜国产精品视频明星| 免费亚洲电影在线| 日韩一区二区久久| 欧美精品国产精品| 亚洲精品自在久久| 久久一区二区视频| 亚洲一区二区三区在线| 国产精品无码永久免费888| 欧美影院在线播放| 国产日产欧美一区| 亚洲午夜久久久久久久久电影网| 中文精品视频一区二区在线观看| 99精品国产一区二区青青牛奶| 久久成人综合网| 最新日韩在线| 欧美成人午夜免费视在线看片| 国产精品美女一区二区在线观看| 亚洲一级免费视频| 国产精品久久91| 国产日韩av在线播放| 欧美电影在线播放| 国产精品欧美日韩一区| 亚洲激情av| 欧美成人a视频| 影音先锋在线一区| 国产亚洲精品久久久久婷婷瑜伽| 一区二区在线视频播放| 久久综合九色99| 日韩系列欧美系列| 夜夜嗨av一区二区三区四季av| 一区二区三区国产精华| 欧美午夜视频网站| 影视先锋久久| 1204国产成人精品视频| 99这里只有精品| 一本色道久久综合精品竹菊| 夜夜嗨av一区二区三区四季av| 一区二区高清视频在线观看| 亚洲最新色图| 亚洲国产精品www| 国产一区二区电影在线观看| 亚洲黄色免费网站| 久久久久久久97| 国产一区二区三区奇米久涩| 亚洲精品激情| 久久久国产精彩视频美女艺术照福利| 一区二区三区欧美激情| 国产精品一区二区在线| 亚洲女ⅴideoshd黑人| 欧美黑人国产人伦爽爽爽| 亚洲精美视频| 在线观看日韩国产| 狠狠色综合一区二区| 久久中文字幕一区二区三区| 国产精品一区二区你懂得| 国产日韩欧美日韩| 国产精品乱码一区二区三区| 欧美三级视频在线播放| 午夜日韩视频| 欧美一区二区三区日韩视频| 国产精品一区二区三区成人| 欧美日韩少妇| 国产乱肥老妇国产一区二| 亚洲免费大片| 亚洲制服丝袜在线| 日韩午夜在线| 久久一区亚洲| 久久久久久9| 欧美理论电影在线观看| 一区二区三区偷拍| 亚洲精品日韩综合观看成人91| 欧美精品一区视频| 亚洲精品影视| 亚洲黄色片网站| 亚洲视频高清| 在线观看不卡| 一本色道久久综合精品竹菊| 在线看片欧美| 国产亚洲精品高潮| 亚洲无线一线二线三线区别av| 亚洲午夜电影网| 国产精品你懂的在线欣赏| 国产精品久久国产三级国电话系列| 欧美日一区二区三区在线观看国产免| 一区二区三区 在线观看视频| 欧美激情在线狂野欧美精品| 欧美日韩高清在线观看| 国产美女高潮久久白浆| 国产精品女人毛片| 欧美一区2区视频在线观看| 欧美在线视频导航| 99精品欧美一区二区蜜桃免费| 久久er99精品| 国产午夜精品福利| 老鸭窝毛片一区二区三区| 一本到12不卡视频在线dvd| 欧美日韩视频免费播放| 亚洲欧洲精品一区二区精品久久久| 亚洲素人一区二区| 欧美日韩一区二区三区在线看| 一区二区三区国产精华| 尤物yw午夜国产精品视频| 伊人久久大香线蕉av超碰演员| 国产欧美激情| 亚洲欧美视频| 嫩模写真一区二区三区三州| 国外成人在线视频| 欧美高清影院| 免费观看国产成人| 亚洲国产精品日韩| 亚洲成色最大综合在线| 国内精品视频666| 亚洲最新在线| 亚洲福利视频一区二区| 欧美激情精品久久久久久久变态| 妖精成人www高清在线观看| 欧美视频在线观看一区二区| 欧美女激情福利| 欧美1级日本1级| 在线免费观看日本欧美| 欧美啪啪成人vr| 在线精品国精品国产尤物884a| 亚洲免费伊人电影在线观看av| 亚洲精品午夜| 欧美在线综合视频| 国产伦精品一区二区三区视频黑人| 亚洲第一黄网| 亚洲啪啪91| 欧美日韩精品欧美日韩精品| 欧美一区二区三区免费大片| 久久精品一区二区三区四区| 欧美主播一区二区三区美女 久久精品人| 久久精品成人一区二区三区蜜臀| 99成人精品| 一区视频在线看| 国产精品久久久久久av下载红粉| 日韩小视频在线观看专区| 久久国产成人| 久久av二区| 欧美国产一区二区在线观看| 日韩亚洲欧美成人| 欧美日韩一区二区免费视频| 亚洲每日更新| 欧美日韩亚洲视频一区| 性做久久久久久久久| 激情伊人五月天久久综合| 日韩一区二区高清| 99精品视频免费观看视频| 久久夜色精品国产| 亚洲国产精品va在线看黑人| 在线视频观看日韩| 韩国av一区| av成人国产| 一区二区三区欧美在线| 久久精品1区| 亚洲女同同性videoxma| 亚洲少妇自拍| 开心色5月久久精品| 国产精品美女一区二区| 国产精品视频在线观看| 一区二区三区日韩精品| 久久久久看片| 欧美影院久久久|