-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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 358ff44
Showing
6 changed files
with
112 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 segments" (.sdata, .sbss) supported by some architectures (RISCV, | ||
MIPS, M68K, Hexagon). Can be set to `0` to disable the use of small data | ||
segments. |
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,70 @@ | ||
// 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-musl -C llvm-args=-relocation-model=static -C llvm-args=-membedded-data -C llvm-args=-mgpopt -C llvm-args=-target-abi=n64 | ||
// [HEXAGON] compile-flags:--target=hexagon-unknown-linux-musl -C target-feature=+small-data -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 | ||
pub static mut U: u16 = 123; | ||
|
||
#[used] | ||
#[no_mangle] | ||
// V is below the threshold, should be in sbss | ||
pub static mut V: u16 = 0; | ||
|
||
#[used] | ||
#[no_mangle] | ||
// W is at the threshold, should be in sdata | ||
pub static mut W: u32 = 123; | ||
|
||
#[used] | ||
#[no_mangle] | ||
// X is at the threshold, should be in sbss | ||
pub static mut X: u32 = 0; | ||
|
||
#[used] | ||
#[no_mangle] | ||
// Y is over the threshold, should be in its own .data section | ||
pub static mut Y: u64 = 123; | ||
|
||
#[used] | ||
#[no_mangle] | ||
/// Z is over the threshold, should be in its own .bss section | ||
pub static mut Z: u64 = 0; | ||
|
||
// Currently, only RISCV successfully puts 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: | ||
// CHECK: .section .data.Y, | ||
// CHECK-NOT: .section | ||
// CHECK: Y: | ||
// CHECK: .section .bss.Z, | ||
// CHECK-NOT: .section | ||
// CHECK: Z: |