Home
last modified time | relevance | path

Searched full:sdata (Results 1 – 25 of 96) sorted by relevance

1234

/llvm-project/lld/test/ELF/
H A Driscv-gp.s12 ## __global_pointer$ = .sdata+0x800 = 0x39c0
13 # SEC32: [ [[#SDATA:]]] .sdata PROGBITS {{0*}}000031c0
14 # SEC32: {{0*}}000039c0 0 NOTYPE GLOBAL DEFAULT [[#SDATA]] __global_pointer$
16 # SEC64: [ [[#SDATA:]]] .sdata PROGBITS {{0*}}000032e0
17 # SEC64: {{0*}}00003ae0 0 NOTYPE GLOBAL DEFAULT [[#SDATA]] __global_pointer$
37 .section .sdata,"aw"
H A Driscv-section-layout.s7 # RUN: llvm-mc -filetype=obj -triple=riscv32 --defsym=SDATA=1 %s -o %t.32s.o
14 # RUN: llvm-mc -filetype=obj -triple=riscv64 --defsym=SDATA=1 %s -o %t.64s.o
28 ## If there is an undefined reference to __global_pointer$ but .sdata doesn't
46 # CHECK-NEXT: .sdata PROGBITS [[#%x,SDATA:]]
50 # CHECK-DAG: [[#]]: {{0*}}[[#SBSS]] 0 NOTYPE GLOBAL DEFAULT [[#]] (.sdata) _edata
52 # CHECK-DAG: [[#]]: {{0*}}[[#SDATA+0x800]] 0 NOTYPE GLOBAL DEFAULT [[#]] (.sdata) __global_pointer$
62 .ifdef SDATA
63 .section .sdata,"a
[all...]
H A Dmips-gp-lowest.s7 # RUN: .sdata : { *(.sdata) } \
17 .sdata
21 # CHECK: Name: .sdata
H A Dmips-gprel-sec.s11 .sdata
27 # CHECK-NEXT: Name: .sdata
/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp33 #define DEBUG_TYPE "hexagon-sdata"
39 cl::desc("The maximum size of an object in the sdata section"));
46 cl::desc("Allow static variables in .sdata"));
84 // For instance, global variables with section attributes such as ".sdata"
85 // ".sdata.*", ".sbss", and ".sbss.*" will go into small data.
87 // sectionName is either ".sdata" or ".sbss". Looking for an exact match in isSmallDataSection()
89 if (Sec == ".sdata" || Sec == ".sbss" || Sec == ".scommon") in isSmallDataSection()
91 // If either ".sdata." or ".sbss." is a substring of the section name in isSmallDataSection()
93 return Sec.contains(".sdata.") || Sec.contains(".sbss.") || in isSmallDataSection()
117 getContext().getELFSection(".sdata", EL in Initialize()
[all...]
/llvm-project/clang/test/CodeGenCXX/
H A Dextern-section-attribute.cpp3 extern int aa __attribute__((section(".sdata")));
4 // CHECK-DAG: @aa = external global i32, section ".sdata", align 4
6 extern int bb __attribute__((section(".sdata"))) = 1;
7 // CHECK-DAG: @bb ={{.*}} global i32 1, section ".sdata", align 4
/llvm-project/llvm/test/CodeGen/Hexagon/
H A Dbug19119.ll2 ; CHECK-NOT: .sdata.4.g0,"aM"
29 attributes #0 = { "linker_input_section"=".sdata.4.cccc" "linker_output_section"=".sdata.4" }
31 attributes #2 = { "linker_input_section"=".sdata.4.cp" "linker_output_section"=".sdata.4" }
H A Dsection_7275.ll2 ; variable can be part of sdata, we were wrongly ignoring
5 ; and that section is not sdata*/sbss* then the variable
24 @c = global i32 0, section ".sdata", align 4
27 @h = global i32 0, section ".sdata.4", align 4
H A Dsdata-explicit-section.ll4 ; CHECK: .section .sdata.4,"aws",@progbits
5 @g0 = global i32 zeroinitializer, section ".sdata"
/llvm-project/llvm/test/tools/llvm-gsymutil/X86/
H A Delf-empty-dir.yaml83 SData: 9
90 SData: 1
95 SData: 1
102 SData: 1
/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetObjectFile.cpp28 LocalSData("mlocal-sdata", cl::Hidden,
33 ExternSData("mextern-sdata", cl::Hidden,
41 " sections if possible: .rodata, .sdata, .data ."),
48 ".sdata", ELF::SHT_PROGBITS, in Initialize()
114 if (Section == ".sdata" || Section == ".sbss") in IsGlobalInSmallSectionImpl()
123 // Enforce -mlocal-sdata. in IsGlobalInSmallSectionImpl()
127 // Enforce -mextern-sdata. in IsGlobalInSmallSectionImpl()
/llvm-project/llvm/test/CodeGen/RISCV/
H A Dsdata-limit-8.ll8 ; and @r will be put in sdata.
13 ; RV32: .section .sdata
15 ; RV64: .section .sdata
H A Dsdata-limit-0.ll7 ; SmallDataLimit set to 0, so we expect no data will put in sbss and sdata.
12 ; RV32-NOT: .section .sdata
14 ; RV64-NOT: .section .sdata
H A Dsdata-limit-4.ll8 ; but @r won't be put in sdata.
13 ; RV32-NOT: .section .sdata
15 ; RV64-NOT: .section .sdata
H A Dsdata-local-sym.ll9 ; and @r will be put in sdata.
14 ; RV32: .section .sdata
16 ; RV64: .section .sdata
/llvm-project/llvm/test/CodeGen/Mips/
H A Dmips-shf-gprel.s1 # Check that .sdata and .sbss sections have SHF_MIPS_GPREL flags
7 .sdata
13 # CHECK: Name: .sdata
H A Dgpopt-explict-section.ll5 ; Test that object with an explicit section that is not .sdata or .sbss are not
11 @b = global [4 x i32] zeroinitializer, section ".sdata", align 4
48 ; CHECK: .section .sdata,"aw",@progbits
/llvm-project/clang/test/Driver/
H A Dmips-features.c43 // -mgpopt -mno-abicalls -mlocal-sdata
44 …et=mips-linux-gnu -### -c %s -mno-abicalls -mno-gpopt -mgpopt -mno-local-sdata -mlocal-sdata 2>&1 \
46 // CHECK-MLOCALSDATA: "-mllvm" "-mlocal-sdata=1"
48 // -mgpopt -mno-abicalls -mno-local-sdata
49 …et=mips-linux-gnu -### -c %s -mno-abicalls -mno-gpopt -mgpopt -mlocal-sdata -mno-local-sdata 2>&1 \
51 // CHECK-MNOLOCALSDATA: "-mllvm" "-mlocal-sdata=0"
56 // CHECK-MLOCALSDATADEF-NOT: "-mllvm" "-mlocal-sdata"
58 // -mno-abicalls -mgpopt -mextern-sdata
59 …ng --target=mips-linux-gnu -### -c %s -mno-abicalls -mgpopt -mno-extern-sdata -mextern-sdata 2>&1 \
61 // CHECK-MEXTERNSDATA: "-mllvm" "-mextern-sdata=1"
[all …]
H A Driscv-sdata-warning.c
/llvm-project/lldb/unittests/Symbol/Inputs/
H A Dinlined-functions.yaml763 SData: 9
778 SData: -16
799 SData: 10
816 SData: -10
839 SData: 9
854 SData: -10
873 SData: 10
898 SData: -17
919 SData: 19
/llvm-project/llvm/test/Transforms/IndVarSimplify/X86/
H A Dloop_evaluate10.ll18 %sdata.0 = phi i32 [ 1, %entry ], [ %ins10, %bb ] ; <i32> [#uses=2]
20 %tmp6 = trunc i32 %sdata.0 to i8 ; <i8> [#uses=2]
25 %mask9 = and i32 %sdata.0, -256 ; <i32> [#uses=1]
/llvm-project/llvm/test/MC/Hexagon/
H A Dgprel-shflag.s5 # CHECK: .section .sdata,"aws",@progbits
7 .section ".sdata", "aws", @progbits
/llvm-project/llvm/lib/Target/AMDGPU/
H A DSMInstructions.td113 !con((ins i8imm:$sdata, baseClass:$sbase), offsets.Ins),
114 " $sdata, $sbase, " # offsets.Asm> {
142 : SM_Pseudo<opName, (outs), !con((ins srcClass:$sdata, baseClass:$sbase),
144 " $sdata, $sbase, " # offsets.Asm # "$cpol"> {
242 (ins SMEMOffset:$offset, SReg_32:$soffset, i8imm:$sdata)),
243 !if(hasSBase, " $sbase,", "") # " $offset, $soffset, $sdata"> {
289 !con((ins dataClass:$sdata, baseClass:$sbase), offsets.Ins,
291 !if(isRet, " $sdst", " $sdata") #
297 let Constraints = !if(isRet, "$sdst = $sdata", "");
298 let DisableEncoding = !if(isRet, "$sdata", "");
[all...]
/llvm-project/llvm/test/CodeGen/ARM/
H A D2016-05-01-RegScavengerAssert.ll11 …num, ptr %tm, i32 %SR, i32 %lev, ptr %tdata, i32 %siW, i32 %pyw, i32 %pyh, ptr %sdata) #0 align 2 {
85 %add.ptr = getelementptr inbounds i8, ptr %sdata, i32 %cond153
122 %add.ptr.1 = getelementptr inbounds i8, ptr %sdata, i32 %cond153.1
132 %add.ptr.2 = getelementptr inbounds i8, ptr %sdata, i32 %cond153.2
140 %add.ptr.3 = getelementptr inbounds i8, ptr %sdata, i32 %cond153.3
167 %add.ptr.6 = getelementptr inbounds i8, ptr %sdata, i32 %cond153.6
/llvm-project/llvm/unittests/DebugInfo/GSYM/
H A DGSYMTest.cpp1786 SData: 9 in TEST()
1795 SData: 10 in TEST()
1802 SData: 1 in TEST()
1811 SData: -10 in TEST()
1818 SData: 1 in TEST()
2046 SData: 10 in TEST()
2053 SData: 1 in TEST()
2068 SData: 20 in TEST()
2075 SData: 1 in TEST()
3005 SData in TEST()
[all...]

1234