Home
last modified time | relevance | path

Searched refs:call_stack (Results 1 – 4 of 4) sorted by relevance

/dflybsd-src/contrib/gcc-8.0/gcc/cp/
H A Dconstexpr.c1346 static vec<tree> call_stack; variable
1356 call_stack.safe_push (call); in push_cx_call_context()
1357 if (call_stack.length () > (unsigned) max_constexpr_depth) in push_cx_call_context()
1366 call_stack.pop (); in pop_cx_call_context()
1374 && !call_stack.is_empty ()) in cx_error_context()
1375 r = call_stack; in cx_error_context()
H A Derror.c3620 vec<tree> call_stack = cx_error_context (); in maybe_print_constexpr_context() local
3624 FOR_EACH_VEC_ELT (call_stack, ix, t) in maybe_print_constexpr_context()
/dflybsd-src/contrib/gcc-4.7/gcc/cp/
H A Dsemantics.c6492 static VEC(tree,heap) *call_stack = NULL;
6502 VEC_safe_push (tree, heap, call_stack, call); in push_cx_call_context()
6503 if (VEC_length (tree, call_stack) > (unsigned) max_constexpr_depth) in push_cx_call_context()
6512 VEC_pop (tree, call_stack); in pop_cx_call_context()
6520 && !VEC_empty (tree, call_stack)) in VEC()
6521 r = call_stack; in VEC()
H A Derror.c3153 VEC(tree,heap) *call_stack = cx_error_context (); in maybe_print_constexpr_context()
3157 FOR_EACH_VEC_ELT (tree, call_stack, ix, t) in maybe_print_constexpr_context()