Home
last modified time | relevance | path

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

12345678910>>...29

/external/llvm/lib/MC/
DMCContext.cpp44 MCContext::MCContext(const MCAsmInfo *mai, const MCRegisterInfo *mri, in MCContext() function in MCContext
62 MCContext::~MCContext() { in ~MCContext()
74 void MCContext::reset() { in reset()
114 MCSymbol *MCContext::getOrCreateSymbol(const Twine &Name) { in getOrCreateSymbol()
127 MCSymbolELF *MCContext::getOrCreateSectionSymbol(const MCSectionELF &Section) { in getOrCreateSectionSymbol()
139 MCSymbol *MCContext::getOrCreateFrameAllocSymbol(StringRef FuncName, in getOrCreateFrameAllocSymbol()
145 MCSymbol *MCContext::getOrCreateParentFrameOffsetSymbol(StringRef FuncName) { in getOrCreateParentFrameOffsetSymbol()
150 MCSymbol *MCContext::getOrCreateLSDASymbol(StringRef FuncName) { in getOrCreateLSDASymbol()
155 MCSymbol *MCContext::createSymbolImpl(const StringMapEntry<bool> *Name, in createSymbolImpl()
171 MCSymbol *MCContext::createSymbol(StringRef Name, bool AlwaysAddSuffix, in createSymbol()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DMCContext.cpp57 MCContext::MCContext(const MCAsmInfo *mai, const MCRegisterInfo *mri, in MCContext() function in MCContext
71 MCContext::~MCContext() { in ~MCContext()
83 void MCContext::reset() { in reset()
123 MCSymbol *MCContext::getOrCreateSymbol(const Twine &Name) { in getOrCreateSymbol()
136 MCSymbol *MCContext::getOrCreateFrameAllocSymbol(StringRef FuncName, in getOrCreateFrameAllocSymbol()
142 MCSymbol *MCContext::getOrCreateParentFrameOffsetSymbol(StringRef FuncName) { in getOrCreateParentFrameOffsetSymbol()
147 MCSymbol *MCContext::getOrCreateLSDASymbol(StringRef FuncName) { in getOrCreateLSDASymbol()
152 MCSymbol *MCContext::createSymbolImpl(const StringMapEntry<bool> *Name, in createSymbolImpl()
170 MCSymbol *MCContext::createSymbol(StringRef Name, bool AlwaysAddSuffix, in createSymbol()
204 MCSymbol *MCContext::createTempSymbol(const Twine &Name, bool AlwaysAddSuffix, in createTempSymbol()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/MC/
DMCExpr.h21 class MCContext; variable
123 static const MCConstantExpr *Create(int64_t Value, MCContext &Ctx);
194 static const MCSymbolRefExpr *Create(const MCSymbol *Symbol, MCContext &Ctx) { in Create()
199 MCContext &Ctx);
201 MCContext &Ctx);
249 MCContext &Ctx);
250 static const MCUnaryExpr *CreateLNot(const MCExpr *Expr, MCContext &Ctx) { in CreateLNot()
253 static const MCUnaryExpr *CreateMinus(const MCExpr *Expr, MCContext &Ctx) { in CreateMinus()
256 static const MCUnaryExpr *CreateNot(const MCExpr *Expr, MCContext &Ctx) { in CreateNot()
259 static const MCUnaryExpr *CreatePlus(const MCExpr *Expr, MCContext &Ctx) { in CreatePlus()
[all …]
DMCContext.h40 class MCContext {
41 MCContext(const MCContext&); // DO NOT IMPLEMENT
42 MCContext &operator=(const MCContext&); // DO NOT IMPLEMENT
118 explicit MCContext(const MCAsmInfo &MAI, const MCRegisterInfo &MRI,
120 ~MCContext();
299 inline void *operator new(size_t Bytes, llvm::MCContext &C,
309 inline void operator delete(void *Ptr, llvm::MCContext &C, size_t) in delete()
333 inline void *operator new[](size_t Bytes, llvm::MCContext& C,
344 inline void operator delete[](void *Ptr, llvm::MCContext &C) throw () { in throw()
DMCStreamer.h28 class MCContext; variable
50 MCContext &Context;
90 MCStreamer(MCContext &Ctx);
92 const MCExpr *BuildSymbolDiff(MCContext &Context, const MCSymbol *A,
105 MCContext &getContext() const { return Context; } in getContext()
590 MCStreamer *createNullStreamer(MCContext &Ctx);
612 MCStreamer *createAsmStreamer(MCContext &Ctx, formatted_raw_ostream &OS,
625 MCStreamer *createMachOStreamer(MCContext &Ctx, MCAsmBackend &TAB,
633 MCStreamer *createWinCOFFStreamer(MCContext &Ctx,
640 MCStreamer *createELFStreamer(MCContext &Ctx, MCAsmBackend &TAB,
[all …]
DMCDisassembler.h21 class MCContext; variable
107 MCContext *Ctx;
116 MCContext *ctx) { in setupForSymbolicDisassembly()
127 MCContext *getMCContext() const { return Ctx; } in getMCContext()
/external/llvm/include/llvm/MC/
DMCExpr.h21 class MCContext; variable
141 static const MCConstantExpr *create(int64_t Value, MCContext &Ctx);
293 static const MCSymbolRefExpr *create(const MCSymbol *Symbol, MCContext &Ctx) { in create()
298 MCContext &Ctx);
300 MCContext &Ctx);
351 MCContext &Ctx);
352 static const MCUnaryExpr *createLNot(const MCExpr *Expr, MCContext &Ctx) { in createLNot()
355 static const MCUnaryExpr *createMinus(const MCExpr *Expr, MCContext &Ctx) { in createMinus()
358 static const MCUnaryExpr *createNot(const MCExpr *Expr, MCContext &Ctx) { in createNot()
361 static const MCUnaryExpr *createPlus(const MCExpr *Expr, MCContext &Ctx) { in createPlus()
[all …]
/external/swiftshader/third_party/LLVM/lib/MC/
DMCContext.cpp30 MCContext::MCContext(const MCAsmInfo &mai, const MCRegisterInfo &mri, in MCContext() function in MCContext
48 MCContext::~MCContext() { in ~MCContext()
65 MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) { in GetOrCreateSymbol()
81 MCSymbol *MCContext::CreateSymbol(StringRef Name) { in CreateSymbol()
106 MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) { in GetOrCreateSymbol()
112 MCSymbol *MCContext::CreateTempSymbol() { in CreateTempSymbol()
119 unsigned MCContext::NextInstance(int64_t LocalLabelVal) { in NextInstance()
126 unsigned MCContext::GetInstance(int64_t LocalLabelVal) { in GetInstance()
133 MCSymbol *MCContext::CreateDirectionalLocalSymbol(int64_t LocalLabelVal) { in CreateDirectionalLocalSymbol()
139 MCSymbol *MCContext::GetDirectionalLocalSymbol(int64_t LocalLabelVal, in GetDirectionalLocalSymbol()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCExpr.h22 class MCContext; variable
146 static const MCConstantExpr *create(int64_t Value, MCContext &Ctx);
321 static const MCSymbolRefExpr *create(const MCSymbol *Symbol, MCContext &Ctx) { in create()
326 MCContext &Ctx, SMLoc Loc = SMLoc());
328 MCContext &Ctx);
379 MCContext &Ctx, SMLoc Loc = SMLoc());
381 static const MCUnaryExpr *createLNot(const MCExpr *Expr, MCContext &Ctx, SMLoc Loc = SMLoc()) {
385 static const MCUnaryExpr *createMinus(const MCExpr *Expr, MCContext &Ctx, SMLoc Loc = SMLoc()) {
389 static const MCUnaryExpr *createNot(const MCExpr *Expr, MCContext &Ctx, SMLoc Loc = SMLoc()) {
393 static const MCUnaryExpr *createPlus(const MCExpr *Expr, MCContext &Ctx, SMLoc Loc = SMLoc()) {
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/AsmParser/
DX86AsmInstrumentation.cpp197 MCContext &Ctx, const MCInstrInfo &MII, in InstrumentAndEmitInstruction()
213 MCContext &Ctx,
218 MCContext &Ctx,
224 MCContext &Ctx, MCStreamer &Out) = 0;
228 MCContext &Ctx, MCStreamer &Out) = 0;
230 virtual void InstrumentMOVSImpl(unsigned AccessSize, MCContext &Ctx,
234 const RegisterContext &RegCtx, MCContext &Ctx,
237 unsigned AccessSize, MCContext &Ctx, MCStreamer &Out);
240 MCContext &Ctx, const MCInstrInfo &MII, MCStreamer &Out);
242 MCContext &Ctx, const MCInstrInfo &MII, MCStreamer &Out);
[all …]
DX86AsmInstrumentation.h18 class MCContext; variable
29 const MCContext &Ctx,
45 MCContext &Ctx, const MCInstrInfo &MII, MCStreamer &Out,
51 const MCContext &Ctx,
56 unsigned GetFrameRegGeneric(const MCContext &Ctx, MCStreamer &Out);
/external/llvm/lib/Target/X86/AsmParser/
DX86AsmInstrumentation.cpp186 MCContext &Ctx, in InstrumentAndEmitInstruction()
202 MCContext &Ctx,
207 MCContext &Ctx,
213 MCContext &Ctx, MCStreamer &Out) = 0;
217 MCContext &Ctx, MCStreamer &Out) = 0;
219 virtual void InstrumentMOVSImpl(unsigned AccessSize, MCContext &Ctx,
223 const RegisterContext &RegCtx, MCContext &Ctx,
226 unsigned AccessSize, MCContext &Ctx, MCStreamer &Out);
229 MCContext &Ctx, const MCInstrInfo &MII, MCStreamer &Out);
231 MCContext &Ctx, const MCInstrInfo &MII, MCStreamer &Out);
[all …]
DX86AsmInstrumentation.h19 class MCContext; variable
31 const MCContext &Ctx,
47 MCContext &Ctx, const MCInstrInfo &MII, MCStreamer &Out);
52 const MCContext &Ctx,
57 unsigned GetFrameRegGeneric(const MCContext &Ctx, MCStreamer &Out);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/MCTargetDesc/
DAVRAsmBackend.cpp39 const MCFixup &Fixup, MCContext *Ctx = nullptr) { in signed_width()
58 const MCFixup &Fixup, MCContext *Ctx = nullptr) { in unsigned_width()
77 MCContext *Ctx = nullptr) { in adjustBranch()
88 MCContext *Ctx = nullptr) { in adjustRelativeBranch()
106 MCContext *Ctx = nullptr) { in fixup_call()
122 MCContext *Ctx = nullptr) { in fixup_7_pcrel()
136 MCContext *Ctx = nullptr) { in fixup_13_pcrel()
149 MCContext *Ctx = nullptr) { in fixup_6_adiw()
160 MCContext *Ctx = nullptr) { in fixup_port5()
173 MCContext *Ctx = nullptr) { in fixup_port6()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCShuffler.h24 class MCContext; variable
32 HexagonMCShuffler(MCContext &Context, bool Fatal, MCInstrInfo const &MCII, in HexagonMCShuffler()
38 HexagonMCShuffler(MCContext &Context, bool Fatal, MCInstrInfo const &MCII, in HexagonMCShuffler()
57 bool HexagonMCShuffle(MCContext &Context, bool Fatal, MCInstrInfo const &MCII,
59 bool HexagonMCShuffle(MCContext &Context, MCInstrInfo const &MCII,
62 bool HexagonMCShuffle(MCContext &Context, MCInstrInfo const &MCII,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DTargetRegistry.h44 class MCContext; variable
63 MCStreamer *createNullStreamer(MCContext &Ctx);
83 createAsmStreamer(MCContext &Ctx, std::unique_ptr<formatted_raw_ostream> OS,
88 MCStreamer *createELFStreamer(MCContext &Ctx,
93 MCStreamer *createMachOStreamer(MCContext &Ctx,
99 MCStreamer *createWasmStreamer(MCContext &Ctx,
105 MCRelocationInfo *createMCRelocationInfo(const Triple &TT, MCContext &Ctx);
109 void *DisInfo, MCContext *Ctx,
152 MCContext &Ctx);
160 MCContext &Ctx);
[all …]
/external/llvm/include/llvm/Support/
DTargetRegistry.h37 class MCContext; variable
56 MCStreamer *createNullStreamer(MCContext &Ctx);
57 MCStreamer *createAsmStreamer(MCContext &Ctx,
64 MCStreamer *createELFStreamer(MCContext &Ctx, MCAsmBackend &TAB,
67 MCStreamer *createMachOStreamer(MCContext &Ctx, MCAsmBackend &TAB,
72 MCRelocationInfo *createMCRelocationInfo(const Triple &TT, MCContext &Ctx);
76 void *DisInfo, MCContext *Ctx,
121 MCContext &Ctx);
129 MCContext &Ctx);
130 typedef MCStreamer *(*ELFStreamerCtorTy)(const Triple &T, MCContext &Ctx,
[all …]
/external/llvm/lib/Target/AMDGPU/Utils/
DAMDGPUBaseInfo.h21 class MCContext; variable
36 MCSection *getHSATextSection(MCContext &Ctx);
38 MCSection *getHSADataGlobalAgentSection(MCContext &Ctx);
40 MCSection *getHSADataGlobalProgramSection(MCContext &Ctx);
42 MCSection *getHSARodataReadonlyAgentSection(MCContext &Ctx);
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCInstrInfo.h22 class MCContext; variable
55 void addConstant(MCInst &MI, uint64_t Value, MCContext &Context);
56 void addConstExtender(MCContext &Context, MCInstrInfo const &MCII, MCInst &MCB,
67 MCContext &Context, MCInst &MCB,
71 void clampExtended(MCInstrInfo const &MCII, MCContext &Context, MCInst &MCI);
77 void extendIfNeeded(MCContext &Context, MCInstrInfo const &MCII, MCInst &MCB,
81 MCInst *deriveDuplex(MCContext &Context, unsigned iClass, MCInst const &inst0,
272 void padEndloop(MCContext &Context, MCInst &MCI);
277 void replaceDuplex(MCContext &Context, MCInst &MCB, DuplexCandidate Candidate);
297 void tryCompound(MCInstrInfo const &MCII, MCContext &Context, MCInst &MCI);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMMCTargetDesc.h25 class MCContext; variable
66 MCContext &Ctx);
70 MCContext &Ctx);
82 MCStreamer *createARMWinCOFFStreamer(MCContext &Context,
102 MCRelocationInfo *createARMMachORelocationInfo(MCContext &Ctx);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/
DNVPTXMCExpr.h42 MCContext &Ctx);
45 MCContext &Ctx) { in createConstantFPHalf()
50 MCContext &Ctx) { in createConstantFPSingle()
55 MCContext &Ctx) { in createConstantFPDouble()
102 *create(const MCSymbolRefExpr *SymExpr, MCContext &Ctx);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/MCDisassembler/
DMCDisassembler.h20 class MCContext; variable
57 MCDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx) in MCDisassembler()
84 MCContext &Ctx;
104 MCContext& getContext() const { return Ctx; } in getContext()
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMMCTargetDesc.h24 class MCContext; variable
61 MCContext &Ctx);
65 MCContext &Ctx);
87 MCStreamer *createARMWinCOFFStreamer(MCContext &Context, MCAsmBackend &MAB,
106 MCRelocationInfo *createARMMachORelocationInfo(MCContext &Ctx);
/external/llvm/include/llvm/MC/MCDisassembler/
DMCDisassembler.h22 class MCContext; variable
56 MCDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx) in MCDisassembler()
82 MCContext &Ctx;
102 MCContext& getContext() const { return Ctx; } in getContext()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86TargetObjectFile.h55 void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
60 void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
66 void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
71 void Initialize(MCContext &Ctx, const TargetMachine &TM) override;

12345678910>>...29