/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | GlobalStatus.cpp | 61 static bool analyzeGlobalAux(const Value *V, GlobalStatus &GS, in analyzeGlobalAux() argument 65 GS.StoredType = GlobalStatus::StoredOnce; in analyzeGlobalAux() 70 GS.HasNonInstructionUser = true; in analyzeGlobalAux() 78 if (analyzeGlobalAux(CE, GS, VisitedUsers)) in analyzeGlobalAux() 81 if (!GS.HasMultipleAccessingFunctions) { in analyzeGlobalAux() 83 if (!GS.AccessingFunction) in analyzeGlobalAux() 84 GS.AccessingFunction = F; in analyzeGlobalAux() 85 else if (GS.AccessingFunction != F) in analyzeGlobalAux() 86 GS.HasMultipleAccessingFunctions = true; in analyzeGlobalAux() 89 GS.IsLoaded = true; in analyzeGlobalAux() [all …]
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | GlobalStatus.cpp | 60 static bool analyzeGlobalAux(const Value *V, GlobalStatus &GS, in analyzeGlobalAux() argument 64 GS.StoredType = GlobalStatus::StoredOnce; in analyzeGlobalAux() 69 GS.HasNonInstructionUser = true; in analyzeGlobalAux() 77 if (analyzeGlobalAux(CE, GS, VisitedUsers)) in analyzeGlobalAux() 80 if (!GS.HasMultipleAccessingFunctions) { in analyzeGlobalAux() 82 if (!GS.AccessingFunction) in analyzeGlobalAux() 83 GS.AccessingFunction = F; in analyzeGlobalAux() 84 else if (GS.AccessingFunction != F) in analyzeGlobalAux() 85 GS.HasMultipleAccessingFunctions = true; in analyzeGlobalAux() 88 GS.IsLoaded = true; in analyzeGlobalAux() [all …]
|
/external/llvm/lib/Transforms/Utils/ |
D | GlobalStatus.cpp | 50 static bool analyzeGlobalAux(const Value *V, GlobalStatus &GS, in analyzeGlobalAux() argument 54 GS.StoredType = GlobalStatus::StoredOnce; in analyzeGlobalAux() 59 GS.HasNonInstructionUser = true; in analyzeGlobalAux() 66 if (analyzeGlobalAux(CE, GS, PhiUsers)) in analyzeGlobalAux() 69 if (!GS.HasMultipleAccessingFunctions) { in analyzeGlobalAux() 71 if (!GS.AccessingFunction) in analyzeGlobalAux() 72 GS.AccessingFunction = F; in analyzeGlobalAux() 73 else if (GS.AccessingFunction != F) in analyzeGlobalAux() 74 GS.HasMultipleAccessingFunctions = true; in analyzeGlobalAux() 77 GS.IsLoaded = true; in analyzeGlobalAux() [all …]
|
/external/llvm-project/llvm/unittests/Support/DynamicLibrary/ |
D | DynamicLibraryTest.cpp | 69 GetString GS = FuncPtr<GetString>(DL.getAddressOfSymbol("TestA")); in TEST() local 70 EXPECT_TRUE(GS != nullptr && GS != &TestA); in TEST() 71 EXPECT_EQ(StdString(GS()), "LibCall"); in TEST() 73 GS = FuncPtr<GetString>(DynamicLibrary::SearchForAddressOfSymbol("TestA")); in TEST() 74 EXPECT_TRUE(GS != nullptr && GS != &TestA); in TEST() 75 EXPECT_EQ(StdString(GS()), "LibCall"); in TEST() 82 GS = FuncPtr<GetString>(DynamicLibrary::SearchForAddressOfSymbol("TestA")); in TEST() 83 EXPECT_TRUE(GS != nullptr && GS == &TestA); in TEST() 84 EXPECT_EQ(StdString(GS()), "ProcessCall"); in TEST() 86 GS = FuncPtr<GetString>(DL.getAddressOfSymbol("TestA")); in TEST() [all …]
|
/external/freetype/src/truetype/ |
D | ttinterp.c | 438 exec->GS = size->GS; in TT_Load_Context() 554 exec->GS.gep0 = 1; in TT_Run_Context() 555 exec->GS.gep1 = 1; in TT_Run_Context() 556 exec->GS.gep2 = 1; in TT_Run_Context() 558 exec->GS.projVector.x = 0x4000; in TT_Run_Context() 559 exec->GS.projVector.y = 0x0000; in TT_Run_Context() 561 exec->GS.freeVector = exec->GS.projVector; in TT_Run_Context() 562 exec->GS.dualVector = exec->GS.projVector; in TT_Run_Context() 564 exec->GS.round_state = 1; in TT_Run_Context() 565 exec->GS.loop = 1; in TT_Run_Context() [all …]
|
D | ttobjs.c | 996 exec->GS.dualVector.x = 0x4000; in tt_size_run_prep() 997 exec->GS.dualVector.y = 0; in tt_size_run_prep() 998 exec->GS.projVector.x = 0x4000; in tt_size_run_prep() 999 exec->GS.projVector.y = 0x0; in tt_size_run_prep() 1000 exec->GS.freeVector.x = 0x4000; in tt_size_run_prep() 1001 exec->GS.freeVector.y = 0x0; in tt_size_run_prep() 1003 exec->GS.rp0 = 0; in tt_size_run_prep() 1004 exec->GS.rp1 = 0; in tt_size_run_prep() 1005 exec->GS.rp2 = 0; in tt_size_run_prep() 1007 exec->GS.gep0 = 1; in tt_size_run_prep() [all …]
|
/external/mesa3d/src/amd/compiler/ |
D | README.md | 128 * GS = Geometry Shader 136 * ES = Export Shader (merged into GS on GFX9+), if there is a GS in the SW pipeline, the preceding … 137 * GS = Geometry Shader, also known as legacy GS 138 …x Shader, **not equivalent to SW VS**: when there is a GS in the SW pipeline this stage runs a "GS… 139 * NGG = Next Generation Geometry, a new hardware stage that replaces legacy HW GS and HW VS on RDNA… 143 ##### Notes about HW VS and the "GS copy" shader 146 However, GS store their output in VRAM (except GFX10/NGG). 147 …in order for HW PS to be able to read the GS outputs, we must run something on the VS stage which … 148 from VRAM and exports them to this special buffer. This is what we call a "GS copy" shader. 149 From a HW perspective the "GS copy" shader is in fact VS (it runs on the HW VS stage), [all …]
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | stack-protector-3.ll | 5 …=x86_64-pc-linux-gnu -stack-protector-guard-reg=gs -o - < %s | FileCheck --check-prefix=CHECK-GS %s 16 ; CHECK-GS: movq %gs:40, %rax 17 ; CHECK-GS: movq %gs:40, %rax 18 ; CHECK-GS-NEXT: cmpq 16(%rsp), %rax 19 ; CHECK-GS-NEXT: jne .LBB0_2 20 ; CHECK-GS: .LBB0_2: 21 ; CHECK-GS-NEXT: .cfi_def_cfa_offset 32 22 ; CHECK-GS-NEXT: callq __stack_chk_fail
|
/external/llvm-project/llvm/unittests/DebugInfo/PDB/ |
D | NativeSymbolReuseTest.cpp | 63 auto GS = S->getGlobalScope(); in TEST() local 67 auto Compilands = GS->findAllChildren<PDBSymbolCompiland>(); in TEST() 84 auto Compilands = GS->findAllChildren<PDBSymbolCompiland>(); in TEST() 105 auto GS = S->getGlobalScope(); in TEST() local 111 auto Compilands = GS->findAllChildren<PDBSymbolCompiland>(); in TEST()
|
/external/libdrm/intel/tests/ |
D | gen4-3d.batch-ref.txt | 15 0x12300038: 0x00000000: GS binding table 31 0x12300078: 0x00000000: GS state 63 0x123000f8: 0x00000000: GS binding table 69 0x12300110: 0x00007a41: GS state 92 0x1230016c: 0x00007a21: GS state 110 0x123001b4: 0x00007a01: GS state 128 0x123001fc: 0x000079e1: GS state 146 0x12300244: 0x000079c1: GS state 158 0x12300274: 0x000079c1: GS state 186 0x123002e4: 0x00000000: GS state [all …]
|
D | gm45-3d.batch-ref.txt | 15 0x12300038: 0x00000000: GS binding table 32 0x1230007c: 0x00000000: GS state 64 0x123000fc: 0x00000000: GS binding table 70 0x12300114: 0x00007a41: GS state 93 0x12300170: 0x00007a21: GS state 111 0x123001b8: 0x00007a01: GS state 129 0x12300200: 0x000079e1: GS state 147 0x12300248: 0x000079c1: GS state 159 0x12300278: 0x000079c1: GS state 187 0x123002e8: 0x00000000: GS state [all …]
|
D | gen5-3d.batch-ref.txt | 17 0x12300040: 0x00000000: GS binding table 35 0x12300088: 0x00000000: GS state 67 0x12300108: 0x00000000: GS binding table 74 0x12300124: 0x00007a41: GS state 100 0x1230018c: 0x00007a21: GS state 119 0x123001d8: 0x00007a01: GS state 138 0x12300224: 0x000079e1: GS state 159 0x12300278: 0x000079c1: GS state 172 0x123002ac: 0x000079c1: GS state 201 0x12300320: 0x00000000: GS state [all …]
|
/external/llvm-project/clang/lib/Sema/ |
D | JumpDiagnostics.cpp | 90 void CheckGotoStmt(GotoStmt *GS); 358 if (auto *GS = dyn_cast<GCCAsmStmt>(S)) in BuildScopeInformation() local 359 if (GS->isAsmGoto()) { in BuildScopeInformation() 363 AsmJumps.push_back(GS); in BuildScopeInformation() 364 for (auto *E : GS->labels()) in BuildScopeInformation() 634 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) { in VerifyJumps() local 636 if (GS->getLabel()->getStmt()) { in VerifyJumps() 637 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(), in VerifyJumps() 642 CheckGotoStmt(GS); in VerifyJumps() 965 void JumpScopeChecker::CheckGotoStmt(GotoStmt *GS) { in CheckGotoStmt() argument [all …]
|
/external/llvm/lib/Transforms/IPO/ |
D | FunctionImport.cpp | 483 const auto &GS = DefinedGlobals.find(GV.getGUID()); in thinLTOResolveWeakForLinkerModule() local 484 if (GS == DefinedGlobals.end()) in thinLTOResolveWeakForLinkerModule() 486 auto NewLinkage = GS->second->linkage(); in thinLTOResolveWeakForLinkerModule() 524 const auto &GS = DefinedGlobals.find(GV.getGUID()); in thinLTOInternalizeModule() local 526 if (GS == DefinedGlobals.end()) { in thinLTOInternalizeModule() 537 const auto &GS = DefinedGlobals.find(GlobalValue::getGUID(OrigId)); in thinLTOInternalizeModule() local 538 if (GS == DefinedGlobals.end()) { in thinLTOInternalizeModule() 545 const auto &GS = DefinedGlobals.find(GlobalValue::getGUID(OrigName)); in thinLTOInternalizeModule() local 546 assert(GS != DefinedGlobals.end()); in thinLTOInternalizeModule() 547 Linkage = GS->second->linkage(); in thinLTOInternalizeModule() [all …]
|
/external/linux-kselftest/tools/testing/selftests/x86/ |
D | fsgsbase.c | 117 enum which_base { FS, GS }; enumerator 169 base = read_base(GS); in check_gs_value() 203 base = read_base(GS); in mov_0_gs() 383 if (read_base(GS) != local) { in set_gs_and_switch_to() 391 local = read_base(GS); in set_gs_and_switch_to() 409 base = read_base(GS); in set_gs_and_switch_to() 434 base = read_base(GS); in test_unexpected_base()
|
/external/autotest/client/cros/multimedia/calibration_images/ |
D | README.txt | 1 All the calibration images in PNG format are stored in GS. Follow the 13 * Browse the following URL for the GS folder: 25 The PNG image should be generated by fetching from GS without any error.
|
/external/clang/lib/Sema/ |
D | JumpDiagnostics.cpp | 87 void CheckGotoStmt(GotoStmt *GS); 581 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) { in VerifyJumps() local 583 if (GS->getLabel()->getStmt()) { in VerifyJumps() 584 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(), in VerifyJumps() 589 CheckGotoStmt(GS); in VerifyJumps() 898 void JumpScopeChecker::CheckGotoStmt(GotoStmt *GS) { in CheckGotoStmt() argument 899 if (GS->getLabel()->isMSAsmLabel()) { in CheckGotoStmt() 900 S.Diag(GS->getGotoLoc(), diag::err_goto_ms_asm_label) in CheckGotoStmt() 901 << GS->getLabel()->getIdentifier(); in CheckGotoStmt() 902 S.Diag(GS->getLabel()->getLocation(), diag::note_goto_ms_asm_label) in CheckGotoStmt() [all …]
|
/external/mesa3d/src/gallium/drivers/freedreno/a5xx/ |
D | fd5_program.c | 217 GS = 4, enumerator 229 s[HS].v = s[DS].v = s[GS].v = NULL; /* for now */ in setup_stages() 280 s[HS].instroff = s[DS].instroff = s[GS].instroff = s[FS].instroff; in setup_stages() 344 OUT_RING(ring, A5XX_HLSQ_GS_CONFIG_CONSTOBJECTOFFSET(s[GS].constoff) | in fd5_program_emit() 345 A5XX_HLSQ_GS_CONFIG_SHADEROBJOFFSET(s[GS].instroff) | in fd5_program_emit() 346 COND(s[GS].v, A5XX_HLSQ_GS_CONFIG_ENABLED)); in fd5_program_emit() 360 OUT_RING(ring, A5XX_HLSQ_GS_CNTL_INSTRLEN(s[GS].instrlen) | in fd5_program_emit() 361 COND(s[GS].v && s[GS].v->has_ssbo, A5XX_HLSQ_GS_CNTL_SSBO_ENABLE)); in fd5_program_emit() 376 OUT_RING(ring, A5XX_SP_GS_CONFIG_CONSTOBJECTOFFSET(s[GS].constoff) | in fd5_program_emit() 377 A5XX_SP_GS_CONFIG_SHADEROBJOFFSET(s[GS].instroff) | in fd5_program_emit() [all …]
|
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/ |
D | fd4_program.c | 97 GS = 4, enumerator 109 s[HS].v = s[DS].v = s[GS].v = NULL; /* for now */ in setup_stages() 157 s[HS].instroff = s[DS].instroff = s[GS].instroff = s[FS].instroff; in setup_stages() 158 s[HS].constoff = s[DS].constoff = s[GS].constoff = s[FS].constoff; in setup_stages() 263 OUT_RING(ring, A4XX_HLSQ_GS_CONTROL_REG_CONSTLENGTH(s[GS].constlen) | in fd4_program_emit() 264 A4XX_HLSQ_GS_CONTROL_REG_CONSTOBJECTOFFSET(s[GS].constoff) | in fd4_program_emit() 265 A4XX_HLSQ_GS_CONTROL_REG_INSTRLENGTH(s[GS].instrlen) | in fd4_program_emit() 266 A4XX_HLSQ_GS_CONTROL_REG_SHADEROBJOFFSET(s[GS].instroff)); in fd4_program_emit() 386 OUT_RING(ring, A4XX_SP_GS_OBJ_OFFSET_REG_CONSTOBJECTOFFSET(s[GS].constoff) | in fd4_program_emit() 387 A4XX_SP_GS_OBJ_OFFSET_REG_SHADEROBJOFFSET(s[GS].instroff)); in fd4_program_emit()
|
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
D | NativeEnumGlobals.cpp | 26 GlobalsStream &GS = cantFail(Session.getPDBFile().getPDBGlobalsStream()); in NativeEnumGlobals() local 28 for (uint32_t Off : GS.getGlobalsTable()) { in NativeEnumGlobals()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | NativeEnumGlobals.cpp | 26 GlobalsStream &GS = cantFail(Session.getPDBFile().getPDBGlobalsStream()); in NativeEnumGlobals() local 28 for (uint32_t Off : GS.getGlobalsTable()) { in NativeEnumGlobals()
|
/external/pdfium/testing/resources/pixel/ |
D | bug_1161.in | 35 /ExtGState << /GS 7 0 R >> 42 /GS gs 0 0 0 RG 1 w
|
/external/llvm-project/clang/tools/scan-build-py/libscanbuild/ |
D | intercept.py | 40 GS = chr(0x1d) variable 179 content = RS.join([pid, pid, 'wrapper', entry.cwd, command]) + GS 193 for group in filter(bool, content.split(GS)):
|
/external/llvm-project/llvm/test/Transforms/InstCombine/ |
D | load-cmp.ll | 15 @GS = internal constant %Foo { i32 1, i32 4, i32 9, i32 14 } 193 %p = getelementptr inbounds %Foo, %Foo* @GS, i32 %x, i32 0 201 ; CHECK-NEXT: [[P:%.*]] = getelementptr [[FOO:%.*]], %Foo* @GS, i32 [[X:%.*]], i32 0 206 %p = getelementptr %Foo, %Foo* @GS, i32 %x, i32 0 218 %p = getelementptr inbounds %Foo, %Foo* @GS, i16 %x, i32 0 230 %p = getelementptr inbounds %Foo, %Foo* @GS, i64 %x, i32 0 239 ; CHECK-NEXT: [[P:%.*]] = getelementptr [[FOO:%.*]], %Foo* @GS, i32 [[TMP1]], i32 0 244 %p = getelementptr %Foo, %Foo* @GS, i16 %x, i32 0
|
/external/llvm/test/Transforms/InstCombine/ |
D | load-cmp.ll | 15 @GS = internal constant %Foo { i32 1, i32 4, i32 9, i32 14 } 193 %p = getelementptr inbounds %Foo, %Foo* @GS, i32 %x, i32 0 201 ; CHECK-NEXT: [[P:%.*]] = getelementptr %Foo, %Foo* @GS, i32 %x, i32 0 206 %p = getelementptr %Foo, %Foo* @GS, i32 %x, i32 0 218 %p = getelementptr inbounds %Foo, %Foo* @GS, i16 %x, i32 0 230 %p = getelementptr inbounds %Foo, %Foo* @GS, i64 %x, i32 0 239 ; CHECK-NEXT: [[P:%.*]] = getelementptr %Foo, %Foo* @GS, i32 [[TMP1]], i32 0 244 %p = getelementptr %Foo, %Foo* @GS, i16 %x, i32 0
|