program stringclasses 10
values | disassembly stringlengths 6.08k 6.52k | flags stringclasses 6
values |
|---|---|---|
#include <stdio.h>
int main() {
int a = 5;
int b = 10;
printf("Sum: %d\n", a + b);
return 0;
} |
programs/sample_program_1_O0: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O0 |
#include <stdio.h>
int main() {
int a = 5;
int b = 10;
printf("Sum: %d\n", a + b);
return 0;
} |
programs/sample_program_1_O1: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O1 |
#include <stdio.h>
int main() {
int a = 5;
int b = 10;
printf("Sum: %d\n", a + b);
return 0;
} |
programs/sample_program_1_O2: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O2 |
#include <stdio.h>
int main() {
int a = 5;
int b = 10;
printf("Sum: %d\n", a + b);
return 0;
} |
programs/sample_program_1_O3: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O3 |
#include <stdio.h>
int main() {
int a = 5;
int b = 10;
printf("Sum: %d\n", a + b);
return 0;
} |
programs/sample_program_1_Os: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -Os |
#include <stdio.h>
int main() {
int a = 5;
int b = 10;
printf("Sum: %d\n", a + b);
return 0;
} |
programs/sample_program_1_Ofast: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85... | -Ofast |
#include <stdio.h>
int main() {
int a = 5, b = 10;
printf("Less than: %d\n", a < b);
return 0;
} |
programs/sample_program_10_O0: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c... | -O0 |
#include <stdio.h>
int main() {
int a = 5, b = 10;
printf("Less than: %d\n", a < b);
return 0;
} |
programs/sample_program_10_O1: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c... | -O1 |
#include <stdio.h>
int main() {
int a = 5, b = 10;
printf("Less than: %d\n", a < b);
return 0;
} |
programs/sample_program_10_O2: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c... | -O2 |
#include <stdio.h>
int main() {
int a = 5, b = 10;
printf("Less than: %d\n", a < b);
return 0;
} |
programs/sample_program_10_O3: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c... | -O3 |
#include <stdio.h>
int main() {
int a = 5, b = 10;
printf("Less than: %d\n", a < b);
return 0;
} |
programs/sample_program_10_Os: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c... | -Os |
#include <stdio.h>
int main() {
int a = 5, b = 10;
printf("Less than: %d\n", a < b);
return 0;
} |
programs/sample_program_10_Ofast: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 8... | -Ofast |
#include <stdio.h>
int main() {
int a = 10;
int b = 5;
printf("Difference: %d\n", a - b);
return 0;
} |
programs/sample_program_2_O0: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O0 |
#include <stdio.h>
int main() {
int a = 10;
int b = 5;
printf("Difference: %d\n", a - b);
return 0;
} |
programs/sample_program_2_O1: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O1 |
#include <stdio.h>
int main() {
int a = 10;
int b = 5;
printf("Difference: %d\n", a - b);
return 0;
} |
programs/sample_program_2_O2: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O2 |
#include <stdio.h>
int main() {
int a = 10;
int b = 5;
printf("Difference: %d\n", a - b);
return 0;
} |
programs/sample_program_2_O3: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O3 |
#include <stdio.h>
int main() {
int a = 10;
int b = 5;
printf("Difference: %d\n", a - b);
return 0;
} |
programs/sample_program_2_Os: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -Os |
#include <stdio.h>
int main() {
int a = 10;
int b = 5;
printf("Difference: %d\n", a - b);
return 0;
} |
programs/sample_program_2_Ofast: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85... | -Ofast |
#include <stdio.h>
int main() {
int a = 5;
int b = 10;
printf("Product: %d\n", a * b);
return 0;
} |
programs/sample_program_3_O0: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O0 |
#include <stdio.h>
int main() {
int a = 5;
int b = 10;
printf("Product: %d\n", a * b);
return 0;
} |
programs/sample_program_3_O1: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O1 |
#include <stdio.h>
int main() {
int a = 5;
int b = 10;
printf("Product: %d\n", a * b);
return 0;
} |
programs/sample_program_3_O2: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O2 |
#include <stdio.h>
int main() {
int a = 5;
int b = 10;
printf("Product: %d\n", a * b);
return 0;
} |
programs/sample_program_3_O3: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O3 |
#include <stdio.h>
int main() {
int a = 5;
int b = 10;
printf("Product: %d\n", a * b);
return 0;
} |
programs/sample_program_3_Os: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -Os |
#include <stdio.h>
int main() {
int a = 5;
int b = 10;
printf("Product: %d\n", a * b);
return 0;
} |
programs/sample_program_3_Ofast: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85... | -Ofast |
#include <stdio.h>
int main() {
int a = 10;
int b = 5;
printf("Division: %d\n", a / b);
return 0;
} |
programs/sample_program_4_O0: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O0 |
#include <stdio.h>
int main() {
int a = 10;
int b = 5;
printf("Division: %d\n", a / b);
return 0;
} |
programs/sample_program_4_O1: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O1 |
#include <stdio.h>
int main() {
int a = 10;
int b = 5;
printf("Division: %d\n", a / b);
return 0;
} |
programs/sample_program_4_O2: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O2 |
#include <stdio.h>
int main() {
int a = 10;
int b = 5;
printf("Division: %d\n", a / b);
return 0;
} |
programs/sample_program_4_O3: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O3 |
#include <stdio.h>
int main() {
int a = 10;
int b = 5;
printf("Division: %d\n", a / b);
return 0;
} |
programs/sample_program_4_Os: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -Os |
#include <stdio.h>
int main() {
int a = 10;
int b = 5;
printf("Division: %d\n", a / b);
return 0;
} |
programs/sample_program_4_Ofast: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85... | -Ofast |
#include <stdio.h>
int main() {
int a = 5;
printf("Increment: %d\n", ++a);
return 0;
} |
programs/sample_program_5_O0: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O0 |
#include <stdio.h>
int main() {
int a = 5;
printf("Increment: %d\n", ++a);
return 0;
} |
programs/sample_program_5_O1: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O1 |
#include <stdio.h>
int main() {
int a = 5;
printf("Increment: %d\n", ++a);
return 0;
} |
programs/sample_program_5_O2: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O2 |
#include <stdio.h>
int main() {
int a = 5;
printf("Increment: %d\n", ++a);
return 0;
} |
programs/sample_program_5_O3: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O3 |
#include <stdio.h>
int main() {
int a = 5;
printf("Increment: %d\n", ++a);
return 0;
} |
programs/sample_program_5_Os: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -Os |
#include <stdio.h>
int main() {
int a = 5;
printf("Increment: %d\n", ++a);
return 0;
} |
programs/sample_program_5_Ofast: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85... | -Ofast |
#include <stdio.h>
int main() {
int a = 5;
printf("Decrement: %d\n", --a);
return 0;
} |
programs/sample_program_6_O0: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O0 |
#include <stdio.h>
int main() {
int a = 5;
printf("Decrement: %d\n", --a);
return 0;
} |
programs/sample_program_6_O1: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O1 |
#include <stdio.h>
int main() {
int a = 5;
printf("Decrement: %d\n", --a);
return 0;
} |
programs/sample_program_6_O2: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O2 |
#include <stdio.h>
int main() {
int a = 5;
printf("Decrement: %d\n", --a);
return 0;
} |
programs/sample_program_6_O3: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O3 |
#include <stdio.h>
int main() {
int a = 5;
printf("Decrement: %d\n", --a);
return 0;
} |
programs/sample_program_6_Os: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -Os |
#include <stdio.h>
int main() {
int a = 5;
printf("Decrement: %d\n", --a);
return 0;
} |
programs/sample_program_6_Ofast: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85... | -Ofast |
#include <stdio.h>
int main() {
int a = 5, b = 5;
printf("Equal: %d\n", a == b);
return 0;
} |
programs/sample_program_7_O0: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O0 |
#include <stdio.h>
int main() {
int a = 5, b = 5;
printf("Equal: %d\n", a == b);
return 0;
} |
programs/sample_program_7_O1: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O1 |
#include <stdio.h>
int main() {
int a = 5, b = 5;
printf("Equal: %d\n", a == b);
return 0;
} |
programs/sample_program_7_O2: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O2 |
#include <stdio.h>
int main() {
int a = 5, b = 5;
printf("Equal: %d\n", a == b);
return 0;
} |
programs/sample_program_7_O3: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O3 |
#include <stdio.h>
int main() {
int a = 5, b = 5;
printf("Equal: %d\n", a == b);
return 0;
} |
programs/sample_program_7_Os: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -Os |
#include <stdio.h>
int main() {
int a = 5, b = 5;
printf("Equal: %d\n", a == b);
return 0;
} |
programs/sample_program_7_Ofast: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85... | -Ofast |
#include <stdio.h>
int main() {
int a = 5, b = 10;
printf("Not equal: %d\n", a != b);
return 0;
} |
programs/sample_program_8_O0: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O0 |
#include <stdio.h>
int main() {
int a = 5, b = 10;
printf("Not equal: %d\n", a != b);
return 0;
} |
programs/sample_program_8_O1: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O1 |
#include <stdio.h>
int main() {
int a = 5, b = 10;
printf("Not equal: %d\n", a != b);
return 0;
} |
programs/sample_program_8_O2: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O2 |
#include <stdio.h>
int main() {
int a = 5, b = 10;
printf("Not equal: %d\n", a != b);
return 0;
} |
programs/sample_program_8_O3: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O3 |
#include <stdio.h>
int main() {
int a = 5, b = 10;
printf("Not equal: %d\n", a != b);
return 0;
} |
programs/sample_program_8_Os: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -Os |
#include <stdio.h>
int main() {
int a = 5, b = 10;
printf("Not equal: %d\n", a != b);
return 0;
} |
programs/sample_program_8_Ofast: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85... | -Ofast |
#include <stdio.h>
int main() {
int a = 10, b = 5;
printf("Greater than: %d\n", a > b);
return 0;
} |
programs/sample_program_9_O0: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O0 |
#include <stdio.h>
int main() {
int a = 10, b = 5;
printf("Greater than: %d\n", a > b);
return 0;
} |
programs/sample_program_9_O1: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O1 |
#include <stdio.h>
int main() {
int a = 10, b = 5;
printf("Greater than: %d\n", a > b);
return 0;
} |
programs/sample_program_9_O2: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O2 |
#include <stdio.h>
int main() {
int a = 10, b = 5;
printf("Greater than: %d\n", a > b);
return 0;
} |
programs/sample_program_9_O3: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -O3 |
#include <stdio.h>
int main() {
int a = 10, b = 5;
printf("Greater than: %d\n", a > b);
return 0;
} |
programs/sample_program_9_Os: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85 c0... | -Os |
#include <stdio.h>
int main() {
int a = 10, b = 5;
printf("Greater than: %d\n", a > b);
return 0;
} |
programs/sample_program_9_Ofast: file format elf64-x86-64
Disassembly of section .init:
0000000000001000 <_init>:
1000: f3 0f 1e fa endbr64
1004: 48 83 ec 08 sub $0x8,%rsp
1008: 48 8b 05 d9 2f 00 00 mov 0x2fd9(%rip),%rax # 3fe8 <__gmon_start__@Base>
100f: 48 85... | -Ofast |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.