Searched refs:Aux (Results 1 - 13 of 13) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp68 COFF::Auxiliary Aux; member in struct:__anon4798::AuxSymbol
81 AuxiliarySymbols Aux; member in class:__anon4798::COFFSymbol
312 Symbol->Aux.resize(1);
313 Symbol->Aux[0] = {};
314 Symbol->Aux[0].AuxType = ATSectionDefinition;
315 Symbol->Aux[0].Aux.SectionDefinition.Selection = MCSec.getSelection();
385 Sym->Aux.resize(1);
386 memset(&Sym->Aux[0], 0, sizeof(Sym->Aux[
939 AuxSymbol &Aux = Sec->Symbol->Aux[0]; local
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DAMDGPU.cpp344 void AMDGPUTargetInfo::setAuxTarget(const TargetInfo *Aux) { argument
345 assert(HalfFormat == Aux->HalfFormat);
346 assert(FloatFormat == Aux->FloatFormat);
347 assert(DoubleFormat == Aux->DoubleFormat);
354 copyAuxTarget(Aux);
H A DAMDGPU.h354 void setAuxTarget(const TargetInfo *Aux) override;
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTImporter.h181 ++Aux[D];
187 --Aux[Nodes.back()];
193 auto Pos = Aux.find(Nodes.back());
194 return Pos != Aux.end() && Pos->second > 1;
217 llvm::SmallDenseMap<Decl *, int, 32> Aux; member in class:clang::ASTImporter::ImportPathTy
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp577 uint8_t AuxSymbolIdx, const T *&Aux) {
580 Aux = reinterpret_cast<const T*>(AuxData.data());
1480 const coff_aux_function_definition *Aux; local
1481 if (std::error_code EC = getSymbolAuxData(Obj, Symbol, I, Aux))
1485 W.printNumber("TagIndex", Aux->TagIndex);
1486 W.printNumber("TotalSize", Aux->TotalSize);
1487 W.printHex("PointerToLineNumber", Aux->PointerToLinenumber);
1488 W.printHex("PointerToNextFunction", Aux->PointerToNextFunction);
1491 const coff_aux_weak_external *Aux; local
1492 if (std::error_code EC = getSymbolAuxData(Obj, Symbol, I, Aux))
575 getSymbolAuxData(const COFFObjectFile *Obj, COFFSymbolRef Symbol, uint8_t AuxSymbolIdx, const T *&Aux) argument
1519 const coff_aux_section_definition *Aux; local
1547 const coff_aux_clr_token *Aux; local
[all...]
H A DELFDumper.cpp490 VerdAux Aux;
491 Aux.Offset = VerdauxBuf - Start;
493 Aux.Name = StrTabOrErr->drop_front(Verdaux->vda_name);
495 Aux.Name = "<invalid vda_name: " + to_string(Verdaux->vda_name) + ">";
496 return Aux;
625 VernAux &Aux = *VN.AuxV.emplace(VN.AuxV.end()); local
626 Aux.Hash = Vernaux->vna_hash;
627 Aux.Flags = Vernaux->vna_flags;
628 Aux.Other = Vernaux->vna_other;
629 Aux
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp820 auto *Aux = reinterpret_cast<coff_aux_section_definition *>(BufferStart + local
822 Aux->Length = SectionOneSize;
823 Aux->NumberOfRelocations = Data.size();
824 Aux->NumberOfLinenumbers = 0;
825 Aux->CheckSum = 0;
826 Aux->NumberLowPart = 0;
827 Aux->Selection = 0;
839 Aux = reinterpret_cast<coff_aux_section_definition *>(BufferStart +
841 Aux->Length = SectionTwoSize;
842 Aux
[all...]
H A DCOFFObjectFile.cpp1023 const uint8_t *Aux = nullptr; local
1028 Aux = reinterpret_cast<const uint8_t *>(Symbol.getRawPtr()) + SymbolSize;
1030 // Verify that the Aux symbol points to a valid entry in the symbol table.
1031 uintptr_t Offset = uintptr_t(Aux) - uintptr_t(base());
1035 report_fatal_error("Aux Symbol data was outside of symbol table.");
1038 "Aux Symbol data did not point to the beginning of a symbol");
1041 return makeArrayRef(Aux, Symbol.getNumberOfAuxSymbols() * SymbolSize);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp817 void TargetInfo::copyAuxTarget(const TargetInfo *Aux) { argument
819 auto *Src = static_cast<const TransferrableTargetInfo*>(Aux);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h1388 virtual void setAuxTarget(const TargetInfo *Aux) {}
1395 void copyAuxTarget(const TargetInfo *Aux);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1388 for (const ELFYAML::VernauxEntry &Aux : VE.AuxV)
1389 DotDynstr.add(Aux.Name);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp939 if (auto *Aux = getAuxTarget())
940 getTarget().setAuxTarget(Aux);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp4600 auto *Aux = Context.getAuxTargetInfo(); local
4618 auto *HostTI = LangOpts.CUDAIsDevice ? Aux : &TI;
4619 auto *DeviceTI = LangOpts.CUDAIsDevice ? &TI : Aux;

Completed in 150 milliseconds