Home
last modified time | relevance | path

Searched refs:GS (Results 1 – 25 of 116) sorted by relevance

12345

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DGlobalStatus.cpp87 if (!GS.AccessingFunction) in analyzeGlobalAux()
88 GS.AccessingFunction = F; in analyzeGlobalAux()
89 else if (GS.AccessingFunction != F) in analyzeGlobalAux()
93 GS.IsLoaded = true; in analyzeGlobalAux()
97 GS.Ordering = strongerOrdering(GS.Ordering, LI->getOrdering()); in analyzeGlobalAux()
107 ++GS.NumStores; in analyzeGlobalAux()
109 GS.Ordering = strongerOrdering(GS.Ordering, SI->getOrdering()); in analyzeGlobalAux()
135 GS.StoredOnceStore = SI; in analyzeGlobalAux()
161 GS.IsCompared = true; in analyzeGlobalAux()
168 GS.IsLoaded = true; in analyzeGlobalAux()
[all …]
/freebsd/contrib/nvi/cl/
H A Dcl_main.c36 static void cl_func_std(GS *);
38 static GS *gs_init(void);
40 static void sig_end(GS *);
52 GS *gp; in main()
159 static GS *
162 GS *gp; in gs_init()
164 gp = calloc(1, sizeof(GS)); in gs_init()
176 cl_init(GS *gp) in cl_init()
281 sig_init(GS *gp, SCR *sp) in sig_init()
345 sig_end(GS *gp) in sig_end()
[all …]
H A Dcl_screen.c31 static int cl_ex_end(GS *);
34 static int cl_vi_end(GS *);
49 GS *gp; in cl_screen()
131 cl_quit(GS *gp) in cl_quit()
184 GS *gp; in cl_vi_init()
380 cl_vi_end(GS *gp) in cl_vi_end()
497 cl_ex_end(GS *gp) in cl_ex_end()
H A Dcl_funcs.c520 GS *gp; in cl_refresh()
603 GS *gp; in cl_rename()
656 cl_setname(GS *gp, char *name) in cl_setname()
704 GS *gp; in cl_suspend()
/freebsd/contrib/nvi/vi/
H A Dvs_split.c29 static void vs_insert(SCR *sp, GS *gp);
44 GS *gp; in vs_split()
206 GS *gp; in vs_vsplit()
294 vs_insert(SCR *sp, GS *gp) in vs_insert()
335 GS *gp; in vs_discard()
452 GS *gp; in vs_join()
612 GS *gp; in vs_fg()
665 GS *gp; in vs_bg()
703 GS *gp; in vs_swap()
798 GS *gp; in vs_resize()
[all …]
H A Dvs_msg.c57 GS *gp; in vs_busy()
159 GS *gp; in vs_update()
229 GS *gp; in vs_msg()
394 GS *gp; in vs_output()
514 GS *gp; in vs_ex_resolve()
638 GS *gp; in vs_resolve()
744 GS *gp; in vs_scroll()
780 GS *gp; in vs_wait()
848 GS *gp; in vs_divider()
867 GS *gp; in vs_msgsave()
H A Dv_ex.c57 GS *gp; in v_exmode()
323 GS *gp; in v_ex()
493 GS *gp; in v_ecl()
622 GS *gp; in v_ecl_init()
/freebsd/contrib/nvi/common/
H A Dmem.h62 GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
80 GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
103 GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
119 GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
136 GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
H A Dkey.c103 GS *gp; in v_key_init()
183 GS *gp; in v_key_ilookup()
361 GS *gp; in v_event_push()
411 GS *gp; in v_event_append()
535 GS *gp; in v_event_get()
749 GS *gp; in v_sync()
893 GS *gp; in v_event_flush()
909 GS *gp; in v_event_grow()
H A Dmain.c30 static void attach(GS *);
40 editor(GS *gp, int argc, char *argv[]) in editor()
422 v_end(GS *gp) in v_end()
553 attach(GS *gp) in attach()
H A Dscreen.c34 screen_init(GS *gp, SCR *orig, SCR **spp) in screen_init()
201 GS *gp; in screen_next()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DJumpDiagnostics.cpp96 void CheckGotoStmt(GotoStmt *GS);
661 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) { in VerifyJumps() local
663 if (GS->getLabel()->getStmt()) { in VerifyJumps()
664 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(), in VerifyJumps()
669 CheckGotoStmt(GS); in VerifyJumps()
992 void JumpScopeChecker::CheckGotoStmt(GotoStmt *GS) { in CheckGotoStmt() argument
993 if (GS->getLabel()->isMSAsmLabel()) { in CheckGotoStmt()
994 S.Diag(GS->getGotoLoc(), diag::err_goto_ms_asm_label) in CheckGotoStmt()
995 << GS->getLabel()->getIdentifier(); in CheckGotoStmt()
996 S.Diag(GS->getLabel()->getLocation(), diag::note_goto_ms_asm_label) in CheckGotoStmt()
[all …]
/freebsd/usr.bin/vi/
H A Dextern.h17 void cl_setname(GS *, char *);
21 int sig_init(GS *, SCR *);
24 int cl_quit(GS *);
27 int cl_term_end(GS *);
320 void cut_close(GS *);
367 int editor(GS *, int, char *[]);
368 void v_end(GS *);
380 void msg_close(GS *);
415 int screen_init(GS *, SCR *, SCR **);
429 void seq_close(GS *);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeEnumGlobals.cpp28 GlobalsStream &GS = cantFail(Session.getPDBFile().getPDBGlobalsStream()); in NativeEnumGlobals() local
30 for (uint32_t Off : GS.getGlobalsTable()) { in NativeEnumGlobals()
/freebsd/sys/contrib/libsodium/test/default/
H A Dwintest.bat33 SET CFLAGS=%CFLAGS% /GS /MDd /Od
37 SET CFLAGS=%CFLAGS% /GS /MTd /Od /DSODIUM_STATIC /DSODIUM_EXPORT=
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp1406 const auto &GS = DefinedGlobals.find(GV.getGUID()); in thinLTOFinalizeInModule() local
1407 if (GS == DefinedGlobals.end()) in thinLTOFinalizeInModule()
1428 auto NewLinkage = GS->second->linkage(); in thinLTOFinalizeInModule()
1443 GV.setVisibility(GS->second->getVisibility()); in thinLTOFinalizeInModule()
1467 GS->second->canAutoHide()) { in thinLTOFinalizeInModule()
1542 auto GS = DefinedGlobals.find(GV.getGUID()); in thinLTOInternalizeModule() local
1543 if (GS == DefinedGlobals.end()) { in thinLTOInternalizeModule()
1554 GS = DefinedGlobals.find(GlobalValue::getGUID(OrigId)); in thinLTOInternalizeModule()
1555 if (GS == DefinedGlobals.end()) { in thinLTOInternalizeModule()
1563 assert(GS != DefinedGlobals.end()); in thinLTOInternalizeModule()
[all …]
H A DGlobalOpt.cpp1452 if (!GS.HasMultipleAccessingFunctions && in processInternalGlobal()
1453 GS.AccessingFunction && in processInternalGlobal()
1457 GS.AccessingFunction->doesNotRecurse() && in processInternalGlobal()
1482 if (!GS.IsLoaded) { in processInternalGlobal()
1503 if (GS.StoredType <= GlobalStatus::InitializerStored) { in processInternalGlobal()
1509 if (GS.Ordering == AtomicOrdering::NotAtomic) { in processInternalGlobal()
1535 Value *StoredOnceValue = GS.getStoredOnceValue(); in processInternalGlobal()
1590 if (GS.NumStores == 1) in processInternalGlobal()
1619 GlobalStatus GS; in processGlobal() local
1621 if (GlobalStatus::analyzeGlobal(&GV, GS)) in processGlobal()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DVarBypassDetector.cpp140 if (const GotoStmt *GS = dyn_cast<GotoStmt>(St)) { in Detect() local
141 if (const LabelStmt *LS = GS->getLabel()->getStmt()) in Detect()
/freebsd/sys/contrib/device-tree/src/arm/microchip/
H A Dlan966x-kontron-kswitch-d10-mmt-6g-2gs.dts3 * Device Tree file for the Kontron KSwitch D10 MMT 6G-2GS
10 model = "Kontron KSwitch D10 MMT 6G-2GS";
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DTypeReferenceTracker.cpp81 GlobalsStream &GS = cantFail(File.pdb().getPDBGlobalsStream()); in mark() local
82 for (uint32_t PubSymOff : GS.getGlobalsTable()) { in mark()
/freebsd/contrib/ntp/include/
H A Dascii.h70 #define GS 29 macro
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/Solaris/sys/
H A Dregset.h22 #undef GS
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DGlobalStatus.h87 static bool analyzeGlobal(const Value *V, GlobalStatus &GS);
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDXContainerYAML.cpp279 IO.mapRequired("InputPrimitive", StageInfo.GS.InputPrimitive); in mapInfoForVersion()
280 IO.mapRequired("OutputTopology", StageInfo.GS.OutputTopology); in mapInfoForVersion()
281 IO.mapRequired("OutputStreamMask", StageInfo.GS.OutputStreamMask); in mapInfoForVersion()
282 IO.mapRequired("OutputPositionPresent", StageInfo.GS.OutputPositionPresent); in mapInfoForVersion()
/freebsd/sys/cddl/dev/dtrace/x86/
H A Dregset.h93 #define GS 18 macro

12345