~louis/ubuntu/trusty/clamav/lp799623_fix_logrotate

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/lib/Target/X86/X86MCAsmInfo.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-03-12 11:30:04 UTC
  • mfrom: (0.41.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100312113004-b0fop4bkycszdd0z
Tags: 0.96~rc1+dfsg-0ubuntu1
* New upstream RC - FFE (LP: #537636):
  - Add OfficialDatabaseOnly option to clamav-base.postinst.in
  - Add LocalSocketGroup option to clamav-base.postinst.in
  - Add LocalSocketMode option to clamav-base.postinst.in
  - Add CrossFilesystems option to clamav-base.postinst.in
  - Add ClamukoScannerCount option to clamav-base.postinst.in
  - Add BytecodeSecurity opiton to clamav-base.postinst.in
  - Add DetectionStatsHostID option to clamav-freshclam.postinst.in
  - Add Bytecode option to clamav-freshclam.postinst.in
  - Add MilterSocketGroup option to clamav-milter.postinst.in
  - Add MilterSocketMode option to clamav-milter.postinst.in
  - Add ReportHostname option to clamav-milter.postinst.in
  - Bump libclamav SO version to 6.1.0 in libclamav6.install
  - Drop clamdmon from clamav.examples (no longer shipped by upstream)
  - Drop libclamav.a from libclamav-dev.install (not built by upstream)
  - Update SO version for lintian override for libclamav6
  - Add new Bytecode Testing Tool, usr/bin/clambc, to clamav.install
  - Add build-depends on python and python-setuptools for new test suite
  - Update debian/copyright for the embedded copy of llvm (using the system
    llvm is not currently feasible)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//===-- X86MCAsmInfo.cpp - X86 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
// This file contains the declarations of the X86MCAsmInfo properties.
 
11
//
 
12
//===----------------------------------------------------------------------===//
 
13
 
 
14
#include "X86MCAsmInfo.h"
 
15
#include "X86TargetMachine.h"
 
16
#include "llvm/ADT/Triple.h"
 
17
#include "llvm/MC/MCSectionELF.h"
 
18
#include "llvm/Support/CommandLine.h"
 
19
using namespace llvm;
 
20
 
 
21
enum AsmWriterFlavorTy {
 
22
  // Note: This numbering has to match the GCC assembler dialects for inline
 
23
  // asm alternatives to work right.
 
24
  ATT = 0, Intel = 1
 
25
};
 
26
 
 
27
static cl::opt<AsmWriterFlavorTy>
 
28
AsmWriterFlavor("x86-asm-syntax", cl::init(ATT),
 
29
  cl::desc("Choose style of code to emit from X86 backend:"),
 
30
  cl::values(clEnumValN(ATT,   "att",   "Emit AT&T-style assembly"),
 
31
             clEnumValN(Intel, "intel", "Emit Intel-style assembly"),
 
32
             clEnumValEnd));
 
33
 
 
34
 
 
35
static const char *const x86_asm_table[] = {
 
36
  "{si}", "S",
 
37
  "{di}", "D",
 
38
  "{ax}", "a",
 
39
  "{cx}", "c",
 
40
  "{memory}", "memory",
 
41
  "{flags}", "",
 
42
  "{dirflag}", "",
 
43
  "{fpsr}", "",
 
44
  "{cc}", "cc",
 
45
  0,0};
 
46
 
 
47
X86MCAsmInfoDarwin::X86MCAsmInfoDarwin(const Triple &Triple) {
 
48
  AsmTransCBE = x86_asm_table;
 
49
  AssemblerDialect = AsmWriterFlavor;
 
50
    
 
51
  bool is64Bit = Triple.getArch() == Triple::x86_64;
 
52
 
 
53
  TextAlignFillValue = 0x90;
 
54
 
 
55
  if (!is64Bit)
 
56
    Data64bitsDirective = 0;       // we can't emit a 64-bit unit
 
57
 
 
58
  // Use ## as a comment string so that .s files generated by llvm can go
 
59
  // through the GCC preprocessor without causing an error.  This is needed
 
60
  // because "clang foo.s" runs the C preprocessor, which is usually reserved
 
61
  // for .S files on other systems.  Perhaps this is because the file system
 
62
  // wasn't always case preserving or something.
 
63
  CommentString = "##";
 
64
  PCSymbol = ".";
 
65
 
 
66
  SupportsDebugInformation = true;
 
67
  DwarfUsesInlineInfoSection = true;
 
68
 
 
69
  // Exceptions handling
 
70
  ExceptionsType = ExceptionHandling::Dwarf;
 
71
  AbsoluteEHSectionOffsets = false;
 
72
}
 
73
 
 
74
X86ELFMCAsmInfo::X86ELFMCAsmInfo(const Triple &Triple) {
 
75
  AsmTransCBE = x86_asm_table;
 
76
  AssemblerDialect = AsmWriterFlavor;
 
77
 
 
78
  TextAlignFillValue = 0x90;
 
79
 
 
80
  PrivateGlobalPrefix = ".L";
 
81
  WeakRefDirective = "\t.weak\t";
 
82
  PCSymbol = ".";
 
83
 
 
84
  // Set up DWARF directives
 
85
  HasLEB128 = true;  // Target asm supports leb128 directives (little-endian)
 
86
 
 
87
  // Debug Information
 
88
  AbsoluteDebugSectionOffsets = true;
 
89
  SupportsDebugInformation = true;
 
90
 
 
91
  // Exceptions handling
 
92
  ExceptionsType = ExceptionHandling::Dwarf;
 
93
  AbsoluteEHSectionOffsets = false;
 
94
}
 
95
 
 
96
MCSection *X86ELFMCAsmInfo::getNonexecutableStackSection(MCContext &Ctx) const {
 
97
  return MCSectionELF::Create(".note.GNU-stack", MCSectionELF::SHT_PROGBITS,
 
98
                              0, SectionKind::getMetadata(), false, Ctx);
 
99
}
 
100
 
 
101
X86MCAsmInfoCOFF::X86MCAsmInfoCOFF(const Triple &Triple) {
 
102
  AsmTransCBE = x86_asm_table;
 
103
  AssemblerDialect = AsmWriterFlavor;
 
104
 
 
105
  TextAlignFillValue = 0x90;
 
106
}