Example: stack0.c

up: index
prev: realloc4.c
next: stack0a.c

    #include <stdio.h>
    #include <cheriintrin.h>
    
    int main()
    {
        char buff[10];
        
        if(cheri_offset_get(&buff) != 0)
        {
            fprintf(stderr,"non-zero offset\n");
            return(10);
        }
        if(cheri_length_get(&buff) != 10)
        {
            fprintf(stderr,"allocation too small\n");
            return(20);
        }
        fprintf(stderr,"allocation was exact\n");
    }

Experimental data (what does this mean?)

gcc-morello-O0
gcc-morello-O3
clang-morello-O0-bounds-conservative
clang-morello-O3-bounds-conservative
clang-morello-O0-bounds-references-only
clang-morello-O0-bounds-subobject-safe
clang-morello-O3-bounds-subobject-safe
clang-morello-O0-bounds-aggressive
clang-morello-O0-bounds-very-aggressive
clang-morello-O0-bounds-everywhere-unsafe
clang-riscv-O0-bounds-conservative
clang-riscv-O3-bounds-conservative
clang-riscv-O0-bounds-references-only
clang-riscv-O0-bounds-subobject-safe
clang-riscv-O3-bounds-subobject-safe
clang-riscv-O0-bounds-aggressive
clang-riscv-O0-bounds-very-aggressive
clang-riscv-O0-bounds-everywhere-unsafe
cerberus-cheri
cerberus-cheri-no-pnvi
cerberus-cheri-revocation
cerberus-cheri-revocation-no-pnvi
cerberus-cheri-cornucopia
cerberus-cheri-cornucopia-no-pnvi
 allocation was exact