HomeSort by: relevance | last modified time | path
    Searched defs:GD (Results 1 - 16 of 16) sorted by relevancy

  /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...]
  /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());
  /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/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...]
Expr.cpp 577 GlobalDecl GD;
579 GD = GlobalDecl(CD, Ctor_Base);
581 GD = GlobalDecl(DD, Dtor_Base);
583 GD = GlobalDecl(cast<FunctionDecl>(ND));
585 GD = GlobalDecl(ND);
586 MC->mangleName(GD, Out);
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/lib/CodeGen/
CGCUDANV.cpp 164 llvm::GlobalValue *getKernelHandle(llvm::Function *F, GlobalDecl GD) override;
257 GlobalDecl GD;
260 GD = GlobalDecl(FD, KernelReferenceKind::Kernel);
262 GD = GlobalDecl(ND);
272 MC->mangleName(GD, Out);
1124 GlobalDecl GD) {
1139 GD.getWithKernelReferenceKind(KernelReferenceKind::Kernel)));
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...]
CGDecl.cpp 303 GlobalDecl GD;
305 GD = GlobalDecl(CD, Ctor_Base);
307 GD = GlobalDecl(DD, Dtor_Base);
309 GD = GlobalDecl(FD);
315 if (GD.getDecl()) {
318 (void)GetAddrOfGlobal(GD);
CGDebugInfo.cpp 1720 GlobalDecl GD = DD ? GlobalDecl(DD, Dtor_Deleting) : GlobalDecl(Method);
1722 CGM.getMicrosoftVTableContext().getMethodVFTableLocation(GD);
1737 .getVirtualFunctionPrologueThisAdjustment(GD)
1981 } else if (const auto *GD = dyn_cast<MSGuidDecl>(D)) {
1982 V = CGM.GetAddrOfMSGuidDecl(GD).getPointer();
3530 void CGDebugInfo::collectFunctionDeclProps(GlobalDecl GD, llvm::DIFile *Unit,
3536 const auto *FD = cast<FunctionDecl>(GD.getCanonicalDecl().getDecl());
3540 LinkageName = CGM.getMangledName(GD);
3630 llvm::DISubprogram *CGDebugInfo::getFunctionFwdDeclOrStub(GlobalDecl GD,
3636 SourceLocation Loc = GD.getDecl()->getLocation()
    [all...]
CGExpr.cpp 2550 GlobalDecl GD) {
2551 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
2557 llvm::Constant *V = CGM.GetAddrOfFunction(GD);
2575 GlobalDecl GD) {
2576 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
2577 llvm::Value *V = EmitFunctionDeclPointer(CGF.CGM, GD);
2859 if (const auto *GD = dyn_cast<MSGuidDecl>(ND))
2860 return MakeAddrLValue(CGM.GetAddrOfMSGuidDecl(GD), T,
4878 static CGCallee EmitDirectCallee(CodeGenFunction &CGF, GlobalDecl GD) {
4879 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl())
    [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...]
  /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/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...]

Completed in 105 milliseconds