File: section-relro.ll

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (65 lines) | stat: -rw-r--r-- 2,043 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
; Tests that data and relro are correctly placed in sections
; specified by "#pragma clang section"
; RUN: llc -filetype=obj -mtriple x86_64-unknown-linux %s -o - | llvm-readobj -S --syms - | FileCheck %s

target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux"

@funcs_relro = hidden constant [2 x i32 ()*] [i32 ()* bitcast (i32 (...)* @func1 to i32 ()*), i32 ()* bitcast (i32 (...)* @func2 to i32 ()*)], align 16 #0
@var_data = hidden global i32 33, align 4 #0

declare i32 @func1(...)
declare i32 @func2(...)

; Function Attrs: noinline nounwind optnone sspstrong uwtable
define hidden i32 @foo(i32 %i) {
entry:
  %i.addr = alloca i32, align 4
  store i32 %i, i32* %i.addr, align 4
  %0 = load i32, i32* %i.addr, align 4
  %idxprom = sext i32 %0 to i64
  %arrayidx = getelementptr inbounds [2 x i32 ()*], [2 x i32 ()*]* @funcs_relro, i64 0, i64 %idxprom
  %1 = load i32 ()*, i32 ()** %arrayidx, align 8
  %call = call i32 %1()
  %2 = load i32, i32* @var_data, align 4
  %add = add nsw i32 %call, %2
  ret i32 %add
}

attributes #0 = { "data-section"=".my_data" "relro-section"=".my_relro" "rodata-section"=".my_rodata" }

; CHECK:  Section {
; CHECK:    Index:
; CHECK:    Name: .my_rodata
; CHECK:    Type: SHT_PROGBITS (0x1)
; CHECK:    Flags [ (0x2)
; CHECK:      SHF_ALLOC (0x2)
; CHECK:    ]
; CHECK:    Size: 16
; CHECK:  }
; CHECK:  Section {
; CHECK:    Index:
; CHECK:    Name: .my_data
; CHECK:    Type: SHT_PROGBITS (0x1)
; CHECK:    Flags [ (0x3)
; CHECK:      SHF_ALLOC (0x2)
; CHECK:      SHF_WRITE (0x1)
; CHECK:    ]
; CHECK:    Size: 4
; CHECK:  }
; CHECK:   Symbol {
; CHECK:    Name: funcs_relro
; CHECK:    Value: 0x0
; CHECK:    Size: 16
; CHECK:    Binding: Global (0x1)
; CHECK:    Type: Object (0x1)
; CHECK:    Section: .my_rodata
; CHECK:  }
; CHECK:  Symbol {
; CHECK:    Name: var_data
; CHECK:    Value: 0x0
; CHECK:    Size: 4
; CHECK:    Binding: Global (0x1)
; CHECK:    Type: Object (0x1)
; CHECK:    Section: .my_data
; CHECK:  }