Home
last modified time | relevance | path

Searched refs:MCContext (Results 1 – 25 of 114) sorted by relevance

12345

/external/llvm/include/llvm/MC/
DMCExpr.h20 class MCContext; variable
122 static const MCConstantExpr *Create(int64_t Value, MCContext &Ctx);
221 static const MCSymbolRefExpr *Create(const MCSymbol *Symbol, MCContext &Ctx) { in Create()
226 MCContext &Ctx);
228 MCContext &Ctx);
276 MCContext &Ctx);
277 static const MCUnaryExpr *CreateLNot(const MCExpr *Expr, MCContext &Ctx) { in CreateLNot()
280 static const MCUnaryExpr *CreateMinus(const MCExpr *Expr, MCContext &Ctx) { in CreateMinus()
283 static const MCUnaryExpr *CreateNot(const MCExpr *Expr, MCContext &Ctx) { in CreateNot()
286 static const MCUnaryExpr *CreatePlus(const MCExpr *Expr, MCContext &Ctx) { in CreatePlus()
[all …]
DMCContext.h42 class MCContext {
43 MCContext(const MCContext&) LLVM_DELETED_FUNCTION;
44 MCContext &operator=(const MCContext&) LLVM_DELETED_FUNCTION;
143 explicit MCContext(const MCAsmInfo &MAI, const MCRegisterInfo &MRI,
145 ~MCContext();
361 inline void *operator new(size_t Bytes, llvm::MCContext &C,
371 inline void operator delete(void *Ptr, llvm::MCContext &C, size_t) in delete()
395 inline void *operator new[](size_t Bytes, llvm::MCContext& C,
406 inline void operator delete[](void *Ptr, llvm::MCContext &C) throw () { in throw()
DMCDisassembler.h21 class MCContext; variable
107 MCContext *Ctx;
116 MCContext *ctx) { in setupForSymbolicDisassembly()
127 MCContext *getMCContext() const { return Ctx; } in getMCContext()
DMCStreamer.h27 class MCContext; variable
48 MCContext &Context;
73 MCStreamer(MCContext &Ctx);
75 const MCExpr *BuildSymbolDiff(MCContext &Context, const MCSymbol *A,
92 MCContext &getContext() const { return Context; } in getContext()
565 MCStreamer *createNullStreamer(MCContext &Ctx);
584 MCStreamer *createAsmStreamer(MCContext &Ctx, formatted_raw_ostream &OS,
598 MCStreamer *createMachOStreamer(MCContext &Ctx, MCAsmBackend &TAB,
606 MCStreamer *createWinCOFFStreamer(MCContext &Ctx,
613 MCStreamer *createELFStreamer(MCContext &Ctx, MCAsmBackend &TAB,
[all …]
DMCLabel.h20 class MCContext; variable
31 friend class MCContext;
DMCSymbol.h23 class MCContext; variable
61 friend class MCContext; variable
/external/llvm/lib/MC/
DMCContext.cpp33 MCContext::MCContext(const MCAsmInfo &mai, const MCRegisterInfo &mri, in MCContext() function in MCContext
53 MCContext::~MCContext() { in ~MCContext()
70 MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) { in GetOrCreateSymbol()
86 MCSymbol *MCContext::CreateSymbol(StringRef Name) { in CreateSymbol()
111 MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) { in GetOrCreateSymbol()
117 MCSymbol *MCContext::CreateTempSymbol() { in CreateTempSymbol()
124 unsigned MCContext::NextInstance(int64_t LocalLabelVal) { in NextInstance()
131 unsigned MCContext::GetInstance(int64_t LocalLabelVal) { in GetInstance()
138 MCSymbol *MCContext::CreateDirectionalLocalSymbol(int64_t LocalLabelVal) { in CreateDirectionalLocalSymbol()
144 MCSymbol *MCContext::GetDirectionalLocalSymbol(int64_t LocalLabelVal, in GetDirectionalLocalSymbol()
[all …]
DMCWin64EH.cpp55 MCContext &context = streamer.getContext(); in EmitAbsDifference()
134 MCContext &context = streamer.getContext(); in EmitRuntimeFunction()
146 MCContext &context = streamer.getContext(); in EmitUnwindInfo()
225 MCContext &context) { in getWin64EHTableSection()
236 MCContext &context) { in getWin64EHFuncTableSection()
249 MCContext &context = streamer.getContext(); in EmitUnwindInfo()
258 MCContext &context = streamer.getContext(); in Emit()
/external/llvm/lib/Target/Mips/
DMipsMCInstLower.h17 class MCContext; variable
29 MCContext *Ctx;
34 void Initialize(Mangler *mang, MCContext *C);
/external/llvm/include/llvm/Target/
DMangler.h23 class MCContext; variable
36 MCContext &Context;
50 Mangler(MCContext &context, const TargetData &td) in Mangler()
DTargetLoweringObjectFile.h26 class MCContext; variable
35 MCContext *Ctx;
41 MCContext &getContext() const { return *Ctx; } in getContext()
50 virtual void Initialize(MCContext &ctx, const TargetMachine &TM);
DTargetMachine.h31 class MCContext; variable
275 MCContext *&,
323 MCContext *&Ctx,
/external/llvm/lib/Target/MBlaze/
DMBlazeMCInstLower.h17 class MCContext; variable
28 MCContext &Ctx;
32 MBlazeMCInstLower(MCContext &ctx, AsmPrinter &printer) in MBlazeMCInstLower()
/external/llvm/lib/Target/MSP430/
DMSP430MCInstLower.h17 class MCContext; variable
28 MCContext &Ctx;
32 MSP430MCInstLower(MCContext &ctx, AsmPrinter &printer) in MSP430MCInstLower()
/external/llvm/lib/Target/Mips/MCTargetDesc/
DMipsMCTargetDesc.h22 class MCContext; variable
39 MCContext &Ctx);
43 MCContext &Ctx);
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMMCExpr.h37 MCContext &Ctx);
39 static const ARMMCExpr *CreateUpper16(const MCExpr *Expr, MCContext &Ctx) { in CreateUpper16()
43 static const ARMMCExpr *CreateLower16(const MCExpr *Expr, MCContext &Ctx) { in CreateLower16()
DARMMCTargetDesc.h23 class MCContext; variable
47 MCContext &Ctx);
/external/llvm/lib/CodeGen/
DLLVMTargetMachine.cpp83 static MCContext *addPassesToGenerateCode(LLVMTargetMachine *TM, in addPassesToGenerateCode()
109 MCContext *Context = &MMI->getContext(); // Return the MCContext by-ref. in addPassesToGenerateCode()
138 MCContext *Context = addPassesToGenerateCode(this, PM, DisableVerify, in addPassesToEmitFile()
236 MCContext *Context = addPassesToGenerateCode(this, PM, DisableVerify, 0, 0); in addPassesToEmitMachineCode()
252 MCContext *&Ctx, in addPassesToEmitMC()
/external/llvm/lib/MC/MCDisassembler/
DDisassembler.h27 class MCContext; variable
71 llvm::OwningPtr<const llvm::MCContext> Ctx;
89 llvm::MCContext *ctx, const MCDisassembler *disAsm, in LLVMDisasmContext()
/external/llvm/include/llvm/MC/MCParser/
DMCAsmParser.h21 class MCContext; variable
59 virtual MCContext &getContext() = 0;
141 MCAsmParser *createMCAsmParser(SourceMgr &, MCContext &,
/external/llvm/lib/Target/ARM/
DARMTargetObjectFile.h17 class MCContext; variable
29 virtual void Initialize(MCContext &Ctx, const TargetMachine &TM);
/external/llvm/lib/Target/MBlaze/MCTargetDesc/
DMBlazeMCTargetDesc.h21 class MCContext; variable
36 MCContext &Ctx);
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMCTargetDesc.h22 class MCContext; variable
37 MCContext &Ctx);
/external/llvm/include/llvm/Support/
DTargetRegistry.h36 class MCContext; variable
51 MCStreamer *createAsmStreamer(MCContext &Ctx, formatted_raw_ostream &OS,
113 MCContext &Ctx);
116 MCContext &Ctx,
122 typedef MCStreamer *(*AsmStreamerCtorTy)(MCContext &Ctx,
411 MCContext &Ctx) const { in createMCCodeEmitter()
426 MCStreamer *createMCObjectStreamer(StringRef TT, MCContext &Ctx, in createMCObjectStreamer()
439 MCStreamer *createAsmStreamer(MCContext &Ctx, in createAsmStreamer()
1151 MCContext &Ctx) { in Allocator()
/external/llvm/lib/Target/X86/
DX86MCInstLower.h17 class MCContext; variable
31 MCContext &Ctx;

12345