Lines Matching full:ram
4 ## Check simple RAM-only memory region.
6 # RUN: echo "MEMORY { ram (rwx) : ORIGIN = 0x8000, LENGTH = 256K } \
8 # RUN: .text : { *(.text) } > ram \
9 # RUN: .data : { *(.data) } > ram \
12 # RUN: llvm-readelf -S %t1 | FileCheck --check-prefix=RAM %s
14 # RAM: [ 1] .text PROGBITS 0000000000008000 001000 000001
15 # RAM-NEXT: [ 2] .data PROGBITS 0000000000008001 001001 001000
17 ## Check RAM and ROM memory regions.
20 # RUN: ram (rwx) : ORIGIN = 0, LENGTH = 1024M \
25 # RUN: .data : { *(.data) } >ram \
36 # RUN: ram (!rx) : ORIGIN = 0, LENGTH = 1024M \
41 # RUN: .data : { *(.data) } > ram \
50 # RUN: echo 'MEMORY { ram : ORIGIN = symbol, LENGTH = 4097 } \
52 # RUN: .text : { *(.text) } > ram \
53 # RUN: .data : { *(.data) } > ram \
64 # RUN: echo 'MEMORY { ram : ORIGIN = CONSTANT(COMMONPAGESIZE), LENGTH = CONSTANT(COMMONPAGESIZE)+1 …
66 # RUN: .text : { *(.text) } > ram \
67 # RUN: .data : { *(.data) } > ram \