Displaying 8 results from an estimated 8 matches for "do_ab".
Did you mean:
do_a
2020 Aug 22
2
R 4.0.2 64-bit Windows hangs
...ably soon after unwinding the stack, but only with
> GCC 10 / MinGW 7 and only in one of the no-segfault tests, and only
> with -03 (not -O2, not with with -O3 -fno-split-loops). The problem
> was sensitive to these optimization options interestingly on the call
> site of long jump (do_abs), even when it was not an immediate caller
> of the longjump. I've not tracked this down yet, it will require
> looking at the assembly level, and I was suspecting a compiler error
> causing the compiler to generate code that messes with the stack or
> registers in a way that i...
2020 Aug 25
2
R 4.0.2 64-bit Windows hangs
...e stack, but only with
>>> GCC 10 / MinGW 7 and only in one of the no-segfault tests, and only
>>> with -03 (not -O2, not with with -O3 -fno-split-loops). The problem
>>> was sensitive to these optimization options interestingly on the call
>>> site of long jump (do_abs), even when it was not an immediate caller
>>> of the longjump. I've not tracked this down yet, it will require
>>> looking at the assembly level, and I was suspecting a compiler error
>>> causing the compiler to generate code that messes with the stack or
>>&g...
2020 Aug 22
2
R 4.0.2 64-bit Windows hangs
On Sat, Aug 22, 2020 at 8:39 AM Tomas Kalibera <tomas.kalibera at gmail.com> wrote:
>
> On 8/21/20 11:45 PM, m19tdn+9alxwj7d2bmk--- via R-devel wrote:
> > Ah yes, this is related. I reported v2010 below, but it looks like I was updated to this Insider Build overnight without my knowledge, and conflated it with the new installation R v4 this morning.
> >
> > I will
2020 Aug 27
1
R 4.0.2 64-bit Windows hangs
...>> GCC 10 / MinGW 7 and only in one of the no-segfault tests, and only
> >>>> with -03 (not -O2, not with with -O3 -fno-split-loops). The problem
> >>>> was sensitive to these optimization options interestingly on the call
> >>>> site of long jump (do_abs), even when it was not an immediate caller
> >>>> of the longjump. I've not tracked this down yet, it will require
> >>>> looking at the assembly level, and I was suspecting a compiler error
> >>>> causing the compiler to generate code that messes w...
2020 Aug 22
0
R 4.0.2 64-bit Windows hangs
...Insider
build) probably soon after unwinding the stack, but only with GCC 10 /
MinGW 7 and only in one of the no-segfault tests, and only with -03 (not
-O2, not with with -O3 -fno-split-loops). The problem was sensitive to
these optimization options interestingly on the call site of long jump
(do_abs), even when it was not an immediate caller of the longjump. I've
not tracked this down yet, it will require looking at the assembly
level, and I was suspecting a compiler error causing the compiler to
generate code that messes with the stack or registers in a way that
impacts the upcoming...
2020 Aug 22
0
R 4.0.2 64-bit Windows hangs
...unwinding the stack, but only with
> > GCC 10 / MinGW 7 and only in one of the no-segfault tests, and only
> > with -03 (not -O2, not with with -O3 -fno-split-loops). The problem
> > was sensitive to these optimization options interestingly on the call
> > site of long jump (do_abs), even when it was not an immediate caller
> > of the longjump. I've not tracked this down yet, it will require
> > looking at the assembly level, and I was suspecting a compiler error
> > causing the compiler to generate code that messes with the stack or
> > registers...
2020 Aug 26
0
R 4.0.2 64-bit Windows hangs
...y with
>>>> GCC 10 / MinGW 7 and only in one of the no-segfault tests, and only
>>>> with -03 (not -O2, not with with -O3 -fno-split-loops). The problem
>>>> was sensitive to these optimization options interestingly on the call
>>>> site of long jump (do_abs), even when it was not an immediate caller
>>>> of the longjump. I've not tracked this down yet, it will require
>>>> looking at the assembly level, and I was suspecting a compiler error
>>>> causing the compiler to generate code that messes with the stack o...
2020 Mar 28
0
[klibc:update-dash] dash: eval: Add assignment built-in support again
...f (act & DO_ERR)
sh_warnx("%s: %s", name, errmsg(e, E_EXEC));
+fail:
entry->cmdtype = CMDUNKNOWN;
return;
diff --git a/usr/dash/exec.h b/usr/dash/exec.h
index f394f3f7..2b318257 100644
--- a/usr/dash/exec.h
+++ b/usr/dash/exec.h
@@ -56,7 +56,7 @@ struct cmdentry {
#define DO_ABS 0x02 /* checks absolute paths */
#define DO_NOFUNC 0x04 /* don't return shell functions, for command */
#define DO_ALTPATH 0x08 /* using alternate path */
-#define DO_ALTBLTIN 0x20 /* %builtin in alt. path */
+#define DO_REGBLTIN 0x10 /* regular built-ins and functions only */
extern con...