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

  /external/clang/lib/CodeGen/
CGVTables.h 56 void EmitThunk(GlobalDecl GD, const ThunkInfo &Thunk,
63 void MaybeEmitThunkAvailableExternally(GlobalDecl GD, const ThunkInfo &Thunk);
87 static bool needsVTTParameter(GlobalDecl GD);
128 void EmitThunks(GlobalDecl GD);
CGVTables.cpp 61 llvm::Constant *CodeGenModule::GetAddrOfThunk(GlobalDecl GD,
63 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
69 getCXXABI().getMangleContext().mangleCXXDtorThunk(DD, GD.getDtorType(),
75 llvm::Type *Ty = getTypes().GetFunctionTypeForVTable(GD);
76 return GetOrCreateLLVMFunction(Name, Ty, GD, /*ForVTable=*/true);
239 GlobalDecl GD, const ThunkInfo &Thunk) {
240 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
247 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true);
305 GlobalDecl GD, const ThunkInfo &Thunk) {
306 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl())
    [all...]
CodeGenModule.h 505 llvm::Constant *GetAddrOfGlobal(GlobalDecl GD) {
506 if (isa<CXXConstructorDecl>(GD.getDecl()))
507 return GetAddrOfCXXConstructor(cast<CXXConstructorDecl>(GD.getDecl()),
508 GD.getCtorType());
509 else if (isa<CXXDestructorDecl>(GD.getDecl()))
510 return GetAddrOfCXXDestructor(cast<CXXDestructorDecl>(GD.getDecl()),
511 GD.getDtorType());
512 else if (isa<FunctionDecl>(GD.getDecl()))
513 return GetAddrOfFunction(GD);
515 return GetAddrOfGlobalVar(cast<VarDecl>(GD.getDecl()))
    [all...]
CodeGenTypes.h 131 llvm::FunctionType *GetFunctionType(GlobalDecl GD);
142 llvm::Type *GetFunctionTypeForVTable(GlobalDecl GD);
174 const CGFunctionInfo &arrangeGlobalDeclaration(GlobalDecl GD);
CodeGenModule.cpp 368 StringRef CodeGenModule::getMangledName(GlobalDecl GD) {
369 const NamedDecl *ND = cast<NamedDecl>(GD.getDecl());
371 StringRef &Str = MangledDeclNames[GD.getCanonicalDecl()];
386 getCXXABI().getMangleContext().mangleCXXCtor(D, GD.getCtorType(), Out);
388 getCXXABI().getMangleContext().mangleCXXDtor(D, GD.getDtorType(), Out);
406 void CodeGenModule::getBlockMangledName(GlobalDecl GD, MangleBuffer &Buffer,
409 const Decl *D = GD.getDecl();
415 MangleCtx.mangleCtorBlock(CD, GD.getCtorType(), BD, Out);
417 MangleCtx.mangleDtorBlock(DD, GD.getDtorType(), BD, Out);
633 void CodeGenModule::SetFunctionAttributes(GlobalDecl GD,
    [all...]
CGVTT.cpp 123 bool CodeGenVTables::needsVTTParameter(GlobalDecl GD) {
124 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
131 if (isa<CXXConstructorDecl>(MD) && GD.getCtorType() == Ctor_Base)
135 if (isa<CXXDestructorDecl>(MD) && GD.getDtorType() == Dtor_Base)
CGCXX.cpp 216 GlobalDecl GD(ctor, ctorType);
218 StringRef name = getMangledName(GD);
226 return cast<llvm::Function>(GetOrCreateLLVMFunction(name, fnType, GD,
280 GlobalDecl GD(dtor, dtorType);
282 StringRef name = getMangledName(GD);
289 return cast<llvm::Function>(GetOrCreateLLVMFunction(name, fnType, GD,
CodeGenFunction.cpp 330 void CodeGenFunction::StartFunction(GlobalDecl GD, QualType RetTy,
335 const Decl *D = GD.getDecl();
391 DI->EmitFunctionStart(GD, FnType, CurFn, Builder);
491 void CodeGenFunction::GenerateCode(GlobalDecl GD, llvm::Function *Fn,
493 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
502 CurGD = GD;
513 StartFunction(GD, ResTy, Fn, FnInfo, Args, BodyRange.getBegin());
    [all...]
CGCall.cpp 303 CodeGenTypes::arrangeGlobalDeclaration(GlobalDecl GD) {
305 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
308 return arrangeCXXConstructorDeclaration(CD, GD.getCtorType());
311 return arrangeCXXDestructor(DD, GD.getDtorType());
    [all...]
CGDebugInfo.h 184 void EmitFunctionStart(GlobalDecl GD, QualType FnType,
ItaniumCXXABI.cpp 165 static bool HasThisReturn(GlobalDecl GD) {
166 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
167 return ((isa<CXXDestructorDecl>(MD) && GD.getDtorType() != Dtor_Deleting) ||
    [all...]
CodeGenFunction.h     [all...]
CGClass.cpp 284 static llvm::Value *GetVTTParameter(CodeGenFunction &CGF, GlobalDecl GD,
286 if (!CodeGenVTables::needsVTTParameter(GD)) {
292 const CXXRecordDecl *Base = cast<CXXMethodDecl>(GD.getDecl())->getParent();
    [all...]
CGBlocks.cpp     [all...]
CGDebugInfo.cpp     [all...]
  /external/clang/include/clang/AST/
GlobalDecl.h 78 GlobalDecl GD;
79 GD.Value.setFromOpaqueValue(P);
80 return GD;
105 static unsigned getHashValue(clang::GlobalDecl GD) {
106 return DenseMapInfo<void*>::getHashValue(GD.getAsOpaquePtr());
VTableBuilder.h 345 uint64_t getMethodVTableIndex(GlobalDecl GD);
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 104 IN, SN, SB, TE, I, XE, CS, BA, LA, CE, PR, ND, PM, SM, EU, GD, TB, DY, HO, ER, TM, YB, LU,
  /external/clang/lib/AST/
VTableBuilder.cpp     [all...]

Completed in 245 milliseconds