Searched defs:Stubs (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp229 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList(); local
230 if (!Stubs.empty()) {
234 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
235 OutStreamer.EmitLabel(Stubs[i].first);
236 OutStreamer.EmitSymbolValue(Stubs[i].second.getPointer(),
239 Stubs.clear();
/external/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp145 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList(); local
146 if (!Stubs.empty()) {
150 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
151 OutStreamer.EmitLabel(Stubs[i].first);
152 OutStreamer.EmitSymbolValue(Stubs[i].second.getPointer(),
155 Stubs.clear();
/external/llvm/lib/Target/X86/
H A DX86AsmPrinter.cpp586 MachineModuleInfoMachO::SymbolListTy Stubs; local
588 Stubs = MMIMacho.GetFnStubList();
589 if (!Stubs.empty()) {
598 for (const auto &Stub : Stubs) {
609 Stubs.clear();
614 Stubs = MMIMacho.GetGVStubList();
615 if (!Stubs.empty()) {
622 for (auto &Stub : Stubs)
625 Stubs.clear();
629 Stubs
703 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList(); local
[all...]
/external/doclava/src/com/google/doclava/
H A DStubs.java33 public class Stubs { class
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp189 StubMap Stubs; local
206 Stubs);
H A DRuntimeDyldMachO.cpp656 StubMap &Stubs) {
750 StubMap::const_iterator i = Stubs.find(Value);
752 if (i != Stubs.end()) {
755 Stubs[Value] = Section.StubOffset;
775 StubMap::const_iterator i = Stubs.find(Value);
777 if (i != Stubs.end()) {
781 Stubs[Value] = Section.StubOffset;
653 processRelocationRef( unsigned SectionID, relocation_iterator RelI, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID, const SymbolTableMap &Symbols, StubMap &Stubs) argument
/external/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp123 void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
779 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList(); local
780 if (!Stubs.empty()) {
782 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
784 OutStreamer.EmitLabel(Stubs[i].first);
786 OutStreamer.EmitValue(MCSymbolRefExpr::Create(Stubs[i].second.getPointer(),
791 Stubs.clear();
888 EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) { argument
905 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
909 MCSymbol *Stub = Stubs[
1033 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetFnStubList(); local
[all...]
/external/llvm/lib/Target/Sparc/
H A DSparcAsmPrinter.cpp450 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList(); local
451 if (!Stubs.empty()) {
454 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
455 OutStreamer.EmitLabel(Stubs[i].first);
456 OutStreamer.EmitSymbolValue(Stubs[i].second.getPointer(), PtrSize);
/external/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp516 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetGVStubList(); local
518 if (!Stubs.empty()) {
523 for (auto &Stub : Stubs)
526 Stubs.clear();
530 Stubs = MMIMacho.GetHiddenGVStubList();
531 if (!Stubs.empty()) {
535 for (auto &Stub : Stubs)
538 Stubs.clear();
558 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList(); local
559 if (!Stubs
[all...]

Completed in 251 milliseconds