forked from anza-xyz/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SOL] Use ADD for subtracting stack pointer (anza-xyz#70)
This PR replaces sub r11, imm by add r11, -imm and is the equivalent of solana-labs/rbpf#488 for the SBF target in LLVM. This is the first task in solana-labs/solana#34250
- Loading branch information
Showing
2 changed files
with
36 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
; RUN: llc < %s -march=sbf --mattr=+dynamic-frames | FileCheck %s | ||
; | ||
; Source: | ||
; int test_func(int * vec, int idx) { | ||
; vec[idx] = idx-1; | ||
; return idx; | ||
; } | ||
; Compilation flag: | ||
; clang -S -emit-llvm test.c | ||
|
||
|
||
; Function Attrs: noinline nounwind optnone ssp uwtable(sync) | ||
define i32 @test_func(ptr noundef %vec, i32 noundef %idx) #0 { | ||
; CHECK-LABEL: test_func: | ||
; CHECK: add64 r11, -16 | ||
; CHECK: add64 r11, 16 | ||
entry: | ||
%vec.addr = alloca ptr, align 8 | ||
%idx.addr = alloca i32, align 4 | ||
store ptr %vec, ptr %vec.addr, align 8 | ||
store i32 %idx, ptr %idx.addr, align 4 | ||
%0 = load i32, ptr %idx.addr, align 4 | ||
%sub = sub nsw i32 %0, 1 | ||
%1 = load ptr, ptr %vec.addr, align 8 | ||
%2 = load i32, ptr %idx.addr, align 4 | ||
%idxprom = sext i32 %2 to i64 | ||
%arrayidx = getelementptr inbounds i32, ptr %1, i64 %idxprom | ||
store i32 %sub, ptr %arrayidx, align 4 | ||
%3 = load i32, ptr %idx.addr, align 4 | ||
ret i32 %3 | ||
} |