forked from llvm-mirror/llvm
-
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.
[SystemZ, AsmParser] Enable the mnemonic spell corrector.
This enables the suggestions of other mnemonics when invalid ones are specified. Review: Ulrich Weigand git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@308280 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
2 changed files
with
79 additions
and
2 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,66 @@ | ||
# RUN: not llvm-mc -triple=systemz -mcpu=z13 -show-encoding < %s 2>&1 | FileCheck %s | ||
# RUN: not llvm-mc -triple=systemz -mcpu=zEC12 -show-encoding < %s 2>&1 | FileCheck %s --check-prefix=CHECK-ZEC12 | ||
|
||
# This tests the mnemonic spell checker. | ||
|
||
# First check what happens when an instruction is omitted: | ||
|
||
%r1, %r2, %r3 | ||
|
||
# CHECK: error: unexpected token at start of statement | ||
# CHECK-NEXT: %r1, %r2, %r3 | ||
# CHECK-NEXT: ^ | ||
|
||
# We don't want to see a suggestion here; the edit distance is too large to | ||
# give sensible suggestions: | ||
|
||
aaaaaaaaaaaaaaa %r1, %r2, %r3 | ||
|
||
# CHECK: error: invalid instruction | ||
# CHECK-NEXT: aaaaaaaaaaaaaaa %r1, %r2, %r3 | ||
# CHECK-NEXT: ^ | ||
|
||
# Check that we get one suggestion: 'cpdt' is 1 edit away, i.e. an deletion. | ||
|
||
cpdtX %r1, 0(4, %r15), 0 | ||
|
||
#CHECK: error: invalid instruction, did you mean: cpdt | ||
#CHECK-NEXT: cpdtX %r1, 0(4, %r15), 0 | ||
#CHECK-NEXT: ^ | ||
|
||
# Check edit distance 1 and 2 | ||
|
||
ltTr %r1, %r2 | ||
|
||
# CHECK: error: invalid instruction, did you mean: lr, lt, ltdr, ltdtr, lter, ltgr, ltr, ltxr, ltxtr, tr, trtr? | ||
# CHECK-NEXT: ltTr %r1, %r2 | ||
# CHECK-NEXT: ^ | ||
|
||
# Check edit distance 1 and 2, just insertions: | ||
|
||
begin 0, 65292 | ||
|
||
# CHECK: error: invalid instruction, did you mean: tbegin, tbeginc? | ||
# CHECK-NEXT: begin 0, 65292 | ||
# CHECK-NEXT: ^ | ||
|
||
# Check an instruction that is 2 edits away, and also has a lot of candidates: | ||
|
||
adt %r1, 244(%r15) | ||
|
||
# CHECK: error: invalid instruction, did you mean: a, ad, adb, adr, adtr, adtra, d, lat, mad, qadtr? | ||
# CHECK-NEXT: adt %r1, 244(%r15) | ||
# CHECK-NEXT: ^ | ||
|
||
# Here it is checked that we don't suggest instructions that are not supported. | ||
# For example, in pre-z13 mode we don't want to see suggestions for vector instructions. | ||
|
||
vlvggp %v1, %r2, %r3 | ||
|
||
# CHECK-ZEC12: error: invalid instruction | ||
# CHECK-ZEC12: vlvggp | ||
# CHECK-ZEC12: ^ | ||
|
||
# CHECK: error: invalid instruction, did you mean: vlvg, vlvgg, vlvgp? | ||
# CHECK-NEXT: vlvggp %v1, %r2, %r3 | ||
# CHECK-NEXT: ^ |