Searched refs:VTable (Results 1 - 20 of 20) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbolTypeVTable.h1 //===- PDBSymbolTypeVTable.h - VTable type info -----------------*- C++ -*-===//
21 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::VTable)
H A DUDTLayout.h101 std::unique_ptr<PDBSymbolTypeVTable> VTable);
107 std::unique_ptr<PDBSymbolTypeVTable> VTable; member in class:llvm::pdb::VTableLayoutItem
144 VTableLayoutItem *VTable = nullptr; member in class:llvm::pdb::UDTLayoutBase
H A DPDBTypes.h269 VTable, member in class:llvm::pdb::PDB_Checksum::PDB_SymType
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGVTT.cpp23 const VTTVTable &VTable,
26 if (VTable.getBase() == MostDerivedClass) {
27 assert(VTable.getBaseOffset().isZero() &&
34 VTable.getBaseSubobject(),
35 VTable.isVirtual(),
61 llvm::GlobalVariable *VTable = VTables[i->VTableIndex]; local
81 VTable->getValueType(), VTable, Idxs, /*InBounds=*/true,
21 GetAddrOfVTTVTable(CodeGenVTables &CGVT, CodeGenModule &CGM, const CXXRecordDecl *MostDerivedClass, const VTTVTable &VTable, llvm::GlobalVariable::LinkageTypes Linkage, VTableLayout::AddressPointsMapTy &AddressPoints) argument
H A DCGVTables.cpp899 llvm::GlobalVariable *VTable = local
903 VTable->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
912 VTable->hasLocalLinkage());
913 components.finishAndSetAsInitializer(VTable);
917 assert(!VTable->isDeclaration() && "Shouldn't set properties on declaration");
918 CGM.setGVProperties(VTable, RD);
920 CGM.EmitVTableTypeMetadata(RD, VTable, *VTLayout.get());
922 if (UsingRelativeLayout && !VTable->isDSOLocal())
923 GenerateRelativeVTableAlias(VTable, OutName);
925 return VTable;
934 GenerateRelativeVTableAlias(llvm::GlobalVariable *VTable, llvm::StringRef AliasNameRef) argument
1249 EmitVTableTypeMetadata(const CXXRecordDecl *RD, llvm::GlobalVariable *VTable, const VTableLayout &VTLayout) argument
[all...]
H A DCGCXX.cpp254 llvm::Value *VTable = CGM.getCXXABI().getAddrOfVTable(RD, CharUnits()); local
256 VTable = CGF.Builder.CreateBitCast(VTable, Ty->getPointerTo());
257 assert(VTable && "BuildVirtualCall = kext vtbl pointer is null");
265 CGF.Builder.CreateConstInBoundsGEP1_64(VTable, VTableIndex, "vfnkxt");
H A DItaniumCXXABI.cpp681 llvm::Value *VTable = local
723 llvm::Value *VFPAddr = Builder.CreateGEP(VTable, VTableOffset);
741 llvm::Value *VFPAddr = Builder.CreateGEP(VTable, VTableOffset);
751 {VTable, VTableOffset});
754 llvm::Value *VFPAddr = CGF.Builder.CreateGEP(VTable, VTableOffset);
784 CGM.getIntrinsic(llvm::Intrinsic::type_test), {VTable, AllVtables});
787 {VTable, ValidVtable});
1252 llvm::Value *VTable = local
1257 VTable, -2, "complete-offset.ptr");
1533 llvm::Value *VTable local
1546 llvm::Value *VTable = local
1739 llvm::GlobalVariable *VTable = getAddrOfVTable(RD, CharUnits()); local
1819 llvm::GlobalValue *VTable = getAddrOfVTable(VTableClass, CharUnits()); local
1890 llvm::GlobalVariable *&VTable = VTables[RD]; local
1946 llvm::Value *VTable = CGF.GetVTablePtr( local
3562 llvm::Constant *VTable = nullptr; local
[all...]
H A DCGVTables.h155 void GenerateRelativeVTableAlias(llvm::GlobalVariable *VTable,
H A DMicrosoftCXXABI.cpp279 llvm::GlobalVariable *VTable);
1655 llvm::GlobalVariable *VTable) {
1666 VTable->setVCallVisibilityMetadata(TypeVis);
1679 CGM.AddVTableTypeMetadata(VTable, AddressPoint, RD);
1684 CGM.AddVTableTypeMetadata(VTable, AddressPoint,
1703 CGM.AddVTableTypeMetadata(VTable, AddressPoint, DerivedRD);
1708 CGM.AddVTableTypeMetadata(VTable, AddressPoint, RD);
1717 llvm::GlobalVariable *VTable = getAddrOfVTable(RD, Info->FullOffsetInMDC); local
1718 if (VTable->hasInitializer())
1732 VTable
1653 emitVTableTypeMetadata(const VPtrInfo &Info, const CXXRecordDecl *RD, llvm::GlobalVariable *VTable) argument
1926 llvm::Value *VTable = CGF.GetVTablePtr(VPtr, Ty->getPointerTo(), local
1951 CGF.EmitTypeMetadataCodeForVCall(getObjectWithVPtr(), VTable, Loc); local
2083 llvm::Value *VTable = CGF.GetVTablePtr( local
[all...]
H A DCGClass.cpp2621 llvm::Instruction *VTable = Builder.CreateLoad(VTablePtrSrc, "vtable"); local
2623 CGM.DecorateInstructionWithTBAA(VTable, TBAAInfo);
2627 CGM.DecorateInstructionWithInvariantGroup(VTable, RD);
2629 return VTable;
2668 llvm::Value *VTable,
2671 EmitVTablePtrCheckForCall(RD, VTable, CodeGenFunction::CFITCK_VCall, Loc);
2681 llvm::Value *CastedVTable = Builder.CreateBitCast(VTable, Int8PtrTy);
2690 llvm::Value *VTable,
2696 EmitVTablePtrCheck(RD, VTable, TCK, Loc);
2733 llvm::Value *VTable; local
2667 EmitTypeMetadataCodeForVCall(const CXXRecordDecl *RD, llvm::Value *VTable, SourceLocation Loc) argument
2689 EmitVTablePtrCheckForCall(const CXXRecordDecl *RD, llvm::Value *VTable, CFITypeCheckKind TCK, SourceLocation Loc) argument
2745 EmitVTablePtrCheck(const CXXRecordDecl *RD, llvm::Value *VTable, CFITypeCheckKind TCK, SourceLocation Loc) argument
2836 EmitVTableTypeCheckedLoad( const CXXRecordDecl *RD, llvm::Value *VTable, uint64_t VTableByteOffset) argument
[all...]
H A DCodeGenModule.h1385 llvm::GlobalVariable *VTable,
1417 void AddVTableTypeMetadata(llvm::GlobalVariable *VTable, CharUnits Offset,
H A DCGExprCXX.cpp399 llvm::Value *VTable; local
401 std::tie(VTable, RD) = CGM.getCXXABI().LoadVTablePtr(
403 EmitVTablePtrCheckForCall(RD, VTable, CFITCK_NVCall, CE->getBeginLoc());
H A DCodeGenFunction.h2254 /// EmitVTablePtrCheckForCall - Virtual method MD is being called via VTable.
2255 /// If vptr CFI is enabled, emit a check that VTable is valid.
2256 void EmitVTablePtrCheckForCall(const CXXRecordDecl *RD, llvm::Value *VTable,
2259 /// EmitVTablePtrCheck - Emit a check that VTable is a valid virtual table for
2261 void EmitVTablePtrCheck(const CXXRecordDecl *RD, llvm::Value *VTable,
2265 /// that VTable is a member of RD's type identifier. Or, if vptr CFI is
2266 /// enabled, emit a check that VTable is a member of RD's type identifier.
2268 llvm::Value *VTable, SourceLocation Loc);
2276 llvm::Value *EmitVTableTypeCheckedLoad(const CXXRecordDecl *RD, llvm::Value *VTable,
H A DCodeGenModule.cpp6282 void CodeGenModule::AddVTableTypeMetadata(llvm::GlobalVariable *VTable, argument
6287 VTable->addTypeMetadata(Offset.getQuantity(), MD);
6291 VTable->addTypeMetadata(Offset.getQuantity(),
6296 VTable->addTypeMetadata(Offset.getQuantity(), MD);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DGlobalDCE.cpp208 GlobalVariable *VTable = VTableInfo.first; local
212 getPointerAtOffset(VTable->getInitializer(), VTableOffset + CallOffset,
216 VFESafeVTables.erase(VTable);
223 VFESafeVTables.erase(VTable);
284 for (auto *VTable : VFESafeVTables)
285 dbgs() << " " << VTable->getName() << "\n";
H A DWholeProgramDevirt.cpp362 // A virtual call site. VTable is the loaded virtual table pointer, and CS is
365 Value *VTable = nullptr; member in struct:__anon2864::VirtualCallSite
471 void addCallSite(Value *VTable, CallBase &CB, unsigned *NumUnsafeUses);
491 void VTableSlotInfo::addCallSite(Value *VTable, CallBase &CB, argument
495 CSI.CallSites.push_back({VTable, CB, NumUnsafeUses});
1337 Args.push_back(IRB.CreateBitCast(VCallSite.VTable, Int8PtrTy));
1520 B.CreateICmp(IsOne ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_NE, Call.VTable,
1521 B.CreateBitCast(UniqueMemberAddr, Call.VTable->getType()));
1589 B.CreateGEP(Int8Ty, B.CreateBitCast(Call.VTable, Int8PtrTy), Byte);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
H A DUDTLayout.cpp99 VTable(std::move(VT)) {
100 auto VTableType = cast<PDBSymbolTypePointer>(VTable->getType());
221 VTable = VTLayout.get();
H A DPDBSymbol.cpp90 FACTORY_SYMTAG_CASE(VTable, PDBSymbolTypeVTable)
H A DPDBExtras.cpp264 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, VTable, OS)
/netbsd-current/external/public-domain/sqlite/dist/
H A Dsqlite3.c15346 typedef struct VTable VTable; typedef in typeref:struct:VTable
16456 VTable *pVtab; /* Used when p4type is P4_VTAB */
17689 VTable **aVTrans; /* Virtual tables with open transactions */
17690 VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */
18291 ** All VTable objects that correspond to a single table in a shared
18295 ** table, it searches the list for the VTable that corresponds to the
18300 ** schema is being reloaded for some reason), the VTable objects are not
18312 ** sqlite3DbMalloc(), using the connection handle stored in VTable.db as
18315 struct VTable { struct
[all...]

Completed in 578 milliseconds