/llvm-project/lld/test/ELF/ |
H A D | riscv-gp.s | 12 ## __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 D | riscv-section-layout.s | 7 # 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 D | mips-gp-lowest.s | 7 # RUN: .sdata : { *(.sdata) } \ 17 .sdata 21 # CHECK: Name: .sdata
|
H A D | mips-gprel-sec.s | 11 .sdata 27 # CHECK-NEXT: Name: .sdata
|
/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonTargetObjectFile.cpp | 33 #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 D | extern-section-attribute.cpp | 3 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 D | bug19119.ll | 2 ; 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 D | section_7275.ll | 2 ; 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 D | sdata-explicit-section.ll | 4 ; CHECK: .section .sdata.4,"aws",@progbits 5 @g0 = global i32 zeroinitializer, section ".sdata"
|
/llvm-project/llvm/test/tools/llvm-gsymutil/X86/ |
H A D | elf-empty-dir.yaml | 83 SData: 9 90 SData: 1 95 SData: 1 102 SData: 1
|
/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsTargetObjectFile.cpp | 28 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 D | sdata-limit-8.ll | 8 ; and @r will be put in sdata. 13 ; RV32: .section .sdata 15 ; RV64: .section .sdata
|
H A D | sdata-limit-0.ll | 7 ; 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 D | sdata-limit-4.ll | 8 ; but @r won't be put in sdata. 13 ; RV32-NOT: .section .sdata 15 ; RV64-NOT: .section .sdata
|
H A D | sdata-local-sym.ll | 9 ; and @r will be put in sdata. 14 ; RV32: .section .sdata 16 ; RV64: .section .sdata
|
/llvm-project/llvm/test/CodeGen/Mips/ |
H A D | mips-shf-gprel.s | 1 # Check that .sdata and .sbss sections have SHF_MIPS_GPREL flags 7 .sdata 13 # CHECK: Name: .sdata
|
H A D | gpopt-explict-section.ll | 5 ; 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 D | mips-features.c | 43 // -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 D | riscv-sdata-warning.c |
|
/llvm-project/lldb/unittests/Symbol/Inputs/ |
H A D | inlined-functions.yaml | 763 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 D | loop_evaluate10.ll | 18 %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 D | gprel-shflag.s | 5 # CHECK: .section .sdata,"aws",@progbits 7 .section ".sdata", "aws", @progbits
|
/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SMInstructions.td | 113 !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 D | 2016-05-01-RegScavengerAssert.ll | 11 …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 D | GSYMTest.cpp | 1786 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...] |