reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    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
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
; RUN: llc < %s -emulated-tls -mtriple=mipsel-linux-android -relocation-model=pic \
; RUN:     | FileCheck -check-prefix=MIPS_32 %s
; RUN: llc < %s -emulated-tls -mtriple=mips64el-linux-android -relocation-model=pic \
; RUN:     | FileCheck -check-prefix=MIPS_64 %s

; RUN: llc < %s -mtriple=mipsel-linux-android -relocation-model=pic \
; RUN:     | FileCheck -check-prefix=MIPS_32 %s
; RUN: llc < %s -mtriple=mips64el-linux-android -relocation-model=pic \
; RUN:     | FileCheck -check-prefix=MIPS_64 %s

; Make sure that TLS symbols are emitted in expected order.

@external_x = external thread_local global i32, align 8
@external_y = thread_local global i8 7, align 2
@internal_y = internal thread_local global i64 9, align 16

define i32* @get_external_x() {
entry:
  ret i32* @external_x
}

define i8* @get_external_y() {
entry:
  ret i8* @external_y
}

define i64* @get_internal_y() {
entry:
  ret i64* @internal_y
}

; MIPS_32-LABEL: get_external_y:
; MIPS_32-LABEL: get_internal_y:
; MIPS_32:     lw {{.+}}(__emutls_v.internal_y
; MIPS_32:     lw {{.+}}call16(__emutls_get_address
; MIPS_32-NOT:  __emutls_t.external_x
; MIPS_32-NOT:  __emutls_v.external_x:
; MIPS_32:       .data
; MIPS_32:       .p2align 2
; MIPS_32-LABEL: __emutls_v.external_y:
; MIPS_32:       .section .rodata,
; MIPS_32-LABEL: __emutls_t.external_y:
; MIPS_32-NEXT:  .byte 7
; MIPS_32:       .data
; MIPS_32:       .p2align 2
; MIPS_32-LABEL: __emutls_v.internal_y:
; MIPS_32-NEXT:  .4byte 8
; MIPS_32-NEXT:  .4byte 16
; MIPS_32-NEXT:  .4byte 0
; MIPS_32-NEXT:  .4byte __emutls_t.internal_y
; MIPS_32-LABEL: __emutls_t.internal_y:
; MIPS_32-NEXT:  .8byte 9

; MIPS_64-LABEL: get_external_x:
; MIPS_64-LABEL: get_external_y:
; MIPS_64-LABEL: get_internal_y:
; MIPS_64:     ld {{.+}}(__emutls_v.internal_y
; MIPS_64:     ld {{.+}}call16(__emutls_get_address
; MIPS_64-NOT:  __emutls_t.external_x
; MIPS_64-NOT:  __emutls_v.external_x:
; MIPS_64-LABEL: __emutls_v.external_y:
; MIPS_64-NOT:   __emutls_v.external_x:
; MIPS_64:       .section .rodata,
; MIPS_64-LABEL: __emutls_t.external_y:
; MIPS_64-NEXT:  .byte 7
; MIPS_64:       .data
; MIPS_64:       .p2align 3
; MIPS_64-LABEL: __emutls_v.internal_y:
; MIPS_64-NEXT:  .8byte 8
; MIPS_64-NEXT:  .8byte 16
; MIPS_64-NEXT:  .8byte 0
; MIPS_64-NEXT:  .8byte __emutls_t.internal_y
; MIPS_64:       .section .rodata,
; MIPS_64-LABEL: __emutls_t.internal_y:
; MIPS_64-NEXT:  .8byte 9