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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp69 COFF::Auxiliary Aux; member in struct:__anon3739::AuxSymbol
82 AuxiliarySymbols Aux; member in class:__anon3739::COFFSymbol
320 Symbol->Aux.resize(1);
321 Symbol->Aux[0] = {};
322 Symbol->Aux[0].AuxType = ATSectionDefinition;
323 Symbol->Aux[0].Aux.SectionDefinition.Selection = MCSec.getSelection();
395 Sym->Aux.resize(1);
396 memset(&Sym->Aux[0], 0, sizeof(Sym->Aux[
997 AuxSymbol &Aux = Sec->Symbol->Aux[0]; local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DAMDGPU.cpp371 void AMDGPUTargetInfo::setAuxTarget(const TargetInfo *Aux) { argument
372 assert(HalfFormat == Aux->HalfFormat);
373 assert(FloatFormat == Aux->FloatFormat);
374 assert(DoubleFormat == Aux->DoubleFormat);
381 copyAuxTarget(Aux);
393 if (Aux->hasFloat128Type()) {
H A DAMDGPU.h389 void setAuxTarget(const TargetInfo *Aux) override;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTImporter.h182 ++Aux[D];
188 --Aux[Nodes.back()];
194 auto Pos = Aux.find(Nodes.back());
195 return Pos != Aux.end() && Pos->second > 1;
218 llvm::SmallDenseMap<Decl *, int, 32> Aux; member in class:clang::ASTImporter::ImportPathTy
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp587 uint8_t AuxSymbolIdx, const T *&Aux) {
590 Aux = reinterpret_cast<const T*>(AuxData.data());
1506 const coff_aux_function_definition *Aux; local
1507 if (std::error_code EC = getSymbolAuxData(Obj, Symbol, I, Aux))
1511 W.printNumber("TagIndex", Aux->TagIndex);
1512 W.printNumber("TotalSize", Aux->TotalSize);
1513 W.printHex("PointerToLineNumber", Aux->PointerToLinenumber);
1514 W.printHex("PointerToNextFunction", Aux->PointerToNextFunction);
1517 const coff_aux_weak_external *Aux; local
1518 if (std::error_code EC = getSymbolAuxData(Obj, Symbol, I, Aux))
585 getSymbolAuxData(const COFFObjectFile *Obj, COFFSymbolRef Symbol, uint8_t AuxSymbolIdx, const T *&Aux) argument
1537 const coff_aux_section_definition *Aux; local
1563 const coff_aux_clr_token *Aux; local
[all...]
H A DELFDumper.cpp520 VerdAux Aux;
521 Aux.Offset = VerdauxBuf - Start;
523 Aux.Name = std::string(StrTabOrErr->drop_front(Verdaux->vda_name));
525 Aux.Name = "<invalid vda_name: " + to_string(Verdaux->vda_name) + ">";
526 return Aux;
655 VernAux &Aux = *VN.AuxV.emplace(VN.AuxV.end()); local
656 Aux.Hash = Vernaux->vna_hash;
657 Aux.Flags = Vernaux->vna_flags;
658 Aux.Other = Vernaux->vna_other;
659 Aux
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp822 auto *Aux = reinterpret_cast<coff_aux_section_definition *>(BufferStart + local
824 Aux->Length = SectionOneSize;
825 Aux->NumberOfRelocations = Data.size();
826 Aux->NumberOfLinenumbers = 0;
827 Aux->CheckSum = 0;
828 Aux->NumberLowPart = 0;
829 Aux->Selection = 0;
841 Aux = reinterpret_cast<coff_aux_section_definition *>(BufferStart +
843 Aux->Length = SectionTwoSize;
844 Aux
[all...]
H A DCOFFObjectFile.cpp1009 const uint8_t *Aux = nullptr; local
1014 Aux = reinterpret_cast<const uint8_t *>(Symbol.getRawPtr()) + SymbolSize;
1016 // Verify that the Aux symbol points to a valid entry in the symbol table.
1017 uintptr_t Offset = uintptr_t(Aux) - uintptr_t(base());
1021 report_fatal_error("Aux Symbol data was outside of symbol table.");
1024 "Aux Symbol data did not point to the beginning of a symbol");
1027 return makeArrayRef(Aux, Symbol.getNumberOfAuxSymbols() * SymbolSize);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h1453 virtual void setAuxTarget(const TargetInfo *Aux) {}
1460 void copyAuxTarget(const TargetInfo *Aux);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp841 void TargetInfo::copyAuxTarget(const TargetInfo *Aux) { argument
843 auto *Src = static_cast<const TransferrableTargetInfo*>(Aux);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp958 if (auto *Aux = getAuxTarget())
959 getTarget().setAuxTarget(Aux);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1836 for (const ELFYAML::VernauxEntry &Aux : VE.AuxV)
1837 DotDynstr.add(Aux.Name);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp4646 auto *Aux = Context.getAuxTargetInfo(); local
4664 auto *HostTI = LangOpts.CUDAIsDevice ? Aux : &TI;
4665 auto *DeviceTI = LangOpts.CUDAIsDevice ? &TI : Aux;

Completed in 134 milliseconds