HomeSort by: relevance | last modified time | path
    Searched refs:GD (Results 1 - 25 of 49) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
IteratedDominanceFrontier.h 27 ChildrenGetterTy(const GraphDiff<BasicBlock *, IsPostDom> *GD) : GD(GD) {
28 assert(GD);
33 const GraphDiff<BasicBlock *, IsPostDom> *GD = nullptr;
49 const GraphDiff<BasicBlock *, IsPostDom> *GD)
50 : IDFCalculatorBase(DT, ChildrenGetterTy(GD)) {
51 assert(GD);
71 if (!GD) {
76 return GD->template getChildren<IsPostDom>(N)
    [all...]
MemorySSAUpdater.h 294 const GraphDiff<BasicBlock *> *GD);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCXX.cpp 207 llvm::Function *CodeGenModule::codegenCXXStructor(GlobalDecl GD) {
208 const CGFunctionInfo &FnInfo = getTypes().arrangeCXXStructorDeclaration(GD);
210 getAddrOfCXXStructor(GD, &FnInfo, /*FnType=*/nullptr,
213 setFunctionLinkage(GD, Fn);
215 CodeGenFunction(*this).GenerateCode(GD, Fn, FnInfo);
216 setNonAliasAttributes(GD, Fn);
217 SetLLVMFunctionAttributesForDefinition(cast<CXXMethodDecl>(GD.getDecl()), Fn);
222 GlobalDecl GD, const CGFunctionInfo *FnInfo, llvm::FunctionType *FnType,
224 auto *MD = cast<CXXMethodDecl>(GD.getDecl());
230 GD.getDtorType() == Dtor_Complete &
    [all...]
CGVTables.cpp 35 GlobalDecl GD) {
36 return GetOrCreateLLVMFunction(Name, FnTy, GD, /*ForVTable=*/true,
42 GlobalDecl GD) {
43 CGM.setFunctionLinkage(GD, ThunkFn);
44 CGM.getCXXABI().setThunkLinkage(ThunkFn, ForVTable, GD,
48 CGM.setGVProperties(ThunkFn, GD);
159 GlobalDecl GD, const ThunkInfo &Thunk) {
160 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
167 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true);
236 void CodeGenFunction::StartThunk(llvm::Function *Fn, GlobalDecl GD,
    [all...]
CodeGenModule.cpp 342 for (const GlobalDecl &GD : Aliases) {
343 const auto *D = cast<ValueDecl>(GD.getDecl());
350 StringRef MangledName = getMangledName(GD);
402 for (const GlobalDecl &GD : Aliases) {
403 StringRef MangledName = getMangledName(GD);
1073 GlobalDecl GD) const {
1074 const auto *D = dyn_cast<NamedDecl>(GD.getDecl());
1077 getCXXABI().setCXXDestructorDLLStorage(GV, Dtor, GD.getDtorType());
1094 GlobalDecl GD) const {
1095 setDLLImportDLLExport(GV, GD);
    [all...]
CodeGenModule.h 353 void addDeferredDeclToEmit(GlobalDecl GD) {
354 DeferredDeclsToEmit.emplace_back(GD);
531 bool shouldEmitFunction(GlobalDecl GD);
810 void setGVProperties(llvm::GlobalValue *GV, GlobalDecl GD) const;
831 llvm::Constant *GetAddrOfGlobal(GlobalDecl GD,
878 llvm::Constant *GetAddrOfFunction(GlobalDecl GD, llvm::Type *Ty = nullptr,
888 ConstantAddress GetAddrOfMSGuidDecl(const MSGuidDecl *GD);
896 GlobalDecl GD);
1018 llvm::Function *codegenCXXStructor(GlobalDecl GD);
1022 getAddrOfCXXStructor(GlobalDecl GD, const CGFunctionInfo *FnInfo = nullptr
    [all...]
CGVTables.h 60 llvm::Constant *maybeEmitThunk(GlobalDecl GD,
136 void EmitThunks(GlobalDecl GD);
CGCXXABI.h 90 virtual bool isThisCompleteObject(GlobalDecl GD) const = 0;
107 virtual bool HasThisReturn(GlobalDecl GD) const { return false; }
109 virtual bool hasMostDerivedReturn(GlobalDecl GD) const { return false; }
332 buildStructorSignature(GlobalDecl GD,
365 adjustThisArgumentForVirtualFunctionCall(CodeGenFunction &CGF, GlobalDecl GD,
385 virtual CharUnits getVirtualFunctionPrologueThisAdjustment(GlobalDecl GD) {
456 GlobalDecl GD, Address This,
471 GlobalDecl GD,
481 GlobalDecl GD, bool ReturnAdjustment) = 0;
553 virtual bool NeedsVTTParameter(GlobalDecl GD);
    [all...]
CodeGenTypes.h 142 llvm::FunctionType *GetFunctionType(GlobalDecl GD);
158 llvm::Type *GetFunctionTypeForVTable(GlobalDecl GD);
190 const CGFunctionInfo &arrangeGlobalDeclaration(GlobalDecl GD);
240 const CGFunctionInfo &arrangeCXXStructorDeclaration(GlobalDecl GD);
CGCUDARuntime.h 100 GlobalDecl GD) = 0;
MicrosoftCXXABI.cpp 52 bool HasThisReturn(GlobalDecl GD) const override;
53 bool hasMostDerivedReturn(GlobalDecl GD) const override;
61 bool isThisCompleteObject(GlobalDecl GD) const override {
64 if (isa<CXXDestructorDecl>(GD.getDecl())) {
65 switch (GD.getDtorType()) {
215 buildStructorSignature(GlobalDecl GD,
252 adjustThisArgumentForVirtualFunctionCall(CodeGenFunction &CGF, GlobalDecl GD,
308 CGCallee getVirtualFunctionPointer(CodeGenFunction &CGF, GlobalDecl GD,
317 void adjustCallArgsForDestructorThunk(CodeGenFunction &CGF, GlobalDecl GD,
319 assert(GD.getDtorType() == Dtor_Deleting &
    [all...]
ItaniumCXXABI.cpp 77 bool isThisCompleteObject(GlobalDecl GD) const override {
80 if (isa<CXXDestructorDecl>(GD.getDecl())) {
81 switch (GD.getDtorType()) {
94 if (isa<CXXConstructorDecl>(GD.getDecl())) {
95 switch (GD.getCtorType()) {
207 buildStructorSignature(GlobalDecl GD,
271 CGCallee getVirtualFunctionPointer(CodeGenFunction &CGF, GlobalDecl GD,
285 void setThunkLinkage(llvm::Function *Thunk, bool ForVTable, GlobalDecl GD,
291 CGM.setGVProperties(Thunk, GD);
378 bool NeedsVTTParameter(GlobalDecl GD) override
    [all...]
CodeGenPGO.h 82 void assignRegionCounters(GlobalDecl GD, llvm::Function *Fn);
CGDebugInfo.h 424 void emitFunctionStart(GlobalDecl GD, SourceLocation Loc,
429 void EmitInlineFunctionStart(CGBuilderTy &Builder, GlobalDecl GD);
435 void EmitFunctionDecl(GlobalDecl GD, SourceLocation Loc,
656 llvm::DISubprogram *getFunctionFwdDeclOrStub(GlobalDecl GD, bool Stub);
660 llvm::DISubprogram *getFunctionForwardDeclaration(GlobalDecl GD);
664 llvm::DISubprogram *getFunctionStub(GlobalDecl GD);
726 /// \param GD A GlobalDecl whose getDecl() must return a FunctionDecl.
727 void collectFunctionDeclProps(GlobalDecl GD, llvm::DIFile *Unit,
  /src/external/apache2/llvm/dist/clang/lib/AST/
Mangle.cpp 141 void MangleContext::mangleName(GlobalDecl GD, raw_ostream &Out) {
143 const NamedDecl *D = cast<NamedDecl>(GD.getDecl());
178 if (auto *GD = dyn_cast<MSGuidDecl>(D))
179 return mangleMSGuidDecl(GD, Out);
194 mangleCXXName(GD, Out);
211 mangleCXXName(GD, Out);
236 void MangleContext::mangleMSGuidDecl(const MSGuidDecl *GD, raw_ostream &Out) {
239 MSGuidDecl::Parts P = GD->getParts();
521 GlobalDecl GD;
523 GD = GlobalDecl(CtorD, Ctor_Complete)
    [all...]
ItaniumMangle.cpp 153 void mangleCXXName(GlobalDecl GD, raw_ostream &) override;
462 void mangle(GlobalDecl GD);
467 void mangleFunctionEncoding(GlobalDecl GD);
469 void mangleName(GlobalDecl GD);
506 void mangleNameWithAbiTags(GlobalDecl GD,
513 void mangleUnqualifiedName(GlobalDecl GD,
515 mangleUnqualifiedName(GD, cast<NamedDecl>(GD.getDecl())->getDeclName(), UnknownArity,
518 void mangleUnqualifiedName(GlobalDecl GD, DeclarationName Name,
521 void mangleUnscopedName(GlobalDecl GD,
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
GlobalDecl.h 148 GlobalDecl GD;
149 GD.Value.setFromOpaqueValue(P);
150 return GD;
213 static unsigned getHashValue(clang::GlobalDecl GD) {
214 return DenseMapInfo<void*>::getHashValue(GD.getAsOpaquePtr());
VTableBuilder.h 342 virtual const ThunkInfoVectorTy *getThunkInfo(GlobalDecl GD) {
343 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()->getCanonicalDecl());
418 uint64_t getMethodVTableIndex(GlobalDecl GD);
591 MethodVFTableLocation getMethodVFTableLocation(GlobalDecl GD);
593 const ThunkInfoVectorTy *getThunkInfo(GlobalDecl GD) override {
595 if (isa<CXXDestructorDecl>(GD.getDecl()) &&
596 GD.getDtorType() == Dtor_Complete)
598 return VTableContextBase::getThunkInfo(GD);
Mangle.h 120 void mangleName(GlobalDecl GD, raw_ostream &);
121 virtual void mangleCXXName(GlobalDecl GD, raw_ostream &) = 0;
134 virtual void mangleMSGuidDecl(const MSGuidDecl *GD, raw_ostream&);
  /src/external/gpl3/gdb.old/dist/sim/rl78/
rl78.c 298 #define GD() get_op (&opcode, 0, 1)
451 b = GD ();
462 b = GD ();
473 b = GD ();
546 a = GD ();
695 b = GD ();
740 b = GD ();
755 b = GD ();
770 b = GD ();
785 b = GD ();
    [all...]
  /src/external/gpl3/gdb/dist/sim/rl78/
rl78.c 298 #define GD() get_op (&opcode, 0, 1)
451 b = GD ();
462 b = GD ();
473 b = GD ();
546 a = GD ();
695 b = GD ();
740 b = GD ();
755 b = GD ();
770 b = GD ();
785 b = GD ();
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/rx/
rx.c 654 #define GD() get_op (opcode, 0)
662 #define US1() ((opcode->op[2].type == RX_Operand_None) ? GD() : GS())
814 fa = GD (); \
1032 ma = GD ();
1044 ma = GD ();
1059 ma = GD ();
1077 regs.r_pc = GD();
1105 int delta = GD();
1150 ma = GD ();
1185 mb = GD();
    [all...]
  /src/external/gpl3/gdb/dist/sim/rx/
rx.c 654 #define GD() get_op (opcode, 0)
662 #define US1() ((opcode->op[2].type == RX_Operand_None) ? GD() : GS())
814 fa = GD (); \
1032 ma = GD ();
1044 ma = GD ();
1059 ma = GD ();
1077 regs.r_pc = GD();
1105 int delta = GD();
1150 ma = GD ();
1185 mb = GD();
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemorySSAUpdater.cpp 835 // Note: the MSSA update below doesn't distinguish between a GD with
839 GraphDiff<BasicBlock *> GD(RevDeleteUpdates);
840 applyInsertUpdates(InsertUpdates, DT, &GD);
847 GraphDiff<BasicBlock *> GD;
848 applyInsertUpdates(InsertUpdates, DT, &GD);
858 GraphDiff<BasicBlock *> GD;
859 applyInsertUpdates(Updates, DT, &GD);
864 const GraphDiff<BasicBlock *> *GD) {
876 for (auto *Pi : GD->template getChildren</*InverseEdge=*/true>(BB)) {
970 for (auto *Pi : GD->template getChildren</*InverseEdge=*/true>(BB))
    [all...]
  /src/external/bsd/ipf/dist/perl/
Isbgraph 8 use GD;
91 $im=new GD::Image($XGIF,$YGIF);

Completed in 38 milliseconds

1 2