HomeSort by relevance Sort by last modified time
    Searched refs:MCSymbol (Results 1 - 25 of 223) sorted by null

1 2 3 4 5 6 7 8 9

  /external/llvm/include/llvm/CodeGen/
MachineModuleInfoImpls.h 21 class MCSymbol;
28 DenseMap<MCSymbol *, StubValueTy> FnStubs;
33 DenseMap<MCSymbol *, StubValueTy> GVStubs;
39 DenseMap<MCSymbol *, StubValueTy> HiddenGVStubs;
45 StubValueTy &getFnStubEntry(MCSymbol *Sym) {
50 StubValueTy &getGVStubEntry(MCSymbol *Sym) {
55 StubValueTy &getHiddenGVStubEntry(MCSymbol *Sym) {
71 DenseMap<MCSymbol *, StubValueTy> GVStubs;
77 StubValueTy &getGVStubEntry(MCSymbol *Sym) {
DwarfStringPoolEntry.h 17 class MCSymbol;
21 MCSymbol *Symbol;
37 MCSymbol *getSymbol() const {
AsmPrinter.h 56 class MCSymbol;
98 MCSymbol *CurrentFnSym;
103 MCSymbol *CurrentFnSymForSize;
108 MapVector<const MCSymbol *, GOTEquivUsePair> GlobalGOTEquivs;
111 MCSymbol *CurrentFnBegin;
112 MCSymbol *CurrentFnEnd;
113 MCSymbol *CurExceptionSym;
158 MCSymbol *getFunctionBegin() const { return CurrentFnBegin; }
159 MCSymbol *getFunctionEnd() const { return CurrentFnEnd; }
160 MCSymbol *getCurExceptionSym()
    [all...]
  /external/llvm/lib/Object/
RecordStreamer.h 22 void markDefined(const MCSymbol &Symbol);
23 void markGlobal(const MCSymbol &Symbol);
24 void markUsed(const MCSymbol &Symbol);
25 void visitUsedSymbol(const MCSymbol &Sym) override;
33 void EmitLabel(MCSymbol *Symbol) override;
34 void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) override;
35 bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override;
36 void EmitZerofill(MCSection *Section, MCSymbol *Symbol, uint64_t Size,
38 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
RecordStreamer.cpp 11 #include "llvm/MC/MCSymbol.h"
14 void RecordStreamer::markDefined(const MCSymbol &Symbol) {
29 void RecordStreamer::markGlobal(const MCSymbol &Symbol) {
45 void RecordStreamer::markUsed(const MCSymbol &Symbol) {
60 void RecordStreamer::visitUsedSymbol(const MCSymbol &Sym) { markUsed(Sym); }
75 void RecordStreamer::EmitLabel(MCSymbol *Symbol) {
80 void RecordStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
85 bool RecordStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
92 void RecordStreamer::EmitZerofill(MCSection *Section, MCSymbol *Symbol,
97 void RecordStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserUtils.h 17 class MCSymbol;
27 MCAsmParser &Parser, MCSymbol *&Symbol,
  /external/llvm/include/llvm/MC/
MCWinEH.h 19 class MCSymbol;
24 const MCSymbol *Label;
29 Instruction(unsigned Op, MCSymbol *L, unsigned Reg, unsigned Off)
34 const MCSymbol *Begin;
35 const MCSymbol *End;
36 const MCSymbol *ExceptionHandler;
37 const MCSymbol *Function;
38 const MCSymbol *PrologEnd;
39 const MCSymbol *Symbol;
53 FrameInfo(const MCSymbol *Function, const MCSymbol *BeginFuncEHLabel
    [all...]
MCWinCOFFStreamer.h 24 class MCSymbol;
44 void EmitLabel(MCSymbol *Symbol) override;
46 void EmitThumbFunc(MCSymbol *Func) override;
47 bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override;
48 void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) override;
49 void BeginCOFFSymbolDef(MCSymbol const *Symbol) override;
53 void EmitCOFFSafeSEH(MCSymbol const *Symbol) override;
54 void EmitCOFFSectionIndex(MCSymbol const *Symbol) override;
55 void EmitCOFFSecRel32(MCSymbol const *Symbol) override;
56 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size
    [all...]
MCAsmLayout.h 20 class MCSymbol;
94 bool getSymbolOffset(const MCSymbol &S, uint64_t &Val) const;
97 uint64_t getSymbolOffset(const MCSymbol &S) const;
100 const MCSymbol *getBaseSymbol(const MCSymbol &Symbol) const;
MCSectionCOFF.h 21 class MCSymbol;
37 MCSymbol *COMDATSymbol;
46 MCSymbol *COMDATSymbol, int Selection, SectionKind K,
47 MCSymbol *Begin)
64 MCSymbol *getCOMDATSymbol() const { return COMDATSymbol; }
MCWin64EH.h 24 class MCSymbol;
28 static WinEH::Instruction PushNonVol(MCSymbol *L, unsigned Reg) {
31 static WinEH::Instruction Alloc(MCSymbol *L, unsigned Size) {
35 static WinEH::Instruction PushMachFrame(MCSymbol *L, bool Code) {
38 static WinEH::Instruction SaveNonVol(MCSymbol *L, unsigned Reg,
44 static WinEH::Instruction SaveXMM(MCSymbol *L, unsigned Reg,
50 static WinEH::Instruction SetFPReg(MCSymbol *L, unsigned Reg, unsigned Off) {
MCSymbolELF.h 12 #include "llvm/MC/MCSymbol.h"
15 class MCSymbolELF : public MCSymbol {
22 : MCSymbol(SymbolKindELF, Name, isTemporary) {}
47 static bool classof(const MCSymbol *S) { return S->isELF(); }
  /external/llvm/lib/Target/MSP430/
MSP430MCInstLower.h 20 class MCSymbol;
36 MCOperand LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const;
38 MCSymbol *GetGlobalAddressSymbol(const MachineOperand &MO) const;
39 MCSymbol *GetExternalSymbolSymbol(const MachineOperand &MO) const;
40 MCSymbol *GetJumpTableSymbol(const MachineOperand &MO) const;
41 MCSymbol *GetConstantPoolIndexSymbol(const MachineOperand &MO) const;
42 MCSymbol *GetBlockAddressSymbol(const MachineOperand &MO) const;
  /external/llvm/lib/MC/
MCObjectWriter.cpp 13 #include "llvm/MC/MCSymbol.h"
28 const MCSymbol &SA = A->getSymbol();
29 const MCSymbol &SB = B->getSymbol();
40 const MCAssembler &Asm, const MCSymbol &A, const MCSymbol &B,
47 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB,
55 bool MCObjectWriter::isWeak(const MCSymbol &) const { return false; }
MCNullStreamer.cpp 14 #include "llvm/MC/MCSymbol.h"
27 bool EmitSymbolAttribute(MCSymbol *Symbol,
32 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
34 void EmitZerofill(MCSection *Section, MCSymbol *Symbol = nullptr,
  /external/llvm/lib/Target/AArch64/
AArch64MCInstLower.h 22 class MCSymbol;
42 MCSymbol *Sym) const;
44 MCSymbol *Sym) const;
45 MCOperand LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const;
47 MCSymbol *GetGlobalAddressSymbol(const MachineOperand &MO) const;
48 MCSymbol *GetExternalSymbolSymbol(const MachineOperand &MO) const;
  /external/llvm/lib/CodeGen/AsmPrinter/
AddressPool.h 17 class MCSymbol;
28 DenseMap<const MCSymbol *, AddressPoolEntry> Pool;
41 unsigned getIndex(const MCSymbol *Sym, bool TLS = false);
AsmPrinterHandler.h 25 class MCSymbol;
35 virtual void setSymbolSize(const MCSymbol *Sym, uint64_t Size) = 0;
56 MCSymbol *Sym = nullptr) {}
WinException.h 46 const MCSymbol *BeginLabel,
47 const MCSymbol *EndLabel, int State);
69 const MCExpr *create32bitRef(const MCSymbol *Value);
71 const MCExpr *getLabelPlusOne(const MCSymbol *Label);
72 const MCExpr *getOffset(const MCSymbol *OffsetOf, const MCSymbol *OffsetFrom);
73 const MCExpr *getOffsetPlusOne(const MCSymbol *OffsetOf,
74 const MCSymbol *OffsetFrom);
100 void beginFunclet(const MachineBasicBlock &MBB, MCSymbol *Sym) override;
  /external/llvm/lib/CodeGen/
MachineModuleInfoImpls.cpp 16 #include "llvm/MC/MCSymbol.h"
28 typedef std::pair<MCSymbol*, MachineModuleInfoImpl::StubValueTy> PairTy;
29 const MCSymbol *LHSS = ((const PairTy *)LHS)->first;
30 const MCSymbol *RHSS = ((const PairTy *)RHS)->first;
35 DenseMap<MCSymbol *, MachineModuleInfoImpl::StubValueTy> &Map) {
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyMCInstLower.h 25 class MCSymbol;
34 MCOperand LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const;
35 MCSymbol *GetGlobalAddressSymbol(const MachineOperand &MO) const;
36 MCSymbol *GetExternalSymbolSymbol(const MachineOperand &MO) const;
  /external/llvm/lib/Target/Hexagon/
HexagonTargetStreamer.h 22 virtual void EmitCommonSymbolSorted(MCSymbol *Symbol, uint64_t Size,
25 virtual void EmitLocalCommonSymbolSorted(MCSymbol *Symbol, uint64_t Size,
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcMCAsmInfo.h 28 getExprForPersonalitySymbol(const MCSymbol *Sym, unsigned Encoding,
30 const MCExpr* getExprForFDESymbol(const MCSymbol *Sym,
  /external/llvm/lib/Target/BPF/
BPFMCInstLower.h 20 class MCSymbol;
37 MCOperand LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const;
39 MCSymbol *GetGlobalAddressSymbol(const MachineOperand &MO) const;
  /external/llvm/lib/Target/PowerPC/
PPCMachineFunctionInfo.cpp 20 MCSymbol *PPCFunctionInfo::getPICOffsetSymbol() const {

Completed in 510 milliseconds

1 2 3 4 5 6 7 8 9