mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-07 19:47:53 +00:00
1b3bd06827
As part of speculation hardening, the stack pointer gets masked with the taint register (X16) before a function call or before a function return. Since there are no instructions that can directly mask writing to the stack pointer, the stack pointer must first be transferred to another register, where it can be masked, before that value is transferred back to the stack pointer. Before, that temporary register was always picked to be x17, since the ABI allows clobbering x17 on any function call, resulting in the following instruction pattern being inserted before function calls and returns/tail calls: mov x17, sp and x17, x17, x16 mov sp, x17 However, x17 can be live in those locations, for example when the call is an indirect call, using x17 as the target address (blr x17). To fix this, this patch looks for an available register just before the call or terminator instruction and uses that. In the rare case when no register turns out to be available (this situation is only encountered twice across the whole test-suite), just insert a full speculation barrier at the start of the basic block where this occurs. Differential Revision: https://reviews.llvm.org/D56717 llvm-svn: 351930
165 lines
5.8 KiB
LLVM
165 lines
5.8 KiB
LLVM
; RUN: sed -e 's/SLHATTR/speculative_load_hardening/' %s | llc -verify-machineinstrs -mtriple=aarch64-none-linux-gnu | FileCheck %s --check-prefixes=CHECK,SLH,NOGISELSLH --dump-input-on-failure
|
|
; RUN: sed -e 's/SLHATTR//' %s | llc -verify-machineinstrs -mtriple=aarch64-none-linux-gnu | FileCheck %s --check-prefixes=CHECK,NOSLH,NOGISELNOSLH --dump-input-on-failure
|
|
; RUN: sed -e 's/SLHATTR/speculative_load_hardening/' %s | llc -verify-machineinstrs -mtriple=aarch64-none-linux-gnu -global-isel | FileCheck %s --check-prefixes=CHECK,SLH,GISELSLH --dump-input-on-failure
|
|
; RUN sed -e 's/SLHATTR//' %s | llc -verify-machineinstrs -mtriple=aarch64-none-linux-gnu -global-isel | FileCheck %s --check-prefixes=CHECK,NOSLH,GISELNOSLH --dump-input-on-failure
|
|
; RUN: sed -e 's/SLHATTR/speculative_load_hardening/' %s | llc -verify-machineinstrs -mtriple=aarch64-none-linux-gnu -fast-isel | FileCheck %s --check-prefixes=CHECK,SLH,NOGISELSLH --dump-input-on-failure
|
|
; RUN: sed -e 's/SLHATTR//' %s | llc -verify-machineinstrs -mtriple=aarch64-none-linux-gnu -fast-isel | FileCheck %s --check-prefixes=CHECK,NOSLH,NOGISELNOSLH --dump-input-on-failure
|
|
|
|
define i32 @f(i8* nocapture readonly %p, i32 %i, i32 %N) local_unnamed_addr SLHATTR {
|
|
; CHECK-LABEL: f
|
|
entry:
|
|
; SLH: cmp sp, #0
|
|
; SLH: csetm x16, ne
|
|
; NOSLH-NOT: cmp sp, #0
|
|
; NOSLH-NOT: csetm x16, ne
|
|
|
|
; SLH: mov [[TMPREG:x[0-9]+]], sp
|
|
; SLH: and [[TMPREG]], [[TMPREG]], x16
|
|
; SLH: mov sp, [[TMPREG]]
|
|
; NOSLH-NOT: mov [[TMPREG:x[0-9]+]], sp
|
|
; NOSLH-NOT: and [[TMPREG]], [[TMPREG]], x16
|
|
; NOSLH-NOT: mov sp, [[TMPREG]]
|
|
%call = tail call i32 @tail_callee(i32 %i)
|
|
; SLH: cmp sp, #0
|
|
; SLH: csetm x16, ne
|
|
; NOSLH-NOT: cmp sp, #0
|
|
; NOSLH-NOT: csetm x16, ne
|
|
%cmp = icmp slt i32 %call, %N
|
|
br i1 %cmp, label %if.then, label %return
|
|
; GlobalISel lowers the branch to a b.ne sometimes instead of b.ge as expected..
|
|
; CHECK: b.[[COND:(ge)|(lt)|(ne)]]
|
|
|
|
if.then: ; preds = %entry
|
|
; NOSLH-NOT: csel x16, x16, xzr, {{(lt)|(ge)|(eq)}}
|
|
; SLH-DAG: csel x16, x16, xzr, {{(lt)|(ge)|(eq)}}
|
|
%idxprom = sext i32 %i to i64
|
|
%arrayidx = getelementptr inbounds i8, i8* %p, i64 %idxprom
|
|
%0 = load i8, i8* %arrayidx, align 1
|
|
; CHECK-DAG: ldrb [[LOADED:w[0-9]+]],
|
|
%conv = zext i8 %0 to i32
|
|
br label %return
|
|
|
|
; SLH-DAG: csel x16, x16, xzr, [[COND]]
|
|
; NOSLH-NOT: csel x16, x16, xzr, [[COND]]
|
|
return: ; preds = %entry, %if.then
|
|
%retval.0 = phi i32 [ %conv, %if.then ], [ 0, %entry ]
|
|
; SLH: mov [[TMPREG:x[0-9]+]], sp
|
|
; SLH: and [[TMPREG]], [[TMPREG]], x16
|
|
; SLH: mov sp, [[TMPREG]]
|
|
; NOSLH-NOT: mov [[TMPREG:x[0-9]+]], sp
|
|
; NOSLH-NOT: and [[TMPREG]], [[TMPREG]], x16
|
|
; NOSLH-NOT: mov sp, [[TMPREG]]
|
|
ret i32 %retval.0
|
|
}
|
|
|
|
; Make sure that for a tail call, taint doesn't get put into SP twice.
|
|
define i32 @tail_caller(i32 %a) local_unnamed_addr SLHATTR {
|
|
; CHECK-LABEL: tail_caller:
|
|
; NOGISELSLH: mov [[TMPREG:x[0-9]+]], sp
|
|
; NOGISELSLH: and [[TMPREG]], [[TMPREG]], x16
|
|
; NOGISELSLH: mov sp, [[TMPREG]]
|
|
; NOGISELNOSLH-NOT: mov [[TMPREG:x[0-9]+]], sp
|
|
; NOGISELNOSLH-NOT: and [[TMPREG]], [[TMPREG]], x16
|
|
; NOGISELNOSLH-NOT: mov sp, [[TMPREG]]
|
|
; GISELSLH: mov [[TMPREG:x[0-9]+]], sp
|
|
; GISELSLH: and [[TMPREG]], [[TMPREG]], x16
|
|
; GISELSLH: mov sp, [[TMPREG]]
|
|
; GISELNOSLH-NOT: mov [[TMPREG:x[0-9]+]], sp
|
|
; GISELNOSLH-NOT: and [[TMPREG]], [[TMPREG]], x16
|
|
; GISELNOSLH-NOT: mov sp, [[TMPREG]]
|
|
; GlobalISel doesn't optimize tail calls (yet?), so only check that
|
|
; cross-call taint register setup code is missing if a tail call was
|
|
; actually produced.
|
|
; NOGISELSLH: b tail_callee
|
|
; GISELSLH: bl tail_callee
|
|
; GISELSLH: cmp sp, #0
|
|
; SLH-NOT: cmp sp, #0
|
|
%call = tail call i32 @tail_callee(i32 %a)
|
|
ret i32 %call
|
|
}
|
|
|
|
declare i32 @tail_callee(i32) local_unnamed_addr
|
|
|
|
; Verify that no cb(n)z/tb(n)z instructions are produced when implementing
|
|
; SLH
|
|
define i32 @compare_branch_zero(i32, i32) SLHATTR {
|
|
; CHECK-LABEL: compare_branch_zero
|
|
%3 = icmp eq i32 %0, 0
|
|
br i1 %3, label %then, label %else
|
|
;SLH-NOT: cb{{n?}}z
|
|
;NOSLH: cb{{n?}}z
|
|
then:
|
|
%4 = sdiv i32 5, %1
|
|
ret i32 %4
|
|
else:
|
|
%5 = sdiv i32 %1, %0
|
|
ret i32 %5
|
|
}
|
|
|
|
define i32 @test_branch_zero(i32, i32) SLHATTR {
|
|
; CHECK-LABEL: test_branch_zero
|
|
%3 = and i32 %0, 16
|
|
%4 = icmp eq i32 %3, 0
|
|
br i1 %4, label %then, label %else
|
|
;SLH-NOT: tb{{n?}}z
|
|
;NOSLH: tb{{n?}}z
|
|
then:
|
|
%5 = sdiv i32 5, %1
|
|
ret i32 %5
|
|
else:
|
|
%6 = sdiv i32 %1, %0
|
|
ret i32 %6
|
|
}
|
|
|
|
define i32 @landingpad(i32 %l0, i32 %l1) SLHATTR personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
|
|
; CHECK-LABEL: landingpad
|
|
entry:
|
|
; SLH: cmp sp, #0
|
|
; SLH: csetm x16, ne
|
|
; NOSLH-NOT: cmp sp, #0
|
|
; NOSLH-NOT: csetm x16, ne
|
|
; CHECK: bl _Z10throwing_fv
|
|
invoke void @_Z10throwing_fv()
|
|
to label %exit unwind label %lpad
|
|
; SLH: cmp sp, #0
|
|
; SLH: csetm x16, ne
|
|
|
|
lpad:
|
|
%l4 = landingpad { i8*, i32 }
|
|
catch i8* null
|
|
; SLH: cmp sp, #0
|
|
; SLH: csetm x16, ne
|
|
; NOSLH-NOT: cmp sp, #0
|
|
; NOSLH-NOT: csetm x16, ne
|
|
%l5 = extractvalue { i8*, i32 } %l4, 0
|
|
%l6 = tail call i8* @__cxa_begin_catch(i8* %l5)
|
|
%l7 = icmp sgt i32 %l0, %l1
|
|
br i1 %l7, label %then, label %else
|
|
; GlobalISel lowers the branch to a b.ne sometimes instead of b.ge as expected..
|
|
; CHECK: b.[[COND:(le)|(gt)|(ne)]]
|
|
|
|
then:
|
|
; SLH-DAG: csel x16, x16, xzr, [[COND]]
|
|
%l9 = sdiv i32 %l0, %l1
|
|
br label %postif
|
|
|
|
else:
|
|
; SLH-DAG: csel x16, x16, xzr, {{(gt)|(le)|(eq)}}
|
|
%l11 = sdiv i32 %l1, %l0
|
|
br label %postif
|
|
|
|
postif:
|
|
%l13 = phi i32 [ %l9, %then ], [ %l11, %else ]
|
|
tail call void @__cxa_end_catch()
|
|
br label %exit
|
|
|
|
exit:
|
|
%l15 = phi i32 [ %l13, %postif ], [ 0, %entry ]
|
|
ret i32 %l15
|
|
}
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|
|
declare void @_Z10throwing_fv() local_unnamed_addr
|
|
declare i8* @__cxa_begin_catch(i8*) local_unnamed_addr
|
|
declare void @__cxa_end_catch() local_unnamed_addr
|