- This patch adds in support to determine whether a particular label is valid for the hlasm variant - The label syntax being checked is that of an ordinary HLASM symbol (Reference, Chapter 2 (Coding and Structure) - Terms, Literals and Expressions - Terms - Symbols - Ordinary Symbol) - To achieve this, the virtual function isLabel defined in MCTargetAsmParser.h is made use of - The isLabel function is overridden in SystemZAsmParser for the hlasm variant, and the syntax is checked appropriately - Things remain unchanged for the att variant - Further patches will add in support to emit the label. These future patches will make use of this isLabel function Reviewed By: uweigand, Kai Differential Revision: https://reviews.llvm.org/D97748
31 lines
920 B
C++
31 lines
920 B
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 = "#";
|
|
ZeroDirective = "\t.space\t";
|
|
Data64bitsDirective = "\t.quad\t";
|
|
UsesELFSectionDirectiveForBSS = true;
|
|
SupportsDebugInformation = true;
|
|
ExceptionsType = ExceptionHandling::DwarfCFI;
|
|
}
|