summaryrefslogtreecommitdiffstats
path: root/tests/run-make/x86_64-fortanix-unknown-sgx-lvi/enclave/libcmake_foo/src/foo_cxx.cpp
blob: 824e2afebcc78cd3cc01b9fbdb5089fa7f92f58e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
extern "C" int cmake_plus_one_cxx(int *arg);
extern "C" int cmake_plus_one_cxx_asm(int *arg);

int cmake_plus_one_cxx(int *arg) {
    return *arg + 1;
}

int cmake_plus_one_cxx_asm(int *arg) {
    int value = 0;

    asm volatile ( "    movl (%1), %0\n"
                   "    inc %0\n"
                   "    jmp 1f\n"
                   "    retq\n"  // never executed, but a shortcut to determine how
                                 // the assembler deals with `ret` instructions
                   "1:\n"
                   : "=r"(value)
                   : "r"(arg) );

    return value;
}

asm(".text\n"
"    .global cmake_plus_one_cxx_global_asm\n"
"    .type cmake_plus_one_cxx_global_asm, @function\n"
"cmake_plus_one_cxx_global_asm:\n"
"    movl (%rdi), %eax\n"
"    inc %eax\n"
"    retq\n" );