HomeSort by relevance Sort by last modified time
    Searched refs:VTT (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/CodeGen/
CGVTT.cpp 41 CodeGenVTables::EmitVTTDefinition(llvm::GlobalVariable *VTT,
90 VTT->setInitializer(Init);
93 VTT->setLinkage(Linkage);
96 CGM.setTypeVisibility(VTT, RD, CodeGenModule::TVK_ForVTT);
100 assert(RD->getNumVBases() && "Only classes with virtual bases need a VTT");
108 // This will also defer the definition of the VTT.
CGVTables.h 81 /// getSubVTTIndex - Return the index of the sub-VTT for the base class of the
85 /// getSecondaryVirtualPointerIndex - Return the index in the VTT where the
111 /// GetAddrOfVTable - Get the address of the VTT for the given record decl.
115 void EmitVTTDefinition(llvm::GlobalVariable *VTT,
124 /// vtable, the RTTI data structure (if RTTI is enabled) and the VTT
CGClass.cpp 290 // This constructor/destructor does not need a VTT parameter.
297 llvm::Value *VTT;
302 // If this is a delegating constructor call, just load the VTT.
308 "doing no-op VTT offset in base dtor/ctor?");
319 assert(SubVTTIndex != 0 && "Sub-VTT index must be greater than zero!");
323 // A VTT parameter was passed to the constructor, use it.
324 VTT = LoadCXXVTT();
325 VTT = Builder.CreateConstInBoundsGEP1_64(VTT, SubVTTIndex);
327 // We're the complete constructor, so get the VTT by name
    [all...]
ItaniumCXXABI.cpp 761 /// The generic ABI passes 'this', plus a VTT if it's initializing a
772 // Check if we need to add a VTT parameter (which has type void **).
    [all...]

Completed in 64 milliseconds