File: 2012-09-16-TOC-entry-check.ll

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.6-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,304 kB
  • sloc: cpp: 7,438,677; ansic: 1,393,822; asm: 1,012,926; python: 241,650; f90: 86,635; objc: 75,479; lisp: 42,144; pascal: 17,286; sh: 10,027; ml: 5,082; perl: 4,730; awk: 3,523; makefile: 3,349; javascript: 2,251; xml: 892; fortran: 672
file content (27 lines) | stat: -rw-r--r-- 1,085 bytes parent folder | download | duplicates (30)
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
; RUN: llc -verify-machineinstrs -code-model=small < %s | FileCheck %s
target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32:64"
target triple = "powerpc64-unknown-linux-gnu"

; This test check if the TOC entry symbol name won't clash with global .LC0
; and .LC2 symbols defined in the module.

@.LC0 = internal global [5 x i8] c".LC0\00"
@.LC2 = internal global [5 x i8] c".LC2\00"

define i32 @foo(double %X, double %Y) nounwind readnone {
  ; The 1.0 and 3.0 constants generate two TOC entries
  %cmp = fcmp oeq double %X, 1.000000e+00
  %conv = zext i1 %cmp to i32
  %cmp1 = fcmp oeq double %Y, 3.000000e+00
  %conv2 = zext i1 %cmp1 to i32
  %add = add nsw i32 %conv2, %conv
  ret i32 %add
}

; Check the creation of 2 .tc entries for both double constants. They
; avoid name clash with global constants .LC0 and .LC2
; CHECK: .section	.toc,"aw",@progbits
; CHECK: .LC{{.*}}:
; CHECK-NEXT: .tc {{[\._a-zA-Z0-9]+}}[TC],{{[\._a-zA-Z0-9]+}}
; CHECK: .LC{{.*}}:
; CHECK-NEXT: .tc {{[\._a-zA-Z0-9]+}}[TC],{{[\._a-zA-Z0-9]+}}