search for: undebugg

Displaying 13 results from an estimated 13 matches for "undebugg".

Did you mean: undebug
2018 May 08
0
DEBUG INFO: improve handling of DBG_VALUEs and DebugLocs in CodeGen
...unoptimized code, since they will cause the debugger's single-stepping to behave unpredictably, thus destroying the debugging experience. In optimized code, the expectations are a bit lower, but *incorrect* debug locations are terrible since they will cause misleading crash traces and otherwise undebuggable code. Due to the nature of what an optimizing compiler does, debug information is not always salvageable, but the correct thing to do in this case is to remove the debug information (e.g., by inserting line: 0 locations) instead of providing incorrect or partially correct information. > &g...
2018 Sep 03
2
True length - length(unclass(x)) - without having to call unclass()?
Please don't do this to get the underlying vector length (or to achieve anything else). Setting/deleting attributes of an R object without checking the reference count violates R semantics, which in turn can have unpredictable results on R programs (essentially undebuggable segfaults now or more likely later when new optimizations or features are added to the language). Setting attributes on objects with reference count (currently NAMED value) greater than 0 (in some special cases 1 is ok) is cheating - please see Writing R Extensions - and getting speedups v...
2018 May 08
3
DEBUG INFO: improve handling of DBG_VALUEs and DebugLocs in CodeGen
Hi, (Resent with proper subject line) I recently found myself in trouble because the crash I had disappeared with -g, so I could not debug the program. This happened because the optimizer did not remember to consider DBG_VALUEs instruction so it changed its behavior, and the bug went hiding. I then started discussing this onhttps://reviews.llvm.org/D45878, and
2015 Jun 11
0
git daemon on zytor is back in action
...mentions similar goals, of maintaining already-posted links as > valid. > > Whether it is appropriate for our case, I don't know. > I did find this, and hacked up a script based on their research... I didn't really feel comfy with their use of mod_rewrite which is pretty much undebuggable and black magic, but used a CGI script instead. It at least currently seems to work well enough that we're not completely horked in terms of existing URLs, but if someone finds a URL that doesn't work, I'll hammer on it. -hpa
2017 Jul 22
4
[RFC] Add IR level interprocedural outliner for code size.
...e calls to functions which have been >> outlined but all debug info from the original outlined portions is removed, >> making them harder to debug. >> > > Just to check I understand it correctly: you remove *all* debug info in > outlined functions, essentially making them undebuggable -- correct? Did > you considered copying debug info from one of outlined fragments instead? > -- at least line numbers? > > The execution time results are to be expected given that the outliner, >> without profile data, will extract from whatever region it deems >> profi...
2006 Jan 26
2
128-bit encryption message since update to 0.9.6
I had used WineTools to install IE6 under WINE 0.9.something (0.9.4, I think). It worked fine to connect to my employer's Citrix server and run Citrix apps that required 128-bit encryption to run SSL connections. Since updating WINE to 0.9.6 (via Apt-get, I run Debian), whenever I try to connect to the Citrix server, I get a message informing me that 128-bit encryption is required and I
2018 Sep 03
0
True length - length(unclass(x)) - without having to call unclass()?
...era wrote: > Please don't do this to get the underlying vector length (or to achieve > anything else). Setting/deleting attributes of an R object without > checking the reference count violates R semantics, which in turn can > have unpredictable results on R programs (essentially undebuggable > segfaults now or more likely later when new optimizations or features > are added to the language). Setting attributes on objects with reference > count (currently NAMED value) greater than 0 (in some special cases 1 is > ok) is cheating - please see Writing R Extensions - and...
2015 Jun 11
2
git daemon on zytor is back in action
> > Or perhaps there is a way to avoid the "Invalid request" message? Maybe > > by some (automatic) redirection to the adequate corresponding new > > "cgit" link? > > It certainly would be possible to do a redirection, if one can come up > with a mapping from gitweb queries to cgit queries, which I don't know > if someone has already done...
2020 Feb 21
1
Re: alternatives for hooking dlopen() without LD_LIBRARY_PATH or LD_AUDIT?
On Fri, Feb 21, 2020 at 05:02:12PM +0100, Florian Weimer wrote: > * Richard W. M. Jones: > > > On Fri, Feb 21, 2020 at 04:00:30PM +0100, Florian Weimer wrote: > >> * Richard W. M. Jones: > >> > >> > On Fri, Feb 21, 2020 at 01:19:34PM +0100, Florian Weimer wrote: > >> >> I think what confuses me is that keep talking about a single binary,
2008 May 22
6
Regression From Platinum: SkyGlobe
I tested the program SkyGlobe 3.6 listed as Platinum in the following AppDB page: http://appdb.winehq.org/objectManager.php?sClass=application&iId=5143 The program failed to start in Wine 1.0-rc1. The following is the output from the console: $ wine skyglobe.exe fixme:ddraw:VGA_ioport_out Unsupported index, register 0x3ce: 0x08 (value 0xff) fixme:ddraw:VGA_ioport_out Unsupported index,
2018 Aug 24
5
True length - length(unclass(x)) - without having to call unclass()?
Is there a low-level function that returns the length of an object 'x' - the length that for instance .subset(x) and .subset2(x) see? An obvious candidate would be to use: .length <- function(x) length(unclass(x)) However, I'm concerned that calling unclass(x) may trigger an expensive copy internally in some cases. Is that concern unfounded? Thxs, Henrik
2020 Oct 23
0
Wine release 5.20
...lemented 49529 5.12 regression: Wine segfaults if the +heap debug channel is enabled 49661 Red Evil:black screen in game. 49673 Backpacker 3:Americana:unhandled exception 49679 Visual Studio 98 and Visual Basic 6 installers hang 49808 Stellaris loads very slowly 49814 FreeBSD 12.1 undebuggable crash on startup (regression) 49821 Seismobuild crashes at start 49860 Dungeons & Dragons Online 64bit client fails to start in wine-5.16, 5.17, 5.18 49904 all wine processes show a definite leak in load_libwine() 49950 d3d10:reflection tests crash 49960 The Sims Complete Col...
2017 Jul 20
8
[RFC] Add IR level interprocedural outliner for code size.
I’m River and I’m a compiler engineer at PlayStation. Recently, I’ve been working on an interprocedural outlining (code folding) pass for code size improvement at the IR level. We hit a couple of use cases that the current code size solutions didn’t handle well enough. Outlining is one of the avenues that seemed potentially beneficial. -- Algorithmic Approach -- The general implementation can be