jadach1Sep 30, 20186 min readLab5 Working with ProfilersThe first program we will be profiling calculates the 1st array by randomly generating a number for each element in the array. The second...
jadach1Sep 25, 20182 min readLab 4: Assembly Language on Aarch64 architectureThe 3 "c" programs we will compile are the same as they were on the x86 architecture. hello.c uses printf hello2.c uses write hello3.c...
jadach1Sep 25, 20183 min readLab4 Assembly Language: X86_64 introWe will be working with assembly language and registers in this weeks lab. We were given 3 different hello world scripts written in "c"...
jadach1Sep 21, 20181 min readLab3 Cont. Adding additional arguments to printfmodified printf to printf("Hello World %d , %d , %d , %d , %d , %d , %d , %d , %d , %d \n", 1, 2,3,4,5,6,7,8,9,10 ); compiled using gcc...
jadach1Sep 21, 20181 min readLab 3 Cont. Removing -g optionCompiling gcc with the following gcc -fno-buillting -o0 -O $fileOutput When I compare the objdump files of the original to the newly...