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

  /external/clang/include/clang/AST/
GlobalDecl.h 81 GlobalDecl GD;
82 GD.Value.setFromOpaqueValue(P);
83 return GD;
108 static unsigned getHashValue(clang::GlobalDecl GD) {
109 return DenseMapInfo<void*>::getHashValue(GD.getAsOpaquePtr());
  /external/clang/lib/CodeGen/
CGCXX.cpp 225 GlobalDecl GD;
227 GD = GlobalDecl(DD, toCXXDtorType(Type));
230 GD = GlobalDecl(CD, toCXXCtorType(Type));
233 setFunctionLinkage(GD, Fn);
234 setFunctionDLLStorageClass(GD, Fn);
236 CodeGenFunction(*this).GenerateCode(GD, Fn, FnInfo);
245 GlobalDecl GD;
247 GD = GlobalDecl(CD, toCXXCtorType(Type));
249 GD = GlobalDecl(cast<CXXDestructorDecl>(MD), toCXXDtorType(Type));
259 getMangledName(GD), FnType, GD, /*ForVTable=*/false, DontDefer
    [all...]
CGVTables.cpp 35 llvm::Constant *CodeGenModule::GetAddrOfThunk(GlobalDecl GD,
37 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
43 getCXXABI().getMangleContext().mangleCXXDtorThunk(DD, GD.getDtorType(),
48 llvm::Type *Ty = getTypes().GetFunctionTypeForVTable(GD);
49 return GetOrCreateLLVMFunction(Name, Ty, GD, /*ForVTable=*/true,
60 GlobalDecl GD) {
61 CGM.setFunctionLinkage(GD, ThunkFn);
62 CGM.getCXXABI().setThunkLinkage(ThunkFn, ForVTable, GD,
66 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
146 GlobalDecl GD, const ThunkInfo &Thunk)
    [all...]
CGCall.cpp 267 GlobalDecl GD;
269 GD = GlobalDecl(CD, toCXXCtorType(Type));
277 GD = GlobalDecl(DD, toCXXDtorType(Type));
293 CanQualType resultType = TheCXXABI.HasThisReturn(GD)
295 : TheCXXABI.hasMostDerivedReturn(GD)
362 GlobalDecl GD(D, CtorKind);
363 CanQualType ResultType = TheCXXABI.HasThisReturn(GD)
365 : TheCXXABI.hasMostDerivedReturn(GD)
456 CodeGenTypes::arrangeGlobalDeclaration(GlobalDecl GD) {
458 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl())
    [all...]
CGDecl.cpp 261 GlobalDecl GD;
263 GD = GlobalDecl(CD, Ctor_Base);
265 GD = GlobalDecl(DD, Dtor_Base);
267 GD = GlobalDecl(FD);
273 if (GD.getDecl())
274 (void)GetAddrOfGlobal(GD);
    [all...]
CodeGenModule.h 313 DeferredGlobal(llvm::GlobalValue *GV, GlobalDecl GD) : GV(GV), GD(GD) {}
315 GlobalDecl GD;
318 void addDeferredDeclToEmit(llvm::GlobalValue *GV, GlobalDecl GD) {
319 DeferredDeclsToEmit.emplace_back(GV, GD);
454 bool shouldEmitFunction(GlobalDecl GD);
682 llvm::Constant *GetAddrOfGlobal(GlobalDecl GD, bool IsForDefinition = false);
716 llvm::Constant *GetAddrOfFunction(GlobalDecl GD, llvm::Type *Ty = nullptr,
728 llvm::Constant *GetAddrOfThunk(GlobalDecl GD, const ThunkInfo &Thunk)
    [all...]
CGDebugInfo.cpp     [all...]
CodeGenModule.cpp 283 for (const GlobalDecl &GD : Aliases) {
284 const auto *D = cast<ValueDecl>(GD.getDecl());
291 StringRef MangledName = getMangledName(GD);
345 for (const GlobalDecl &GD : Aliases) {
346 StringRef MangledName = getMangledName(GD);
642 StringRef CodeGenModule::getMangledName(GlobalDecl GD) {
643 GlobalDecl CanonicalGD = GD.getCanonicalDecl();
649 CXXCtorType OrigCtorType = GD.getCtorType();
660 const auto *ND = cast<NamedDecl>(GD.getDecl());
666 getCXXABI().getMangleContext().mangleCXXCtor(D, GD.getCtorType(), Out)
    [all...]
  /external/clang/test/Layout/
ms-x86-vtordisp.cpp 349 struct GD: public virtual GC, public virtual GB {};
355 // CHECK-NEXT: 0 | struct GD
356 // CHECK-NEXT: 0 | (GD vbtable pointer)
371 // CHECK-X64-NEXT: 0 | struct GD
372 // CHECK-X64-NEXT: 0 | (GD vbtable pointer)
454 sizeof(GD)+
  /device/linaro/bootloader/edk2/EmbeddedPkg/GdbStub/
GdbStubInternal.h 181 UINT32 GD:1; // Global detect enable
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbDebugAgent/
GdbDebugAgent.h 149 UINT32 GD:1; // Global detect enable
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVModule.cpp 429 auto GD = new SPIRVGroupDecorate(G, Targets);
431 GroupDecVec.push_back(GD);
    [all...]
  /external/clang/lib/AST/
VTableBuilder.cpp     [all...]

Completed in 3535 milliseconds