-
Notifications
You must be signed in to change notification settings - Fork 13.4k
[AVR] Fix parsing & emitting relative jumps #106722
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,25 @@ | ||
; RUN: llc -filetype=obj -mtriple=avr < %s | llvm-objdump -dr --no-show-raw-insn - | FileCheck %s | ||
|
||
define i8 @foo(i8 %a) { | ||
bb0: | ||
%0 = tail call i8 @bar(i8 %a) | ||
%1 = icmp eq i8 %0, 123 | ||
br i1 %1, label %bb1, label %bb2 | ||
|
||
bb1: | ||
ret i8 100 | ||
|
||
bb2: | ||
ret i8 200 | ||
} | ||
|
||
declare i8 @bar(i8); | ||
|
||
; CHECK: rcall .-2 | ||
; CHECK-NEXT: 00000000: R_AVR_13_PCREL bar | ||
; CHECK-NEXT: cpi r24, 0x7b | ||
; CHECK-NEXT: brne .+4 | ||
; CHECK-NEXT: ldi r24, 0x64 | ||
; CHECK-NEXT: ret | ||
; CHECK-NEXT: ldi r24, 0xc8 | ||
; CHECK-NEXT: ret |
This file contains hidden or 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 hidden or 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 hidden or 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,28 @@ | ||
; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s | ||
; | ||
; RUN: llvm-mc -filetype=obj -triple avr < %s \ | ||
; RUN: | llvm-objdump -d - \ | ||
; RUN: | FileCheck --check-prefix=INST %s | ||
|
||
foo: | ||
brcc .+66 | ||
brcc .-22 | ||
brbc 0, .+66 | ||
brbc 0, bar | ||
|
||
bar: | ||
|
||
; CHECK: brcc (.Ltmp0+66)+2 ; encoding: [0bAAAAA000,0b111101AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp0+66)+2, kind: fixup_7_pcrel | ||
; CHECK: brcc (.Ltmp1-22)+2 ; encoding: [0bAAAAA000,0b111101AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp1-22)+2, kind: fixup_7_pcrel | ||
; CHECK: brcc (.Ltmp2+66)+2 ; encoding: [0bAAAAA000,0b111101AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp2+66)+2, kind: fixup_7_pcrel | ||
; CHECK: brcc bar ; encoding: [0bAAAAA000,0b111101AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: bar, kind: fixup_7_pcrel | ||
|
||
; INST-LABEL: <foo>: | ||
; INST-NEXT: 08 f5 brsh .+66 | ||
; INST-NEXT: a8 f7 brsh .-22 | ||
; INST-NEXT: 08 f5 brsh .+66 | ||
; INST-NEXT: 00 f4 brsh .+0 |
This file contains hidden or 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,28 @@ | ||
; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s | ||
; | ||
; RUN: llvm-mc -filetype=obj -triple avr < %s \ | ||
; RUN: | llvm-objdump -d - \ | ||
; RUN: | FileCheck --check-prefix=INST %s | ||
|
||
foo: | ||
brcs .+8 | ||
brcs .+4 | ||
brbs 0, .+8 | ||
brbs 0, bar | ||
|
||
bar: | ||
|
||
; CHECK: brcs (.Ltmp0+8)+2 ; encoding: [0bAAAAA000,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp0+8)+2, kind: fixup_7_pcrel | ||
; CHECK: brcs (.Ltmp1+4)+2 ; encoding: [0bAAAAA000,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp1+4)+2, kind: fixup_7_pcrel | ||
; CHECK: brcs (.Ltmp2+8)+2 ; encoding: [0bAAAAA000,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp2+8)+2, kind: fixup_7_pcrel | ||
; CHECK: brcs bar ; encoding: [0bAAAAA000,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: bar, kind: fixup_7_pcrel | ||
|
||
; INST-LABEL: <foo>: | ||
; INST-NEXT: 20 f0 brlo .+8 | ||
; INST-NEXT: 10 f0 brlo .+4 | ||
; INST-NEXT: 20 f0 brlo .+8 | ||
; INST-NEXT: 00 f0 brlo .+0 |
This file contains hidden or 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,28 @@ | ||
; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s | ||
; | ||
; RUN: llvm-mc -filetype=obj -triple avr < %s \ | ||
; RUN: | llvm-objdump -d - \ | ||
; RUN: | FileCheck --check-prefix=INST %s | ||
|
||
foo: | ||
breq .-18 | ||
breq .-12 | ||
brbs 1, .-18 | ||
brbs 1, bar | ||
|
||
bar: | ||
|
||
; CHECK: breq (.Ltmp0-18)+2 ; encoding: [0bAAAAA001,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp0-18)+2, kind: fixup_7_pcrel | ||
; CHECK: breq (.Ltmp1-12)+2 ; encoding: [0bAAAAA001,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp1-12)+2, kind: fixup_7_pcrel | ||
; CHECK: brbs 1, (.Ltmp2-18)+2 ; encoding: [0bAAAAA001,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp2-18)+2, kind: fixup_7_pcrel | ||
; CHECK: brbs 1, bar ; encoding: [0bAAAAA001,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: bar, kind: fixup_7_pcrel | ||
|
||
; INST-LABEL: <foo>: | ||
; INST-NEXT: b9 f3 breq .-18 | ||
; INST-NEXT: d1 f3 breq .-12 | ||
; INST-NEXT: b9 f3 breq .-18 | ||
; INST-NEXT: 01 f0 breq .+0 |
This file contains hidden or 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,24 @@ | ||
; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s | ||
; | ||
; RUN: llvm-mc -filetype=obj -triple avr < %s \ | ||
; RUN: | llvm-objdump -d - \ | ||
; RUN: | FileCheck --check-prefix=INST %s | ||
|
||
foo: | ||
brge .+50 | ||
brge .+42 | ||
brge bar | ||
|
||
bar: | ||
|
||
; CHECK: brge (.Ltmp0+50)+2 ; encoding: [0bAAAAA100,0b111101AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp0+50)+2, kind: fixup_7_pcrel | ||
; CHECK: brge (.Ltmp1+42)+2 ; encoding: [0bAAAAA100,0b111101AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp1+42)+2, kind: fixup_7_pcrel | ||
; CHECK: brge bar ; encoding: [0bAAAAA100,0b111101AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: bar, kind: fixup_7_pcrel | ||
|
||
; INST-LABEL: <foo>: | ||
; INST-NEXT: cc f4 brge .+50 | ||
; INST-NEXT: ac f4 brge .+42 | ||
; INST-NEXT: 04 f4 brge .+0 |
This file contains hidden or 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,24 @@ | ||
; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s | ||
; | ||
; RUN: llvm-mc -filetype=obj -triple avr < %s \ | ||
; RUN: | llvm-objdump -d - \ | ||
; RUN: | FileCheck --check-prefix=INST %s | ||
|
||
foo: | ||
brhc .+12 | ||
brhc .+14 | ||
brhc bar | ||
|
||
bar: | ||
|
||
; CHECK: brhc (.Ltmp0+12)+2 ; encoding: [0bAAAAA101,0b111101AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp0+12)+2, kind: fixup_7_pcrel | ||
; CHECK: brhc (.Ltmp1+14)+2 ; encoding: [0bAAAAA101,0b111101AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp1+14)+2, kind: fixup_7_pcrel | ||
; CHECK: brhc bar ; encoding: [0bAAAAA101,0b111101AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: bar, kind: fixup_7_pcrel | ||
|
||
; INST-LABEL: <foo>: | ||
; INST-NEXT: 35 f4 brhc .+12 | ||
; INST-NEXT: 3d f4 brhc .+14 | ||
; INST-NEXT: 05 f4 brhc .+0 |
This file contains hidden or 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,24 @@ | ||
; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s | ||
; | ||
; RUN: llvm-mc -filetype=obj -triple avr < %s \ | ||
; RUN: | llvm-objdump -d - \ | ||
; RUN: | FileCheck --check-prefix=INST %s | ||
|
||
foo: | ||
brhs .-66 | ||
brhs .+14 | ||
brhs bar | ||
|
||
bar: | ||
|
||
; CHECK: brhs (.Ltmp0-66)+2 ; encoding: [0bAAAAA101,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp0-66)+2, kind: fixup_7_pcrel | ||
; CHECK: brhs (.Ltmp1+14)+2 ; encoding: [0bAAAAA101,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp1+14)+2, kind: fixup_7_pcrel | ||
; CHECK: brhs bar ; encoding: [0bAAAAA101,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: bar, kind: fixup_7_pcrel | ||
|
||
; INST-LABEL: <foo>: | ||
; INST-NEXT: fd f2 brhs .-66 | ||
; INST-NEXT: 3d f0 brhs .+14 | ||
; INST-NEXT: 05 f0 brhs .+0 |
This file contains hidden or 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,24 @@ | ||
; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s | ||
; | ||
; RUN: llvm-mc -filetype=obj -triple avr < %s \ | ||
; RUN: | llvm-objdump -d - \ | ||
; RUN: | FileCheck --check-prefix=INST %s | ||
|
||
foo: | ||
brid .+42 | ||
brid .+62 | ||
brid bar | ||
|
||
bar: | ||
|
||
; CHECK: brid (.Ltmp0+42)+2 ; encoding: [0bAAAAA111,0b111101AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp0+42)+2, kind: fixup_7_pcrel | ||
; CHECK: brid (.Ltmp1+62)+2 ; encoding: [0bAAAAA111,0b111101AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp1+62)+2, kind: fixup_7_pcrel | ||
; CHECK: brid bar ; encoding: [0bAAAAA111,0b111101AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: bar, kind: fixup_7_pcrel | ||
|
||
; INST-LABEL: <foo>: | ||
; INST-NEXT: af f4 brid .+42 | ||
; INST-NEXT: ff f4 brid .+62 | ||
; INST-NEXT: 07 f4 brid .+0 |
This file contains hidden or 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,24 @@ | ||
; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s | ||
; | ||
; RUN: llvm-mc -filetype=obj -triple avr < %s \ | ||
; RUN: | llvm-objdump -d - \ | ||
; RUN: | FileCheck --check-prefix=INST %s | ||
|
||
foo: | ||
brie .+20 | ||
brie .+40 | ||
brie bar | ||
|
||
bar: | ||
|
||
; CHECK: brie (.Ltmp0+20)+2 ; encoding: [0bAAAAA111,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp0+20)+2, kind: fixup_7_pcrel | ||
; CHECK: brie (.Ltmp1+40)+2 ; encoding: [0bAAAAA111,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: (.Ltmp1+40)+2, kind: fixup_7_pcrel | ||
; CHECK: brie bar ; encoding: [0bAAAAA111,0b111100AA] | ||
; CHECK-NEXT: ; fixup A - offset: 0, value: bar, kind: fixup_7_pcrel | ||
|
||
; INST-LABEL: <foo>: | ||
; INST-NEXT: 57 f0 brie .+20 | ||
; INST-NEXT: a7 f0 brie .+40 | ||
; INST-NEXT: 07 f0 brie .+0 |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having so many instructions could be a maintenance problem.
For other targets we typically pack tests of the same instruction format.
llvm/test/MC/M68k/ and llvm/test/MC/LoongArch/ are good examples.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, thanks - I'll take a look!