Searched refs:Sym (Results 126 - 150 of 293) sorted by relevance

1234567891011>>

/external/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.h100 void beginFunclet(const MachineBasicBlock &MBB, MCSymbol *Sym) override;
H A DDwarfDebug.h187 SymbolCU(DwarfCompileUnit *CU, const MCSymbol *Sym) : Sym(Sym), CU(CU) {} argument
188 const MCSymbol *Sym; member in struct:llvm::SymbolCU
487 void setSymbolSize(const MCSymbol *Sym, uint64_t Size) override {
488 SymSize[Sym] = Size;
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp112 SymbolRef Sym = P.first; local
116 Expected<SymbolRef::Type> SymTypeOrErr = Sym.getType();
126 Expected<StringRef> Name = Sym.getName();
133 Expected<uint64_t> AddrOrErr = Sym.getAddress();
/external/llvm/lib/MC/
H A DMCExpr.cpp43 const MCSymbol &Sym = SRE.getSymbol(); local
47 !InParens && Sym.getName().size() && Sym.getName()[0] == '$';
50 Sym.print(OS, MAI);
53 Sym.print(OS, MAI);
166 const MCSymbolRefExpr *MCSymbolRefExpr::create(const MCSymbol *Sym, argument
169 return new (Ctx) MCSymbolRefExpr(Sym, Kind, Ctx.getAsmInfo());
589 static bool canExpand(const MCSymbol &Sym, bool InSet) { argument
590 const MCExpr *Expr = Sym.getVariableValue();
599 return !Sym
620 const MCSymbol &Sym = SRE->getSymbol(); local
[all...]
/external/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp428 MCSymbol *Sym = getContext().getOrCreateSymbol(Name);
430 if (Sym->isDefined())
433 if (!getStreamer().EmitSymbolAttribute(Sym, MCSA_AltEntry))
448 MCSymbol *Sym = getContext().getOrCreateSymbol(Name);
464 getStreamer().EmitSymbolDesc(Sym, DescValue);
486 MCSymbol *Sym = getContext().getOrCreateSymbol(Name);
489 if (Sym->isTemporary())
492 if (!getStreamer().EmitSymbolAttribute(Sym, MCSA_IndirectSymbol))
561 MCSymbol *Sym = getContext().getOrCreateSymbol(Name);
579 (void) Sym;
[all...]
H A DELFAsmParser.cpp167 MCSymbol *Sym = getContext().getOrCreateSymbol(Name);
169 getStreamer().EmitSymbolAttribute(Sym, Attr);
203 MCSymbolELF *Sym = cast<MCSymbolELF>(getContext().getOrCreateSymbol(Name));
216 getStreamer().emitELFSize(Sym, Expr);
577 MCSymbol *Sym = getContext().getOrCreateSymbol(Name);
617 getStreamer().EmitSymbolAttribute(Sym, Attr);
663 MCSymbol *Sym = getContext().getOrCreateSymbol(Name); local
664 const MCExpr *Value = MCSymbolRefExpr::create(Sym, getContext());
714 MCSymbol *Sym = getContext().getOrCreateSymbol(Name); local
716 getStreamer().EmitWeakReference(Alias, Sym);
[all...]
/external/llvm/lib/Object/
H A DObject.cpp103 LLVMSymbolIteratorRef Sym) {
104 Expected<section_iterator> SecOrErr = (*unwrap(Sym))->getSection();
160 LLVMSymbolIteratorRef Sym) {
161 return (*unwrap(SI))->containsSymbol(**unwrap(Sym));
102 LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect, LLVMSymbolIteratorRef Sym) argument
159 LLVMGetSectionContainsSymbol(LLVMSectionIteratorRef SI, LLVMSymbolIteratorRef Sym) argument
H A DRecordStreamer.h25 void visitUsedSymbol(const MCSymbol &Sym) override;
/external/llvm/lib/Target/PowerPC/
H A DPPCMCInstLower.cpp61 MCSymbol *Sym = Ctx.getOrCreateSymbol(Name); local
68 MachineModuleInfoImpl::StubValueTy &StubSym = MachO.getGVStubEntry(Sym);
76 return Sym;
79 return Sym;
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
H A DDarwinAsmParser.cpp333 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
349 getStreamer().EmitSymbolDesc(Sym, DescValue);
385 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
403 (void) Sym;
529 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
563 if (!Sym->isUndefined())
570 Sym, Size, 1 << Pow2Alignment);
612 MCSymbol *Sym = getContext().GetOrCreateSymbol(IDStr);
648 if (!Sym->isUndefined())
657 Sym, Siz
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/XCore/
H A DXCoreAsmPrinter.cpp75 void emitArrayBound(MCSymbol *Sym, const GlobalVariable *GV);
90 void XCoreAsmPrinter::emitArrayBound(MCSymbol *Sym, const GlobalVariable *GV) { argument
96 OutStreamer.EmitSymbolAttribute(Sym, MCSA_Global);
99 OutStreamer.EmitRawText("\t.set\t" + Twine(Sym->getName()));
103 OutStreamer.EmitRawText(MAI->getWeakDefDirective() +Twine(Sym->getName())+
/external/llvm/tools/gold/
H A Dgold-plugin.cpp527 for (auto &Sym : Obj->symbols()) {
528 uint32_t Symflags = Sym.getFlags();
539 Sym.printName(OS);
543 const GlobalValue *GV = Obj->getSymbolGV(Sym.getRawDataRefImpl());
638 static void freeSymName(ld_plugin_symbol &Sym) { argument
639 free(Sym.name);
640 free(Sym.comdat_key);
641 Sym.name = nullptr;
642 Sym.comdat_key = nullptr;
720 ld_plugin_symbol &Sym local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DStreamChecker.cpp226 if (SymbolRef Sym = RetVal.getAsSymbol()) {
229 stateNotNull->set<StreamMap>(Sym,StreamState::getOpened(CE));
231 stateNull->set<StreamMap>(Sym, StreamState::getOpenFailed(CE));
367 SymbolRef Sym = local
369 if (!Sym)
372 const StreamState *SS = state->get<StreamMap>(Sym);
394 return state->set<StreamMap>(Sym, StreamState::getClosed(CE));
402 SymbolRef Sym = *I; local
404 const StreamState *SS = state->get<StreamMap>(Sym);
H A DMacOSKeychainAPIChecker.cpp102 /// Find the allocation site for Sym on the path leading to the node N.
103 const ExplodedNode *getAllocationNode(const ExplodedNode *N, SymbolRef Sym,
135 SymbolRef Sym; member in class:__anon1673::MacOSKeychainAPIChecker::SecKeychainBugVisitor
138 SecKeychainBugVisitor(SymbolRef S) : Sym(S) {}
143 ID.AddPointer(Sym);
490 SymbolRef Sym,
498 if (!N->getState()->get<AllocatedData>(Sym))
597 const AllocationState *AS = N->getState()->get<AllocatedData>(Sym);
600 const AllocationState *ASPrev = PrevN->getState()->get<AllocatedData>(Sym);
489 getAllocationNode(const ExplodedNode *N, SymbolRef Sym, CheckerContext &C) const argument
H A DObjCContainersChecker.cpp158 for (const auto &Sym : Escaped) {
164 State = State->remove<ArraySizeMap>(Sym);
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86MCInstLower.cpp79 MCSymbol *Sym = Ctx.GetOrCreateSymbol(Name.str()); local
82 getMachOMMI().getGVStubEntry(Sym);
90 return Sym;
94 MCSymbol *Sym = Ctx.GetOrCreateSymbol(Name.str()); local
96 getMachOMMI().getHiddenGVStubEntry(Sym);
104 return Sym;
108 MCSymbol *Sym = Ctx.GetOrCreateSymbol(Name.str()); local
110 getMachOMMI().getFnStubEntry(Sym);
112 return Sym;
125 return Sym;
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h161 MCSymbol *Sym; // For MO_MCSymbol. member in union:llvm::MachineOperand::__anon12364
448 return Contents.Sym;
575 void ChangeToMCSymbol(MCSymbol *Sym);
720 static MachineOperand CreateMCSymbol(MCSymbol *Sym,
723 Op.Contents.Sym = Sym;
H A DTargetLoweringObjectFileImpl.h48 const MCSymbol *Sym) const override;
131 const MCExpr *getIndirectSymViaGOTPCRel(const MCSymbol *Sym,
/external/llvm/include/llvm/MC/
H A DMCFragment.h471 const MCSymbol *Sym; member in class:llvm::MCSafeSEHFragment
474 MCSafeSEHFragment(const MCSymbol *Sym, MCSection *Sec = nullptr) argument
475 : MCFragment(FT_SafeSEH, false, 0, Sec), Sym(Sym) {}
480 const MCSymbol *getSymbol() { return Sym; }
481 const MCSymbol *getSymbol() const { return Sym; }
H A DMCSection.h118 void setBeginSymbol(MCSymbol *Sym) { argument
120 Begin = Sym;
/external/llvm/include/llvm/LTO/legacy/
H A DLTOCodeGenerator.h111 void addMustPreserveSymbol(StringRef Sym) { MustPreserveSymbols[Sym] = 1; } argument
/external/llvm/lib/Target/Mips/
H A DMipsCCState.cpp64 llvm::StringRef Sym = G->getGlobal()->getName(); local
65 Function *F = G->getGlobal()->getParent()->getFunction(Sym);
/external/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcELFObjectWriter.cpp35 bool needsRelocateWithSymbol(const MCSymbol &Sym,
113 bool SparcELFObjectWriter::needsRelocateWithSymbol(const MCSymbol &Sym, argument
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCStreamer.cpp125 void MCStreamer::EmitSymbolValue(const MCSymbol *Sym, unsigned Size, argument
127 EmitValueImpl(MCSymbolRefExpr::Create(Sym, getContext()), Size,
369 void MCStreamer::EmitCFIPersonality(const MCSymbol *Sym, argument
373 CurFrame->Personality = Sym;
377 void MCStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) { argument
380 CurFrame->Lsda = Sym;
464 void MCStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind, argument
470 CurFrame->ExceptionHandler = Sym;
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
H A DMBlazeMCInstLower.cpp98 LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const {
101 const MCExpr *Expr = MCSymbolRefExpr::Create(Sym, Ctx);

Completed in 437 milliseconds

1234567891011>>