Coverage Report

Created: 2025-11-16 07:15

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/keystone/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp
Line
Count
Source
1
//===-- SystemZMCAsmInfo.cpp - SystemZ asm properties ---------------------===//
2
//
3
//                     The LLVM Compiler Infrastructure
4
//
5
// This file is distributed under the University of Illinois Open Source
6
// License. See LICENSE.TXT for details.
7
//
8
//===----------------------------------------------------------------------===//
9
10
#include "SystemZMCAsmInfo.h"
11
#include "llvm/MC/MCContext.h"
12
#include "llvm/MC/MCSectionELF.h"
13
14
using namespace llvm_ks;
15
16
45
SystemZMCAsmInfo::SystemZMCAsmInfo(const Triple &TT) {
17
45
  PointerSize = 8;
18
45
  CalleeSaveStackSlotSize = 8;
19
45
  IsLittleEndian = false;
20
21
45
  CommentString = "#";
22
45
  ZeroDirective = "\t.space\t";
23
45
  Data64bitsDirective = "\t.quad\t";
24
45
  UsesELFSectionDirectiveForBSS = true;
25
45
  SupportsDebugInformation = true;
26
45
  ExceptionsType = ExceptionHandling::DwarfCFI;
27
28
45
  UseIntegratedAssembler = true;
29
45
}