BPFMCAsmInfo.h revision f3ef5332fa3f4d5ec72c178a2b19dac363a19383
1//===-- BPFMCAsmInfo.h - BPF asm properties -------------------*- C++ -*--====//
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// This file contains the declaration of the BPFMCAsmInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_TARGET_BPF_MCTARGETDESC_BPFMCASMINFO_H
15#define LLVM_LIB_TARGET_BPF_MCTARGETDESC_BPFMCASMINFO_H
16
17#include "llvm/ADT/StringRef.h"
18#include "llvm/MC/MCAsmInfo.h"
19#include "llvm/ADT/Triple.h"
20
21namespace llvm {
22class Target;
23class Triple;
24
25class BPFMCAsmInfo : public MCAsmInfo {
26public:
27  explicit BPFMCAsmInfo(const Triple &TT) {
28    if (TT.getArch() == Triple::bpfeb)
29      IsLittleEndian = false;
30
31    PrivateGlobalPrefix = ".L";
32    WeakRefDirective = "\t.weak\t";
33
34    UsesELFSectionDirectiveForBSS = true;
35    HasSingleParameterDotFile = false;
36    HasDotTypeDotSizeDirective = false;
37
38    SupportsDebugInformation = true;
39  }
40};
41}
42
43#endif
44