- This patch attempts to implement the location counter syntax (*) for the HLASM variant for PC-relative instructions.
- In the HLASM variant, for purely constant relocatable values, we expect a * token preceding it, with special support for " *" which is parsed as "<pc-rel-insn 0>"
- For combinations of absolute values and relocatable values, we don't expect the "*" preceding the token.
When you have a " * " what’s accepted is:
```
*<space>.*{.*} -> <pc-rel-insn> 0
*[+|-][constant-value] -> <pc-rel-insn> [+|-]constant-value
```
When you don’t have a " * " what’s accepted is:
```
brasl 1,func is allowed (MCSymbolRef type)
brasl 1,func+4 is allowed (MCBinary type)
brasl 1,4+func is allowed (MCBinary type)
brasl 1,-4+func is allowed (MCBinary type)
brasl 1,func-4 is allowed (MCBinary type)
brasl 1,*func is not allowed (* cannot be used for non-MCConstantExprs)
brasl 1,*+func is not allowed (* cannot be used for non-MCConstantExprs)
brasl 1,*+func+4 is not allowed (* cannot be used for non-MCConstantExprs)
brasl 1,*+4+func is not allowed (* cannot be used for non-MCConstantExprs)
brasl 1,*-4+8+func is not allowed (* cannot be used for non-MCConstantExprs)
```
Reviewed By: Kai
Differential Revision: https://reviews.llvm.org/D100987
39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
//===-- SystemZMCAsmInfo.cpp - SystemZ asm properties ---------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "SystemZMCAsmInfo.h"
|
|
#include "llvm/MC/MCContext.h"
|
|
#include "llvm/MC/MCSectionELF.h"
|
|
|
|
using namespace llvm;
|
|
|
|
SystemZMCAsmInfo::SystemZMCAsmInfo(const Triple &TT) {
|
|
CodePointerSize = 8;
|
|
CalleeSaveStackSlotSize = 8;
|
|
IsLittleEndian = false;
|
|
|
|
AssemblerDialect = TT.isOSzOS() ? AD_HLASM : AD_ATT;
|
|
|
|
MaxInstLength = 6;
|
|
|
|
CommentString = AssemblerDialect == AD_HLASM ? "*" : "#";
|
|
RestrictCommentStringToStartOfStatement = (AssemblerDialect == AD_HLASM);
|
|
AllowAdditionalComments = (AssemblerDialect == AD_ATT);
|
|
AllowAtAtStartOfIdentifier = (AssemblerDialect == AD_HLASM);
|
|
AllowDollarAtStartOfIdentifier = (AssemblerDialect == AD_HLASM);
|
|
AllowHashAtStartOfIdentifier = (AssemblerDialect == AD_HLASM);
|
|
DotIsPC = (AssemblerDialect == AD_ATT);
|
|
StarIsPC = (AssemblerDialect == AD_HLASM);
|
|
|
|
ZeroDirective = "\t.space\t";
|
|
Data64bitsDirective = "\t.quad\t";
|
|
UsesELFSectionDirectiveForBSS = true;
|
|
SupportsDebugInformation = true;
|
|
ExceptionsType = ExceptionHandling::DwarfCFI;
|
|
}
|