HomeSort by: relevance | last modified time | path
    Searched defs:Stub (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-elfabi/
ErrorCollector.h 36 ErrorCollector(const ErrorCollector &Stub) = delete;
  /src/external/apache2/llvm/dist/llvm/lib/InterfaceStub/
TBEHandler.cpp 109 static void mapping(IO &IO, ELFStub &Stub) {
112 IO.mapRequired("TbeVersion", Stub.TbeVersion);
113 IO.mapOptional("SoName", Stub.SoName);
114 IO.mapRequired("Arch", (ELFArchMapper &)Stub.Arch);
115 IO.mapOptional("NeededLibs", Stub.NeededLibs);
116 IO.mapRequired("Symbols", Stub.Symbols);
125 std::unique_ptr<ELFStub> Stub(new ELFStub());
126 YamlIn >> *Stub;
130 if (Stub->TbeVersion > elfabi::TBEVersionCurrent)
132 "TBE version " + Stub->TbeVersion.getAsString() + " is unsupported."
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
GlobalDecl.h 40 Stub = 1,
46 /// a FunctionDecl and the kernel reference type (Kernel, Stub), or
155 : KernelReferenceKind::Stub;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFX86_64.h 156 auto Stub = Stubs.find(OriginalRelValueRef);
157 if (Stub == Stubs.end()) {
158 LLVM_DEBUG(dbgs() << " Create a new stub function for "
166 LLVM_DEBUG(dbgs() << " Stub function found for " << TargetName.data()
168 StubOffset = Stub->second;
172 // to ignore the __ImageBase requirement and just forward to the stub
177 // Resolve original relocation to stub function.
181 // adjust relocation info so resolution writes to the stub function
RuntimeDyldCOFFAArch64.h 29 // throught the Stub.
112 auto Stub = Stubs.find(OriginalRelValueRef);
113 if (Stub == Stubs.end()) {
114 LLVM_DEBUG(dbgs() << " Create a new stub function for "
122 LLVM_DEBUG(dbgs() << " Stub function found for " << TargetName.data()
124 StubOffset = Stub->second;
127 // Resolve original relocation to stub function.
131 // adjust relocation info so resolution writes to the stub function
133 // stub instruction.
307 // Encode the immadiate value for generated Stub instruction (MOVZ
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
OrcABISupport.cpp 164 // Stub format is:
185 "Pointer and stub size must match for algorithm below");
191 uint64_t *Stub = reinterpret_cast<uint64_t *>(StubsBlockWorkingMem);
195 Stub[I] = 0xd61f020058000010 | PtrOffsetField;
219 // Stub format is:
241 "Pointer and stub size must match for algorithm below");
245 uint64_t *Stub = reinterpret_cast<uint64_t *>(StubsBlockWorkingMem);
249 Stub[I] = 0xF1C40000000025ff | PtrOffsetField;
479 // Stub format is:
503 uint64_t *Stub = reinterpret_cast<uint64_t *>(StubsBlockWorkingMem)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-ifs/
llvm-ifs.cpp 149 IFSStub(const IFSStub &Stub)
150 : IfsVersion(Stub.IfsVersion), Triple(Stub.Triple),
151 ObjectFileFormat(Stub.ObjectFileFormat), SOName(Stub.SOName),
152 NeededLibs(Stub.NeededLibs), Symbols(Stub.Symbols) {}
153 IFSStub(IFSStub &&Stub)
154 : IfsVersion(std::move(Stub.IfsVersion)), Triple(std::move(Stub.Triple))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 418 MCSymbol *SSym = getSymbolWithGlobalValueBase(GV, ".DW.stub", TM);
420 // Add information about the stub reference to ELFMMI so that the stub
1339 // The mach-o version of this method defaults to returning a stub reference.
1347 // Add information about the stub reference to MachOMMI so that the stub
1367 // The mach-o version of this method defaults to returning a stub reference.
1373 // Add information about the stub reference to MachOMMI so that the stub
1389 // through a non_lazy_ptr stub instead. One advantage is that it allows th
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsAsmPrinter.cpp 997 // types of the floating point stub
998 // # Stub function to call rettype xxxx (params)
1041 OutStreamer->AddComment("\t# Stub function to call " + Twine(RetType) + " " +
1071 MCSymbolELF *Stub =
1073 TS.emitDirectiveEnt(*Stub);
1077 OutStreamer->emitLabel(Stub);
1117 const MCSymbolRefExpr *E = MCSymbolRefExpr::create(Stub, OutContext);
1120 OutStreamer->emitELFSize(Stub, T_min_E);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp 3355 // Emit a stub for __cfi_check function so that the linker knows about this
5291 // chevron. The kernel stub needs to be loaded from kernel handle and used
5299 auto *Stub = Builder.CreateLoad(Address(Cast, CGM.getPointerAlign()));
5300 Callee.setFunctionPointer(Stub);

Completed in 28 milliseconds