HomeSort by relevance Sort by last modified time
    Searched refs:GD (Results 51 - 75 of 88) sorted by null

1 23 4

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/
tlstoc.s 30 #GD
36 .quad gd@dtpmod
37 .quad gd@dtprel
50 #GD
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-sh/
tlspic1.s 25 ! GD
40 ! GD -> IE because variable is referenced through @GOTTPOFF too
55 ! GD against local variable
70 ! GD -> IE against local variable referenced through @GOTTPOFF too
85 ! GD against hidden and local variable
100 ! GD -> IE against hidden and local variable referenced through
116 ! GD against hidden but not local variable
131 ! GD -> IE against hidden but not local variable referenced through
tlsbinpic.s 29 ! GD -> IE because variable is not defined in executable
44 ! GD -> IE because variable is not defined in executable where
60 ! GD -> LE with global variable defined in executable
75 ! GD -> LE with local variable defined in executable
90 ! GD -> LE with hidden variable defined in executable
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-cris/
tls-dso-dtpoffd2.d 3 #source: tls-gd-1.s
10 # Linking a file with a DTPOFF from a .dtpoffd of a GD variable, PIC
tls-dso-dtpoffd4.d 3 #source: tls-gd-1.s
10 # Linking a file with a DTPOFF from a .dtpoffd of a GD COMMON
tls-ldgdex-14.d 4 #source: tls-gd-1.s
13 # variables, for an executable, GD symbols defined elsewhere.
tls-ldgdex-15.d 4 #source: tls-gd-2.s
13 # variables, for an executable, GD symbols defined elsewhere.
tls-ldgdx-14.d 3 #source: tls-gd-1.s
12 # variables in a DSO, GD symbols defined elsewhere.
tls-ldgdx-15.d 3 #source: tls-gd-2.s
12 # variables in a DSO, GD symbols defined elsewhere.
tls-legdx-16.d 4 #source: tls-gd-3.s
13 # symbols, GD symbols defined elsewhere.
tls-legdx-17.d 4 #source: tls-gd-2.s --pic
13 # R_CRIS_16_GOT_GD, different symbols, GD symbols defined elsewhere.
  /external/clang/lib/CodeGen/
CodeGenTypes.h 202 llvm::FunctionType *GetFunctionType(GlobalDecl GD);
218 llvm::Type *GetFunctionTypeForVTable(GlobalDecl GD);
250 const CGFunctionInfo &arrangeGlobalDeclaration(GlobalDecl GD);
MicrosoftCXXABI.cpp 51 bool HasThisReturn(GlobalDecl GD) const override;
52 bool hasMostDerivedReturn(GlobalDecl GD) const override;
60 bool isThisCompleteObject(GlobalDecl GD) const override {
63 if (isa<CXXDestructorDecl>(GD.getDecl())) {
64 switch (GD.getDtorType()) {
235 adjustThisArgumentForVirtualFunctionCall(CodeGenFunction &CGF, GlobalDecl GD,
243 CodeGenFunction &CGF, GlobalDecl GD, llvm::Value *This) override;
287 llvm::Value *getVirtualFunctionPointer(CodeGenFunction &CGF, GlobalDecl GD,
297 void adjustCallArgsForDestructorThunk(CodeGenFunction &CGF, GlobalDecl GD,
299 assert(GD.getDtorType() == Dtor_Deleting &
    [all...]
CodeGenPGO.h 89 void assignRegionCounters(GlobalDecl GD, llvm::Function *Fn);
ItaniumCXXABI.cpp 72 bool isThisCompleteObject(GlobalDecl GD) const override {
75 if (isa<CXXDestructorDecl>(GD.getDecl())) {
76 switch (GD.getDtorType()) {
89 if (isa<CXXConstructorDecl>(GD.getDecl())) {
90 switch (GD.getCtorType()) {
264 llvm::Value *getVirtualFunctionPointer(CodeGenFunction &CGF, GlobalDecl GD,
278 void setThunkLinkage(llvm::Function *Thunk, bool ForVTable, GlobalDecl GD,
330 bool NeedsVTTParameter(GlobalDecl GD) override;
407 bool HasThisReturn(GlobalDecl GD) const override {
408 return (isa<CXXConstructorDecl>(GD.getDecl()) ||
    [all...]
CodeGenPGO.cpp 614 void CodeGenPGO::assignRegionCounters(GlobalDecl GD, llvm::Function *Fn) {
615 const Decl *D = GD.getDecl();
626 ((isa<CXXConstructorDecl>(GD.getDecl()) &&
627 GD.getCtorType() != Ctor_Base) ||
628 (isa<CXXDestructorDecl>(GD.getDecl()) &&
629 GD.getDtorType() != Dtor_Base))) {
CodeGenFunction.cpp 653 void CodeGenFunction::StartFunction(GlobalDecl GD,
663 const Decl *D = GD.getDecl();
791 DI->EmitFunctionStart(GD, Loc, StartLoc, FnType, CurFn, Builder);
    [all...]
CGDebugInfo.h 307 void EmitFunctionStart(GlobalDecl GD, SourceLocation Loc,
312 void EmitFunctionDecl(GlobalDecl GD, SourceLocation Loc, QualType FnType);
512 /// \param GD A GlobalDecl whose getDecl() must return a FunctionDecl.
513 void collectFunctionDeclProps(GlobalDecl GD, llvm::DIFile *Unit,
CGOpenMPRuntime.h     [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...]
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...]
  /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...]
  /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

Completed in 987 milliseconds

1 23 4