Home
last modified time | relevance | path

Searched refs:guard_decl (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dcfgexpand.c6302 tree guard_decl = targetm.stack_protect_guard (); in stack_protect_prologue() local
6305 crtl->stack_protect_guard_decl = guard_decl; in stack_protect_prologue()
6308 if (targetm.have_stack_protect_combined_set () && guard_decl) in stack_protect_prologue()
6310 gcc_assert (DECL_P (guard_decl)); in stack_protect_prologue()
6311 y = DECL_RTL (guard_decl); in stack_protect_prologue()
6324 if (guard_decl) in stack_protect_prologue()
6325 y = expand_normal (guard_decl); in stack_protect_prologue()
H A Dfunction.c4996 tree guard_decl = crtl->stack_protect_guard_decl; in stack_protect_epilogue() local
5003 if (targetm.have_stack_protect_combined_test () && guard_decl) in stack_protect_epilogue()
5005 gcc_assert (DECL_P (guard_decl)); in stack_protect_epilogue()
5006 y = DECL_RTL (guard_decl); in stack_protect_epilogue()
5015 if (guard_decl) in stack_protect_epilogue()
5016 y = expand_normal (guard_decl); in stack_protect_epilogue()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dcfgexpand.cc6534 tree guard_decl = targetm.stack_protect_guard (); in stack_protect_prologue() local
6537 crtl->stack_protect_guard_decl = guard_decl; in stack_protect_prologue()
6540 if (targetm.have_stack_protect_combined_set () && guard_decl) in stack_protect_prologue()
6542 gcc_assert (DECL_P (guard_decl)); in stack_protect_prologue()
6543 y = DECL_RTL (guard_decl); in stack_protect_prologue()
6556 if (guard_decl) in stack_protect_prologue()
6557 y = expand_normal (guard_decl); in stack_protect_prologue()
H A DChangeLog-20093099 for stack_protect_guard and guard_decl.
H A DChangeLog-201610185 * cfgexpand.c (stack_protect_prologue): If guard_decl is NULL,