2009-06-23 20:24:17 +00:00
|
|
|
//===- MCContext.h - Machine Code Context -----------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_MC_MCCONTEXT_H
|
|
|
|
#define LLVM_MC_MCCONTEXT_H
|
|
|
|
|
2009-06-23 22:01:43 +00:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2014-06-19 15:52:37 +00:00
|
|
|
#include "llvm/ADT/SetVector.h"
|
2013-06-14 20:26:58 +00:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2013-03-12 20:17:00 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2009-06-23 22:01:43 +00:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
2012-12-03 17:02:12 +00:00
|
|
|
#include "llvm/MC/MCDwarf.h"
|
2014-06-19 15:52:37 +00:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2012-12-03 17:02:12 +00:00
|
|
|
#include "llvm/MC/SectionKind.h"
|
2009-06-23 22:01:43 +00:00
|
|
|
#include "llvm/Support/Allocator.h"
|
2012-01-26 23:20:11 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2010-06-28 21:45:58 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2013-03-07 01:42:00 +00:00
|
|
|
#include <map>
|
2014-06-27 17:19:44 +00:00
|
|
|
#include <tuple>
|
2010-07-28 20:55:35 +00:00
|
|
|
#include <vector> // FIXME: Shouldn't be needed.
|
2009-06-23 22:01:43 +00:00
|
|
|
|
2009-06-23 20:24:17 +00:00
|
|
|
namespace llvm {
|
2010-03-11 22:53:35 +00:00
|
|
|
class MCAsmInfo;
|
2009-10-16 01:33:11 +00:00
|
|
|
class MCExpr;
|
2009-06-23 20:24:17 +00:00
|
|
|
class MCSection;
|
|
|
|
class MCSymbol;
|
2010-05-17 23:08:19 +00:00
|
|
|
class MCLabel;
|
2014-03-13 18:21:24 +00:00
|
|
|
struct MCDwarfFile;
|
2010-08-24 20:32:42 +00:00
|
|
|
class MCDwarfLoc;
|
2011-07-20 05:58:47 +00:00
|
|
|
class MCObjectFileInfo;
|
2011-07-18 20:57:22 +00:00
|
|
|
class MCRegisterInfo;
|
2010-08-31 22:55:11 +00:00
|
|
|
class MCLineSection;
|
2012-03-26 06:58:25 +00:00
|
|
|
class SMLoc;
|
2009-07-27 21:22:30 +00:00
|
|
|
class StringRef;
|
2009-10-19 22:49:00 +00:00
|
|
|
class Twine;
|
2010-04-08 20:30:37 +00:00
|
|
|
class MCSectionMachO;
|
2010-11-10 19:05:07 +00:00
|
|
|
class MCSectionELF;
|
2013-07-06 12:13:10 +00:00
|
|
|
class MCSectionCOFF;
|
2009-06-23 20:24:17 +00:00
|
|
|
|
2009-08-13 00:21:53 +00:00
|
|
|
/// MCContext - Context object for machine code objects. This class owns all
|
|
|
|
/// of the sections that it creates.
|
|
|
|
///
|
2009-06-23 20:24:17 +00:00
|
|
|
class MCContext {
|
2012-08-29 06:28:46 +00:00
|
|
|
MCContext(const MCContext&) LLVM_DELETED_FUNCTION;
|
|
|
|
MCContext &operator=(const MCContext&) LLVM_DELETED_FUNCTION;
|
2011-06-15 18:33:28 +00:00
|
|
|
public:
|
|
|
|
typedef StringMap<MCSymbol*, BumpPtrAllocator&> SymbolTable;
|
|
|
|
private:
|
2012-01-26 23:20:05 +00:00
|
|
|
/// The SourceMgr for this object, if any.
|
|
|
|
const SourceMgr *SrcMgr;
|
2009-06-23 20:24:17 +00:00
|
|
|
|
2010-03-11 22:53:35 +00:00
|
|
|
/// The MCAsmInfo for this target.
|
2013-06-18 07:20:20 +00:00
|
|
|
const MCAsmInfo *MAI;
|
2009-06-23 22:01:43 +00:00
|
|
|
|
2011-07-18 20:57:22 +00:00
|
|
|
/// The MCRegisterInfo for this target.
|
2013-06-18 07:20:20 +00:00
|
|
|
const MCRegisterInfo *MRI;
|
2011-07-18 20:57:22 +00:00
|
|
|
|
2011-07-20 05:58:47 +00:00
|
|
|
/// The MCObjectFileInfo for this target.
|
|
|
|
const MCObjectFileInfo *MOFI;
|
|
|
|
|
2011-04-18 05:02:31 +00:00
|
|
|
/// Allocator - Allocator object used for creating machine code objects.
|
|
|
|
///
|
|
|
|
/// We use a bump pointer allocator to avoid the need to track all allocated
|
|
|
|
/// objects.
|
|
|
|
BumpPtrAllocator Allocator;
|
|
|
|
|
2009-06-23 22:01:43 +00:00
|
|
|
/// Symbols - Bindings of names to symbols.
|
2011-06-15 18:33:28 +00:00
|
|
|
SymbolTable Symbols;
|
2009-06-23 22:01:43 +00:00
|
|
|
|
2014-10-17 01:48:58 +00:00
|
|
|
/// ELF sections can have a corresponding symbol. This maps one to the
|
|
|
|
/// other.
|
|
|
|
DenseMap<const MCSectionELF*, MCSymbol*> SectionSymbols;
|
|
|
|
|
2014-03-13 18:09:26 +00:00
|
|
|
/// A maping from a local label number and an instance count to a symbol.
|
|
|
|
/// For example, in the assembly
|
|
|
|
/// 1:
|
|
|
|
/// 2:
|
|
|
|
/// 1:
|
|
|
|
/// We have three labels represented by the pairs (1, 0), (2, 0) and (1, 1)
|
|
|
|
DenseMap<std::pair<unsigned, unsigned>, MCSymbol*> LocalSymbols;
|
|
|
|
|
2010-12-01 20:46:11 +00:00
|
|
|
/// UsedNames - Keeps tracks of names that were used both for used declared
|
|
|
|
/// and artificial symbols.
|
2011-04-18 05:02:31 +00:00
|
|
|
StringMap<bool, BumpPtrAllocator&> UsedNames;
|
2010-12-01 20:46:11 +00:00
|
|
|
|
2010-03-11 22:53:35 +00:00
|
|
|
/// NextUniqueID - The next ID to dole out to an unnamed assembler temporary
|
|
|
|
/// symbol.
|
|
|
|
unsigned NextUniqueID;
|
2010-05-17 23:08:19 +00:00
|
|
|
|
|
|
|
/// Instances of directional local labels.
|
|
|
|
DenseMap<unsigned, MCLabel *> Instances;
|
|
|
|
/// NextInstance() creates the next instance of the directional local label
|
|
|
|
/// for the LocalLabelVal and adds it to the map if needed.
|
2014-03-13 18:09:26 +00:00
|
|
|
unsigned NextInstance(unsigned LocalLabelVal);
|
2010-05-17 23:08:19 +00:00
|
|
|
/// GetInstance() gets the current instance of the directional local label
|
|
|
|
/// for the LocalLabelVal and adds it to the map if needed.
|
2014-03-13 18:09:26 +00:00
|
|
|
unsigned GetInstance(unsigned LocalLabelVal);
|
2010-11-26 04:16:08 +00:00
|
|
|
|
|
|
|
/// The file name of the log file from the environment variable
|
2010-06-28 21:45:58 +00:00
|
|
|
/// AS_SECURE_LOG_FILE. Which must be set before the .secure_log_unique
|
|
|
|
/// directive is used or it is an error.
|
|
|
|
char *SecureLogFile;
|
|
|
|
/// The stream that gets written to for the .secure_log_unique directive.
|
|
|
|
raw_ostream *SecureLog;
|
|
|
|
/// Boolean toggled when .secure_log_unique / .secure_log_reset is seen to
|
|
|
|
/// catch errors if .secure_log_unique appears twice without
|
|
|
|
/// .secure_log_reset appearing between them.
|
|
|
|
bool SecureLogUsed;
|
|
|
|
|
2012-12-17 21:32:42 +00:00
|
|
|
/// The compilation directory to use for DW_AT_comp_dir.
|
2013-06-14 20:26:58 +00:00
|
|
|
SmallString<128> CompilationDir;
|
2012-12-17 21:32:42 +00:00
|
|
|
|
2012-12-18 00:31:01 +00:00
|
|
|
/// The main file name if passed in explicitly.
|
|
|
|
std::string MainFileName;
|
|
|
|
|
2010-07-28 20:55:35 +00:00
|
|
|
/// The dwarf file and directory tables from the dwarf .file directive.
|
2013-03-07 01:42:00 +00:00
|
|
|
/// We now emit a line table for each compile unit. To reduce the prologue
|
|
|
|
/// size of each line table, the files and directories used by each compile
|
|
|
|
/// unit are separated.
|
2014-03-13 21:59:51 +00:00
|
|
|
std::map<unsigned, MCDwarfLineTable> MCDwarfLineTablesCUMap;
|
2010-07-28 20:55:35 +00:00
|
|
|
|
2010-08-24 20:32:42 +00:00
|
|
|
/// The current dwarf line information from the last dwarf .loc directive.
|
|
|
|
MCDwarfLoc CurrentDwarfLoc;
|
|
|
|
bool DwarfLocSeen;
|
|
|
|
|
2011-11-01 22:27:22 +00:00
|
|
|
/// Generate dwarf debugging info for assembly source files.
|
|
|
|
bool GenDwarfForAssembly;
|
|
|
|
|
|
|
|
/// The current dwarf file number when generate dwarf debugging info for
|
|
|
|
/// assembly source files.
|
|
|
|
unsigned GenDwarfFileNumber;
|
|
|
|
|
2014-06-19 15:52:37 +00:00
|
|
|
/// Symbols created for the start and end of each section, used for
|
|
|
|
/// generating the .debug_ranges and .debug_aranges sections.
|
|
|
|
MapVector<const MCSection *, std::pair<MCSymbol *, MCSymbol *> >
|
|
|
|
SectionStartEndSyms;
|
2011-12-09 18:09:40 +00:00
|
|
|
|
2012-01-10 21:12:34 +00:00
|
|
|
/// The information gathered from labels that will have dwarf label
|
2011-12-09 18:09:40 +00:00
|
|
|
/// entries when generating dwarf assembly source files.
|
2014-04-11 00:43:52 +00:00
|
|
|
std::vector<MCGenDwarfLabelEntry> MCGenDwarfLabelEntries;
|
2011-12-09 18:09:40 +00:00
|
|
|
|
|
|
|
/// The string to embed in the debug information for the compile unit, if
|
|
|
|
/// non-empty.
|
|
|
|
StringRef DwarfDebugFlags;
|
2011-11-01 22:27:22 +00:00
|
|
|
|
2013-01-16 17:46:23 +00:00
|
|
|
/// The string to embed in as the dwarf AT_producer for the compile unit, if
|
|
|
|
/// non-empty.
|
|
|
|
StringRef DwarfDebugProducer;
|
|
|
|
|
2014-05-01 08:46:02 +00:00
|
|
|
/// The maximum version of dwarf that we should emit.
|
|
|
|
uint16_t DwarfVersion;
|
|
|
|
|
2011-03-28 22:49:15 +00:00
|
|
|
/// Honor temporary labels, this is useful for debugging semantic
|
|
|
|
/// differences between temporary and non-temporary labels (primarily on
|
|
|
|
/// Darwin).
|
|
|
|
bool AllowTemporaryLabels;
|
|
|
|
|
2013-02-05 21:52:47 +00:00
|
|
|
/// The Compile Unit ID that we are currently processing.
|
|
|
|
unsigned DwarfCompileUnitID;
|
2010-08-31 22:55:11 +00:00
|
|
|
|
2014-04-10 23:55:11 +00:00
|
|
|
typedef std::pair<std::string, std::string> SectionGroupPair;
|
2014-06-27 17:19:44 +00:00
|
|
|
typedef std::tuple<std::string, std::string, int> SectionGroupTriple;
|
2014-04-10 23:55:11 +00:00
|
|
|
|
|
|
|
StringMap<const MCSectionMachO*> MachOUniquingMap;
|
|
|
|
std::map<SectionGroupPair, const MCSectionELF *> ELFUniquingMap;
|
2014-06-27 17:19:44 +00:00
|
|
|
std::map<SectionGroupTriple, const MCSectionCOFF *> COFFUniquingMap;
|
2010-12-01 20:46:11 +00:00
|
|
|
|
2012-12-12 22:59:46 +00:00
|
|
|
/// Do automatic reset in destructor
|
|
|
|
bool AutoReset;
|
2012-12-06 22:12:44 +00:00
|
|
|
|
2010-12-01 20:46:11 +00:00
|
|
|
MCSymbol *CreateSymbol(StringRef Name);
|
|
|
|
|
2014-03-13 18:09:26 +00:00
|
|
|
MCSymbol *getOrCreateDirectionalLocalSymbol(unsigned LocalLabelVal,
|
|
|
|
unsigned Instance);
|
|
|
|
|
2009-06-23 20:24:17 +00:00
|
|
|
public:
|
2013-06-18 07:20:20 +00:00
|
|
|
explicit MCContext(const MCAsmInfo *MAI, const MCRegisterInfo *MRI,
|
2014-04-13 04:57:38 +00:00
|
|
|
const MCObjectFileInfo *MOFI,
|
|
|
|
const SourceMgr *Mgr = nullptr, bool DoAutoReset = true);
|
2009-06-23 20:24:17 +00:00
|
|
|
~MCContext();
|
2010-11-26 04:16:08 +00:00
|
|
|
|
2012-01-26 23:20:05 +00:00
|
|
|
const SourceMgr *getSourceManager() const { return SrcMgr; }
|
|
|
|
|
2013-06-18 07:20:20 +00:00
|
|
|
const MCAsmInfo *getAsmInfo() const { return MAI; }
|
2009-08-31 08:07:08 +00:00
|
|
|
|
2013-06-18 07:20:20 +00:00
|
|
|
const MCRegisterInfo *getRegisterInfo() const { return MRI; }
|
2011-07-18 20:57:22 +00:00
|
|
|
|
2011-07-20 05:58:47 +00:00
|
|
|
const MCObjectFileInfo *getObjectFileInfo() const { return MOFI; }
|
|
|
|
|
2011-03-28 22:49:15 +00:00
|
|
|
void setAllowTemporaryLabels(bool Value) { AllowTemporaryLabels = Value; }
|
|
|
|
|
2012-12-06 22:12:44 +00:00
|
|
|
/// @name Module Lifetime Management
|
|
|
|
/// @{
|
|
|
|
|
2012-12-12 22:59:46 +00:00
|
|
|
/// reset - return object to right after construction state to prepare
|
|
|
|
/// to process a new module
|
|
|
|
void reset();
|
2012-12-06 22:12:44 +00:00
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
2010-11-26 04:16:08 +00:00
|
|
|
/// @name Symbol Management
|
2009-08-31 08:07:08 +00:00
|
|
|
/// @{
|
2010-11-26 04:16:08 +00:00
|
|
|
|
2014-03-29 07:05:06 +00:00
|
|
|
/// CreateLinkerPrivateTempSymbol - Create and return a new linker temporary
|
|
|
|
/// symbol with a unique but unspecified name.
|
|
|
|
MCSymbol *CreateLinkerPrivateTempSymbol();
|
|
|
|
|
2010-03-14 08:23:30 +00:00
|
|
|
/// CreateTempSymbol - Create and return a new assembler temporary symbol
|
|
|
|
/// with a unique but unspecified name.
|
|
|
|
MCSymbol *CreateTempSymbol();
|
2009-08-31 08:07:08 +00:00
|
|
|
|
2012-05-18 19:12:01 +00:00
|
|
|
/// getUniqueSymbolID() - Return a unique identifier for use in constructing
|
|
|
|
/// symbol names.
|
|
|
|
unsigned getUniqueSymbolID() { return NextUniqueID++; }
|
|
|
|
|
2014-03-13 18:09:26 +00:00
|
|
|
/// Create the definition of a directional local symbol for numbered label
|
|
|
|
/// (used for "1:" definitions).
|
|
|
|
MCSymbol *CreateDirectionalLocalSymbol(unsigned LocalLabelVal);
|
2010-05-17 23:08:19 +00:00
|
|
|
|
2014-03-13 18:09:26 +00:00
|
|
|
/// Create and return a directional local symbol for numbered label (used
|
|
|
|
/// for "1b" or 1f" references).
|
|
|
|
MCSymbol *GetDirectionalLocalSymbol(unsigned LocalLabelVal, bool Before);
|
2010-05-17 23:08:19 +00:00
|
|
|
|
2009-06-24 04:31:49 +00:00
|
|
|
/// GetOrCreateSymbol - Lookup the symbol inside with the specified
|
2010-02-22 04:10:52 +00:00
|
|
|
/// @p Name. If it exists, return it. If not, create a forward
|
2009-06-24 04:31:49 +00:00
|
|
|
/// reference and return it.
|
|
|
|
///
|
|
|
|
/// @param Name - The symbol name, which must be unique across all symbols.
|
2010-03-30 18:10:53 +00:00
|
|
|
MCSymbol *GetOrCreateSymbol(StringRef Name);
|
|
|
|
MCSymbol *GetOrCreateSymbol(const Twine &Name);
|
2009-06-23 22:01:43 +00:00
|
|
|
|
2014-10-17 01:48:58 +00:00
|
|
|
MCSymbol *getOrCreateSectionSymbol(const MCSectionELF &Section);
|
|
|
|
|
2010-02-22 04:10:52 +00:00
|
|
|
/// LookupSymbol - Get the symbol for \p Name, or null.
|
2009-11-06 10:58:06 +00:00
|
|
|
MCSymbol *LookupSymbol(StringRef Name) const;
|
2012-09-18 17:10:37 +00:00
|
|
|
MCSymbol *LookupSymbol(const Twine &Name) const;
|
2009-06-23 20:24:17 +00:00
|
|
|
|
2011-06-15 18:33:28 +00:00
|
|
|
/// getSymbols - Get a reference for the symbol table for clients that
|
|
|
|
/// want to, for example, iterate over all symbols. 'const' because we
|
|
|
|
/// still want any modifications to the table itself to use the MCContext
|
|
|
|
/// APIs.
|
|
|
|
const SymbolTable &getSymbols() const {
|
|
|
|
return Symbols;
|
|
|
|
}
|
|
|
|
|
2009-08-31 08:07:08 +00:00
|
|
|
/// @}
|
2010-11-26 04:16:08 +00:00
|
|
|
|
|
|
|
/// @name Section Management
|
2010-04-08 20:30:37 +00:00
|
|
|
/// @{
|
|
|
|
|
2010-04-08 20:40:11 +00:00
|
|
|
/// getMachOSection - Return the MCSection for the specified mach-o section.
|
|
|
|
/// This requires the operands to be valid.
|
2010-04-08 20:30:37 +00:00
|
|
|
const MCSectionMachO *getMachOSection(StringRef Segment,
|
|
|
|
StringRef Section,
|
|
|
|
unsigned TypeAndAttributes,
|
|
|
|
unsigned Reserved2,
|
|
|
|
SectionKind K);
|
2010-04-08 20:40:11 +00:00
|
|
|
const MCSectionMachO *getMachOSection(StringRef Segment,
|
|
|
|
StringRef Section,
|
|
|
|
unsigned TypeAndAttributes,
|
|
|
|
SectionKind K) {
|
|
|
|
return getMachOSection(Segment, Section, TypeAndAttributes, 0, K);
|
|
|
|
}
|
2010-11-11 18:13:52 +00:00
|
|
|
|
|
|
|
const MCSectionELF *getELFSection(StringRef Section, unsigned Type,
|
|
|
|
unsigned Flags, SectionKind Kind);
|
|
|
|
|
2010-11-10 19:05:07 +00:00
|
|
|
const MCSectionELF *getELFSection(StringRef Section, unsigned Type,
|
|
|
|
unsigned Flags, SectionKind Kind,
|
2010-11-11 18:13:52 +00:00
|
|
|
unsigned EntrySize, StringRef Group);
|
|
|
|
|
2014-04-10 21:53:53 +00:00
|
|
|
void renameELFSection(const MCSectionELF *Section, StringRef Name);
|
|
|
|
|
2010-11-11 18:13:52 +00:00
|
|
|
const MCSectionELF *CreateELFGroupSection();
|
2010-05-07 17:17:41 +00:00
|
|
|
|
2013-07-06 12:13:10 +00:00
|
|
|
const MCSectionCOFF *getCOFFSection(StringRef Section,
|
|
|
|
unsigned Characteristics,
|
2013-11-19 19:52:52 +00:00
|
|
|
SectionKind Kind,
|
2014-06-06 19:26:12 +00:00
|
|
|
StringRef COMDATSymName, int Selection);
|
2010-05-07 21:49:09 +00:00
|
|
|
|
2013-11-19 19:52:52 +00:00
|
|
|
const MCSectionCOFF *getCOFFSection(StringRef Section,
|
|
|
|
unsigned Characteristics,
|
|
|
|
SectionKind Kind);
|
|
|
|
|
2013-07-06 12:13:10 +00:00
|
|
|
const MCSectionCOFF *getCOFFSection(StringRef Section);
|
2010-11-26 04:16:08 +00:00
|
|
|
|
2014-09-04 17:42:03 +00:00
|
|
|
/// Gets or creates a section equivalent to Sec that is associated with the
|
|
|
|
/// section containing KeySym. For example, to create a debug info section
|
|
|
|
/// associated with an inline function, pass the normal debug info section
|
|
|
|
/// as Sec and the function symbol as KeySym.
|
|
|
|
const MCSectionCOFF *getAssociativeCOFFSection(const MCSectionCOFF *Sec,
|
|
|
|
const MCSymbol *KeySym);
|
|
|
|
|
2010-07-28 20:55:35 +00:00
|
|
|
/// @}
|
|
|
|
|
2010-11-26 04:16:08 +00:00
|
|
|
/// @name Dwarf Management
|
2010-07-28 20:55:35 +00:00
|
|
|
/// @{
|
|
|
|
|
2012-12-17 21:32:42 +00:00
|
|
|
/// \brief Get the compilation directory for DW_AT_comp_dir
|
|
|
|
/// This can be overridden by clients which want to control the reported
|
|
|
|
/// compilation directory and have it be something other than the current
|
|
|
|
/// working directory.
|
2013-12-10 04:39:09 +00:00
|
|
|
/// Returns an empty string if the current directory cannot be determined.
|
2013-06-14 20:26:58 +00:00
|
|
|
StringRef getCompilationDir() const { return CompilationDir; }
|
2012-12-17 21:32:42 +00:00
|
|
|
|
|
|
|
/// \brief Set the compilation directory for DW_AT_comp_dir
|
|
|
|
/// Override the default (CWD) compilation directory.
|
|
|
|
void setCompilationDir(StringRef S) { CompilationDir = S.str(); }
|
2012-12-18 00:31:01 +00:00
|
|
|
|
|
|
|
/// \brief Get the main file name for use in error messages and debug
|
|
|
|
/// info. This can be set to ensure we've got the correct file name
|
|
|
|
/// after preprocessing or for -save-temps.
|
|
|
|
const std::string &getMainFileName() const { return MainFileName; }
|
|
|
|
|
|
|
|
/// \brief Set the main file name and override the default.
|
2014-03-14 19:53:39 +00:00
|
|
|
void setMainFileName(StringRef S) { MainFileName = S; }
|
2012-12-17 21:32:42 +00:00
|
|
|
|
2010-07-28 20:55:35 +00:00
|
|
|
/// GetDwarfFile - creates an entry in the dwarf file and directory tables.
|
2011-10-17 23:05:28 +00:00
|
|
|
unsigned GetDwarfFile(StringRef Directory, StringRef FileName,
|
2013-03-07 01:42:00 +00:00
|
|
|
unsigned FileNumber, unsigned CUID);
|
2010-07-28 20:55:35 +00:00
|
|
|
|
2013-03-07 01:42:00 +00:00
|
|
|
bool isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID = 0);
|
2010-08-24 20:32:42 +00:00
|
|
|
|
2014-03-13 21:59:51 +00:00
|
|
|
const std::map<unsigned, MCDwarfLineTable> &getMCDwarfLineTables() const {
|
|
|
|
return MCDwarfLineTablesCUMap;
|
2014-03-13 17:55:28 +00:00
|
|
|
}
|
|
|
|
|
2014-03-13 21:59:51 +00:00
|
|
|
MCDwarfLineTable &getMCDwarfLineTable(unsigned CUID) {
|
|
|
|
return MCDwarfLineTablesCUMap[CUID];
|
2014-03-13 17:55:28 +00:00
|
|
|
}
|
|
|
|
|
2014-03-13 21:59:51 +00:00
|
|
|
const MCDwarfLineTable &getMCDwarfLineTable(unsigned CUID) const {
|
|
|
|
auto I = MCDwarfLineTablesCUMap.find(CUID);
|
|
|
|
assert(I != MCDwarfLineTablesCUMap.end());
|
2014-03-13 17:55:28 +00:00
|
|
|
return I->second;
|
|
|
|
}
|
|
|
|
|
2014-03-13 18:55:04 +00:00
|
|
|
const SmallVectorImpl<MCDwarfFile> &getMCDwarfFiles(unsigned CUID = 0) {
|
2014-03-13 21:59:51 +00:00
|
|
|
return getMCDwarfLineTable(CUID).getMCDwarfFiles();
|
2010-07-28 20:55:35 +00:00
|
|
|
}
|
2014-03-13 19:05:33 +00:00
|
|
|
const SmallVectorImpl<std::string> &getMCDwarfDirs(unsigned CUID = 0) {
|
2014-03-13 21:59:51 +00:00
|
|
|
return getMCDwarfLineTable(CUID).getMCDwarfDirs();
|
2010-08-09 22:52:14 +00:00
|
|
|
}
|
2010-11-19 07:41:23 +00:00
|
|
|
|
2014-03-13 17:55:28 +00:00
|
|
|
bool hasMCLineSections() const {
|
2014-03-13 21:59:51 +00:00
|
|
|
for (const auto &Table : MCDwarfLineTablesCUMap)
|
2014-03-13 17:55:28 +00:00
|
|
|
if (!Table.second.getMCDwarfFiles().empty() || Table.second.getLabel())
|
|
|
|
return true;
|
|
|
|
return false;
|
2010-11-19 07:41:23 +00:00
|
|
|
}
|
2013-02-05 21:52:47 +00:00
|
|
|
unsigned getDwarfCompileUnitID() {
|
|
|
|
return DwarfCompileUnitID;
|
|
|
|
}
|
|
|
|
void setDwarfCompileUnitID(unsigned CUIndex) {
|
|
|
|
DwarfCompileUnitID = CUIndex;
|
|
|
|
}
|
2014-03-17 23:29:40 +00:00
|
|
|
void setMCLineTableCompilationDir(unsigned CUID, StringRef CompilationDir) {
|
|
|
|
getMCDwarfLineTable(CUID).setCompilationDir(CompilationDir);
|
|
|
|
}
|
2010-07-28 20:55:35 +00:00
|
|
|
|
2010-08-24 20:32:42 +00:00
|
|
|
/// setCurrentDwarfLoc - saves the information from the currently parsed
|
2010-10-04 20:17:24 +00:00
|
|
|
/// dwarf .loc directive and sets DwarfLocSeen. When the next instruction
|
|
|
|
/// is assembled an entry in the line number table with this information and
|
2010-08-24 20:32:42 +00:00
|
|
|
/// the address of the instruction will be created.
|
|
|
|
void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column,
|
2010-11-13 03:18:27 +00:00
|
|
|
unsigned Flags, unsigned Isa,
|
|
|
|
unsigned Discriminator) {
|
2010-08-24 20:32:42 +00:00
|
|
|
CurrentDwarfLoc.setFileNum(FileNum);
|
|
|
|
CurrentDwarfLoc.setLine(Line);
|
|
|
|
CurrentDwarfLoc.setColumn(Column);
|
|
|
|
CurrentDwarfLoc.setFlags(Flags);
|
|
|
|
CurrentDwarfLoc.setIsa(Isa);
|
2010-11-13 03:18:27 +00:00
|
|
|
CurrentDwarfLoc.setDiscriminator(Discriminator);
|
2010-08-24 20:32:42 +00:00
|
|
|
DwarfLocSeen = true;
|
|
|
|
}
|
2010-10-04 20:17:24 +00:00
|
|
|
void ClearDwarfLocSeen() { DwarfLocSeen = false; }
|
2010-08-31 22:55:11 +00:00
|
|
|
|
|
|
|
bool getDwarfLocSeen() { return DwarfLocSeen; }
|
|
|
|
const MCDwarfLoc &getCurrentDwarfLoc() { return CurrentDwarfLoc; }
|
2010-08-24 20:32:42 +00:00
|
|
|
|
2011-11-01 22:27:22 +00:00
|
|
|
bool getGenDwarfForAssembly() { return GenDwarfForAssembly; }
|
|
|
|
void setGenDwarfForAssembly(bool Value) { GenDwarfForAssembly = Value; }
|
|
|
|
unsigned getGenDwarfFileNumber() { return GenDwarfFileNumber; }
|
2014-03-17 01:52:11 +00:00
|
|
|
void setGenDwarfFileNumber(unsigned FileNumber) {
|
|
|
|
GenDwarfFileNumber = FileNumber;
|
|
|
|
}
|
2014-06-19 15:52:37 +00:00
|
|
|
MapVector<const MCSection *, std::pair<MCSymbol *, MCSymbol *> > &
|
|
|
|
getGenDwarfSectionSyms() {
|
|
|
|
return SectionStartEndSyms;
|
2011-12-09 18:09:40 +00:00
|
|
|
}
|
2014-06-19 15:52:37 +00:00
|
|
|
std::pair<MapVector<const MCSection *,
|
|
|
|
std::pair<MCSymbol *, MCSymbol *> >::iterator,
|
|
|
|
bool>
|
|
|
|
addGenDwarfSection(const MCSection *Sec) {
|
|
|
|
return SectionStartEndSyms.insert(
|
|
|
|
std::make_pair(Sec, std::make_pair(nullptr, nullptr)));
|
2011-12-09 18:09:40 +00:00
|
|
|
}
|
2014-06-19 15:52:37 +00:00
|
|
|
void finalizeDwarfSections(MCStreamer &MCOS);
|
2014-04-11 00:43:52 +00:00
|
|
|
const std::vector<MCGenDwarfLabelEntry> &getMCGenDwarfLabelEntries() const {
|
2012-01-10 21:12:34 +00:00
|
|
|
return MCGenDwarfLabelEntries;
|
2011-12-09 18:09:40 +00:00
|
|
|
}
|
2014-04-11 00:43:52 +00:00
|
|
|
void addMCGenDwarfLabelEntry(const MCGenDwarfLabelEntry &E) {
|
2012-01-10 21:12:34 +00:00
|
|
|
MCGenDwarfLabelEntries.push_back(E);
|
2011-12-09 18:09:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void setDwarfDebugFlags(StringRef S) { DwarfDebugFlags = S; }
|
|
|
|
StringRef getDwarfDebugFlags() { return DwarfDebugFlags; }
|
2011-11-01 22:27:22 +00:00
|
|
|
|
2013-01-16 17:46:23 +00:00
|
|
|
void setDwarfDebugProducer(StringRef S) { DwarfDebugProducer = S; }
|
|
|
|
StringRef getDwarfDebugProducer() { return DwarfDebugProducer; }
|
|
|
|
|
2014-05-01 08:46:02 +00:00
|
|
|
void setDwarfVersion(uint16_t v) { DwarfVersion = v; }
|
|
|
|
uint16_t getDwarfVersion() const { return DwarfVersion; }
|
|
|
|
|
2010-04-08 20:30:37 +00:00
|
|
|
/// @}
|
2009-08-31 08:07:08 +00:00
|
|
|
|
2010-06-28 21:45:58 +00:00
|
|
|
char *getSecureLogFile() { return SecureLogFile; }
|
|
|
|
raw_ostream *getSecureLog() { return SecureLog; }
|
|
|
|
bool getSecureLogUsed() { return SecureLogUsed; }
|
|
|
|
void setSecureLog(raw_ostream *Value) {
|
|
|
|
SecureLog = Value;
|
|
|
|
}
|
|
|
|
void setSecureLogUsed(bool Value) {
|
|
|
|
SecureLogUsed = Value;
|
|
|
|
}
|
|
|
|
|
2009-06-23 22:01:43 +00:00
|
|
|
void *Allocate(unsigned Size, unsigned Align = 8) {
|
|
|
|
return Allocator.Allocate(Size, Align);
|
|
|
|
}
|
2009-10-16 01:33:11 +00:00
|
|
|
void Deallocate(void *Ptr) {
|
2009-06-23 22:01:43 +00:00
|
|
|
}
|
2012-01-26 23:20:11 +00:00
|
|
|
|
2013-10-22 15:18:03 +00:00
|
|
|
// Unrecoverable error has occurred. Display the best diagnostic we can
|
2012-01-26 23:20:11 +00:00
|
|
|
// and bail via exit(1). For now, most MC backend errors are unrecoverable.
|
|
|
|
// FIXME: We should really do something about that.
|
2014-04-22 21:42:18 +00:00
|
|
|
LLVM_ATTRIBUTE_NORETURN void FatalError(SMLoc L, const Twine &Msg) const;
|
2009-06-23 20:24:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
2009-06-23 22:01:43 +00:00
|
|
|
// operator new and delete aren't allowed inside namespaces.
|
|
|
|
// The throw specifications are mandated by the standard.
|
|
|
|
/// @brief Placement new for using the MCContext's allocator.
|
|
|
|
///
|
|
|
|
/// This placement form of operator new uses the MCContext's allocator for
|
|
|
|
/// obtaining memory. It is a non-throwing new, which means that it returns
|
|
|
|
/// null on error. (If that is what the allocator does. The current does, so if
|
|
|
|
/// this ever changes, this operator will have to be changed, too.)
|
|
|
|
/// Usage looks like this (assuming there's an MCContext 'Context' in scope):
|
|
|
|
/// @code
|
|
|
|
/// // Default alignment (16)
|
|
|
|
/// IntegerLiteral *Ex = new (Context) IntegerLiteral(arguments);
|
|
|
|
/// // Specific alignment
|
|
|
|
/// IntegerLiteral *Ex2 = new (Context, 8) IntegerLiteral(arguments);
|
|
|
|
/// @endcode
|
|
|
|
/// Please note that you cannot use delete on the pointer; it must be
|
|
|
|
/// deallocated using an explicit destructor call followed by
|
|
|
|
/// @c Context.Deallocate(Ptr).
|
|
|
|
///
|
|
|
|
/// @param Bytes The number of bytes to allocate. Calculated by the compiler.
|
|
|
|
/// @param C The MCContext that provides the allocator.
|
|
|
|
/// @param Alignment The alignment of the allocated memory (if the underlying
|
|
|
|
/// allocator supports it).
|
|
|
|
/// @return The allocated memory. Could be NULL.
|
|
|
|
inline void *operator new(size_t Bytes, llvm::MCContext &C,
|
2009-06-24 01:03:06 +00:00
|
|
|
size_t Alignment = 16) throw () {
|
2009-06-23 22:01:43 +00:00
|
|
|
return C.Allocate(Bytes, Alignment);
|
|
|
|
}
|
|
|
|
/// @brief Placement delete companion to the new above.
|
|
|
|
///
|
|
|
|
/// This operator is just a companion to the new above. There is no way of
|
|
|
|
/// invoking it directly; see the new operator for more details. This operator
|
|
|
|
/// is called implicitly by the compiler if a placement new expression using
|
|
|
|
/// the MCContext throws in the object constructor.
|
|
|
|
inline void operator delete(void *Ptr, llvm::MCContext &C, size_t)
|
|
|
|
throw () {
|
|
|
|
C.Deallocate(Ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This placement form of operator new[] uses the MCContext's allocator for
|
|
|
|
/// obtaining memory. It is a non-throwing new[], which means that it returns
|
|
|
|
/// null on error.
|
|
|
|
/// Usage looks like this (assuming there's an MCContext 'Context' in scope):
|
|
|
|
/// @code
|
|
|
|
/// // Default alignment (16)
|
|
|
|
/// char *data = new (Context) char[10];
|
|
|
|
/// // Specific alignment
|
|
|
|
/// char *data = new (Context, 8) char[10];
|
|
|
|
/// @endcode
|
|
|
|
/// Please note that you cannot use delete on the pointer; it must be
|
|
|
|
/// deallocated using an explicit destructor call followed by
|
|
|
|
/// @c Context.Deallocate(Ptr).
|
|
|
|
///
|
|
|
|
/// @param Bytes The number of bytes to allocate. Calculated by the compiler.
|
|
|
|
/// @param C The MCContext that provides the allocator.
|
|
|
|
/// @param Alignment The alignment of the allocated memory (if the underlying
|
|
|
|
/// allocator supports it).
|
|
|
|
/// @return The allocated memory. Could be NULL.
|
|
|
|
inline void *operator new[](size_t Bytes, llvm::MCContext& C,
|
|
|
|
size_t Alignment = 16) throw () {
|
|
|
|
return C.Allocate(Bytes, Alignment);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @brief Placement delete[] companion to the new[] above.
|
|
|
|
///
|
|
|
|
/// This operator is just a companion to the new[] above. There is no way of
|
|
|
|
/// invoking it directly; see the new[] operator for more details. This operator
|
|
|
|
/// is called implicitly by the compiler if a placement new[] expression using
|
|
|
|
/// the MCContext throws in the object constructor.
|
|
|
|
inline void operator delete[](void *Ptr, llvm::MCContext &C) throw () {
|
|
|
|
C.Deallocate(Ptr);
|
|
|
|
}
|
|
|
|
|
2009-06-23 20:24:17 +00:00
|
|
|
#endif
|