HomeSort by: relevance | last modified time | path
    Searched defs:MCRelocationInfo (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCDisassembler/
MCRelocationInfo.h 1 //===- llvm/MC/MCRelocationInfo.h -------------------------------*- C++ -*-===//
9 // This file declares the MCRelocationInfo class, which provides methods to
24 class MCRelocationInfo {
29 MCRelocationInfo(MCContext &Ctx);
30 MCRelocationInfo(const MCRelocationInfo &) = delete;
31 MCRelocationInfo &operator=(const MCRelocationInfo &) = delete;
32 virtual ~MCRelocationInfo();
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCDisassembler/
MCRelocationInfo.cpp 1 //===-- MCRelocationInfo.cpp ----------------------------------------------===//
9 #include "llvm/MC/MCDisassembler/MCRelocationInfo.h"
15 MCRelocationInfo::MCRelocationInfo(MCContext &Ctx) : Ctx(Ctx) {}
17 MCRelocationInfo::~MCRelocationInfo() = default;
20 MCRelocationInfo::createExprForCAPIVariantKind(const MCExpr *SubExpr,
27 MCRelocationInfo *llvm::createMCRelocationInfo(const Triple &TT,
29 return new MCRelocationInfo(Ctx);

Completed in 16 milliseconds