-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This flag allows specifying the threshold size above which LLVM should not consider placing small objects in a .sdata or .sbss section.
- Loading branch information
1 parent
50be229
commit 9f35e5f
Showing
6 changed files
with
130 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/doc/unstable-book/src/compiler-flags/small-data-threshold.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# `small-data-threshold` | ||
|
||
----------------------- | ||
|
||
This flag controls the maximum static variable size that may be included in the | ||
"small data sections" (.sdata, .sbss) supported by some architectures (RISCV, | ||
MIPS, M68K, Hexagon). Can be set to `0` to disable the use of small data | ||
sections. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
// Test for -Z small_data_threshold=... | ||
// revisions: RISCV MIPS HEXAGON M68K | ||
// assembly-output: emit-asm | ||
// compile-flags: -Z small_data_threshold=4 | ||
// [RISCV] compile-flags: --target=riscv32im-unknown-none-elf | ||
// [MIPS] compile-flags: --target=mips-unknown-linux-uclibc -C relocation-model=static | ||
// [MIPS] compile-flags: -C llvm-args=-mgpopt -C llvm-args=-mlocal-sdata | ||
// [MIPS] compile-flags: -C target-feature=+noabicalls | ||
// [HEXAGON] compile-flags: --target=hexagon-unknown-linux-musl -C target-feature=+small-data | ||
// [HEXAGON] compile-flags: -C llvm-args=--hexagon-statics-in-small-data | ||
// [M68K] compile-flags: --target=m68k-unknown-linux-gnu | ||
|
||
#![feature(no_core, lang_items)] | ||
#![no_std] | ||
#![no_core] | ||
#![crate_type = "lib"] | ||
|
||
#[lang = "sized"] | ||
trait Sized {} | ||
|
||
#[lang = "drop_in_place"] | ||
fn drop_in_place<T>(_: *mut T) {} | ||
|
||
#[used] | ||
#[no_mangle] | ||
// U is below the threshold, should be in sdata | ||
static mut U: u16 = 123; | ||
|
||
#[used] | ||
#[no_mangle] | ||
// V is below the threshold, should be in sbss | ||
static mut V: u16 = 0; | ||
|
||
#[used] | ||
#[no_mangle] | ||
// W is at the threshold, should be in sdata | ||
static mut W: u32 = 123; | ||
|
||
#[used] | ||
#[no_mangle] | ||
// X is at the threshold, should be in sbss | ||
static mut X: u32 = 0; | ||
|
||
#[used] | ||
#[no_mangle] | ||
// Y is over the threshold, should be in its own .data section | ||
static mut Y: u64 = 123; | ||
|
||
#[used] | ||
#[no_mangle] | ||
/// Z is over the threshold, should be in its own .bss section | ||
static mut Z: u64 = 0; | ||
|
||
// Currently, only MIPS and RISCV successfully put any objects in the small data | ||
// sections so the U/V/W/X tests are skipped on MIPS/Hexagon/M68K | ||
|
||
// RISCV: .section .sdata, | ||
// RISCV-NOT: .section | ||
// RISCV: U: | ||
// RISCV: .section .sbss | ||
// RISV-NOT: .section | ||
// RISCV: V: | ||
// RISCV .section .sdata | ||
// RISV-NOT: .section | ||
// RISCV: W: | ||
// RISCV: .section .sbss | ||
// RISV-NOT: .section | ||
// RISCV: X: | ||
|
||
// MIPS: .section .sdata, | ||
// MIPS-NOT: .section | ||
// MIPS: U: | ||
// MIPS: .section .sbss | ||
// RISV-NOT: .section | ||
// MIPS: V: | ||
// MIPS .section .sdata | ||
// RISV-NOT: .section | ||
// MIPS: W: | ||
// MIPS: .section .sbss | ||
// RISV-NOT: .section | ||
// MIPS: X: | ||
|
||
// CHECK: .section .data.Y, | ||
// CHECK-NOT: .section | ||
// CHECK: Y: | ||
// CHECK: .section .bss.Z, | ||
// CHECK-NOT: .section | ||
// CHECK: Z: |