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
# RUN: llc -mtriple=aarch64-none-linux-android -run-pass aarch64-ldst-opt -o - %s | FileCheck %s

--- |
  target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
  target triple = "aarch64-unknown-linux-android"

  define void @f(i64* nocapture %x) "target-features"="+mte" {
  entry:
    store i64 1, i64* %x, align 8
    %0 = tail call i8* @llvm.aarch64.irg(i8* null, i64 0)
    %1 = tail call i8* @llvm.aarch64.irg.sp(i64 0)
    %arrayidx1 = getelementptr inbounds i64, i64* %x, i64 1
    store i64 1, i64* %arrayidx1, align 8
    ret void
  }

  declare i8* @llvm.aarch64.irg(i8*, i64) nounwind
  declare i8* @llvm.aarch64.irg.sp(i64) nounwind
...
---
name:            f
alignment:       4
exposesReturnsTwice: false
legalized:       false
regBankSelected: false
selected:        false
failedISel:      false
tracksRegLiveness: true
hasWinCFI:       false
registers:       []
liveins:
  - { reg: '$x0', virtual-reg: '' }
frameInfo:
  isFrameAddressTaken: false
  isReturnAddressTaken: false
  hasStackMap:     false
  hasPatchPoint:   false
  stackSize:       0
  offsetAdjustment: 0
  maxAlignment:    0
  adjustsStack:    false
  hasCalls:        false
  stackProtector:  ''
  maxCallFrameSize: 0
  cvBytesOfCalleeSavedRegisters: 0
  hasOpaqueSPAdjustment: false
  hasVAStart:      false
  hasMustTailInVarArgFunc: false
  localFrameSize:  0
  savePoint:       ''
  restorePoint:    ''
fixedStack:      []
stack:           []
callSites:       []
constants:       []
machineFunctionInfo: {}
body:             |
  bb.0.entry:
    liveins: $x0

    $x8 = ORRXrs $xzr, $xzr, 0
    $w9 = MOVZWi 1, 0, implicit-def $x9

    ; Check that stores are merged across IRG.
    ; CHECK: STPXi renamable $x9, renamable $x9, renamable $x0, 0

    STRXui renamable $x9, renamable $x0, 0 :: (store 8 into %ir.x)
    dead renamable $x10 = IRG renamable $x8, $xzr
    dead renamable $x8 = IRG $sp, $xzr
    STRXui killed renamable $x9, killed renamable $x0, 1 :: (store 8 into %ir.arrayidx1)
    RET undef $lr

...