Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:VTT

1347   // All parameters are already in place except VTT, which goes after 'this'.
1350 // Check if we need to add a VTT parameter (which has type void **).
1378 // Check if we need a VTT parameter as well.
1386 &Context.Idents.get("vtt"), T);
1396 /// Initialize the 'vtt' slot if needed.
1399 CGF.GetAddrOfLocalVar(getStructorImplicitParamDecl(CGF)), "vtt");
1420 // Insert the implicit 'vtt' argument as the second argument.
1421 llvm::Value *VTT =
1425 CallArg(RValue::get(VTT), VTTTy, /*needscopy=*/false));
1434 llvm::Value *VTT = CGF.GetVTTParameter(GD, ForVirtualBase, Delegating);
1445 This.getPointer(), VTT, VTTTy, nullptr);
1537 NeedsVTTParameter(CGF.CurGD) && "This class doesn't have VTT");
1543 /// Load the VTT.
1544 llvm::Value *VTT = CGF.LoadCXXVTT();
1546 VTT = CGF.Builder.CreateConstInBoundsGEP1_64(VTT, VirtualPointerIndex);
1548 // And load the address point from the VTT.
1549 return CGF.Builder.CreateAlignedLoad(VTT, CGF.getPointerAlign());
1633 llvm::GlobalVariable *VTT = VTables.GetAddrOfVTT(RD);
1634 VTables.EmitVTTDefinition(VTT, CGM.getVTableLinkage(RD), RD);
2358 /// Return whether the given global decl needs a VTT parameter, which it does