search for: michaelmuller

Displaying 20 results from an estimated 32 matches for "michaelmuller".

2011 Mar 30
3
[LLVMdev] introspecting debug info from the JIT
...lly I'm looking for something that given the current IP address, provides function name, filename and line number. The context of this request is that I'm trying to inject a stack-trace into an exception object. ============================================================================= michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller ----------------------------------------------------------------------------- If you are not willing to control your own mind, there are plenty of other people who are willing to do it for you. ==============================================...
2012 Nov 15
1
[LLVMdev] ValueMapper question: no type mapping for GlobalValue?
...>>> I am not sure. I would probably have to look at a failing example to >>> know what is going on. >>> >>> Cheers, >>> Rafael >>> >> >> >> ============================================================================= >> michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller >> ----------------------------------------------------------------------------- >> We are the music-makers, and we are the dreamers of dreams >> - Arthur O'Shaughnessy >> ======================================...
2012 Dec 04
5
[LLVMdev] Difficulties Getting a Bug Fix Committed
...he review/commit burden, but it doesn't speak well for your project when you have a bug with a fix and a unit test just ready to go that's not getting into the next release. Can anyone help me move this forward? ============================================================================= michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller ----------------------------------------------------------------------------- If you are not willing to control your own mind, there are plenty of other people who are willing to do it for you. ==============================================...
2012 Jan 13
2
[LLVMdev] ValueMapper question: no type mapping for GlobalValue?
...oesn't the value mapper do type mapping on global > > variables? > > I am not sure. I would probably have to look at a failing example to > know what is going on. > > Cheers, > Rafael > ============================================================================= michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller ----------------------------------------------------------------------------- We are the music-makers, and we are the dreamers of dreams - Arthur O'Shaughnessy ===========================================================================...
2011 Mar 30
0
[LLVMdev] introspecting debug info from the JIT
...that given the current IP address, > provides function name, filename and line number. > > The context of this request is that I'm trying to inject a stack-trace into an > exception object. > > ============================================================================= > michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller > ----------------------------------------------------------------------------- > If you are not willing to control your own mind, there are plenty of other > people who are willing to do it for you. > ==========================...
2010 Jan 09
4
[LLVMdev] Using a function from another module
...c()" I get: LLVM ERROR: Program used external function 'func' which could not be resolved! I'm guessing I'm either going about this wrong or missing something. Can anyone offer me some insight? ============================================================================= michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller ----------------------------------------------------------------------------- We are the music-makers, and we are the dreamers of dreams - Arthur O'Shaughnessy ===========================================================================...
2012 Jan 17
0
[LLVMdev] ValueMapper question: no type mapping for GlobalValue?
...gt; > variables? > > > > I am not sure. I would probably have to look at a failing example to > > know what is going on. > > > > Cheers, > > Rafael > > > > > ============================================================================= > michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller > ----------------------------------------------------------------------------- > We are the music-makers, and we are the dreamers of dreams > - Arthur O'Shaughnessy > =======================================================...
2012 Dec 06
0
[LLVMdev] Difficulties Getting a Bug Fix Committed
...oesn't speak well for your project > when you have a bug with a fix and a unit test just ready to go that's not > getting into the next release. > > Can anyone help me move this forward? > > ============================================================================= > michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller > ----------------------------------------------------------------------------- > If you are not willing to control your own mind, there are plenty of other > people who are willing to do it for you. > ==========================...
2012 Sep 24
0
[LLVMdev] [llvm-commits] Fwd: Re: [PATCH] Fix for bug in JIT exception table allocation
...eptionTable(F.getFunction(), BufferBegin, CurBufferPtr, > > > > FrameRegister); > > > > BufferBegin = SavedBufferBegin; > > > > > > ============================================================================= > > michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller > > ----------------------------------------------------------------------------- > > Government is not reason, it is not eloquence; it is force. Like fire, it > > is a dangerous servant and a fearsome master. - George W...
2010 Jan 10
0
[LLVMdev] Using a function from another module
...; Actually, this is the first thing I tried, and the correct function does seem to get called - but it looks like the Verifier complains about it, which leads me to believe that there may be broader issues involved. ============================================================================= michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller ----------------------------------------------------------------------------- Scnozwangers? Vermicious Knids? What kind of rubbish is that? - Mr. Salt, "Willy Wonka and the Chocolate Factory" =====================================...
2010 Jan 10
0
[LLVMdev] Using a function from another module
...t this to work is to do an ExecutionEngine::addGlobalMapping() on the function declaration in moduleA to map it to the function pointer in moduleB. This seems awkward, is there a better way to do this? > > ============================================================================= > michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller > ----------------------------------------------------------------------------- > We are the music-makers, and we are the dreamers of dreams > - Arthur O'Shaughnessy > =======================================================...
2012 Aug 23
0
[LLVMdev] [PATCH] Fix for bug in JIT exception table allocation (no test yet)
...r the function, though I'm not quite sure why. I'll investigate further when I get back to it. Making it part of the function's "transaction" seemed cleaner to me as well. > > -eric > ============================================================================= michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller ----------------------------------------------------------------------------- The people can always be brought to the bidding of the leaders. That is easy. All you have to do is tell them they are being attacked and denounce the pacifists f...
2012 Jan 11
2
[LLVMdev] ValueMapper question: no type mapping for GlobalValue?
...global is being mapped directly and this causes an element type check to fail in ConstantArray::get(). Curiously, this only happens when that external global is also referenced from within a function in the same module. ============================================================================= michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller ----------------------------------------------------------------------------- There is no concept that is more demeaning to the human spirit than the notion that our freedom must be limited in the interests of our own protection. ==========...
2010 Jan 10
3
[LLVMdev] Using a function from another module
On Sun, Jan 10, 2010 at 12:38 PM, Garrison Venn <gvenn.cfe.dev at gmail.com> wrote: > Won't passing llvm::Function* around vs strings (function names), also work, at code generation time, > without the need for a module A dec to module B impl. mapping? > > Garrison Nope. You cannot place a call instruction into one module whose callee is a Function from another module. You
2012 Jan 12
2
[LLVMdev] ValueMapper question: no type mapping for GlobalValue?
...afael > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > ============================================================================= michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller ----------------------------------------------------------------------------- The natural progress of things is for liberty to yield and government to gain control. - Thomas Jefferson ========================================================...
2012 Aug 21
2
[LLVMdev] [PATCH] Fix for bug in JIT exception table allocation (no test yet)
...9;m open to suggestions as to how best to test it, I'm currently thinking of trying to create a highly contrived situation to force exception tables to be written at the end of a buffer that won't be long enough. ============================================================================= michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller ----------------------------------------------------------------------------- In this book it is spoken of the Sephiroth, and the Paths, of Spirits and Conjurations; of Gods, Spheres, Planes and many other things which may or may not exist....
2010 Feb 03
0
[LLVMdev] Interpreter with multiple modules.
...function 'func' which could not be resolved! >> >> I'm guessing I'm either going about this wrong or missing something. Can >> anyone offer me some insight? >> >> ============================================================================= >> michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller >> ----------------------------------------------------------------------------- >> We are the music-makers, and we are the dreamers of dreams >> - Arthur O'Shaughnessy >> =======================================...
2012 Feb 27
2
[LLVMdev] mapping types from a bitcode module
...get stuck, I might take you up on it. Although if we're both doing this, it may be worthwhile for us to try to come up with something general enough to include in LLVM. > > Cheers, > Clemens > > ============================================================================= michaelMuller = mmuller at enduden.com | http://www.mindhog.net/~mmuller ----------------------------------------------------------------------------- The world is full of security systems. Hack one of them. - Bruce Schneier =============================================================================
2012 Aug 22
1
[LLVMdev] [PATCH] Fix for bug in JIT exception table allocation (no test yet)
On Aug 21, 2012, at 2:12 PM, Michael Muller <mmuller at enduden.com> wrote: > > Hi, I found a bug in the code that generates exception tables, I've attached > what I think is the correct fix. > > When you run out of space writing to a buffer, the buffer management code > simply stops writing at the end of the buffer. It is the responsibility of > the caller to
2010 Feb 03
3
[LLVMdev] Interpreter with multiple modules.
On 3 February 2010 14:13, Garrison Venn <gvenn.cfe.dev at gmail.com> wrote: > I have not used the C api or the interpreter, but via JIT one can use > ExecutionEngine::addGlobalMapping(...) after the function decl in the > foreign module. See if there is an equivalent in the C API, which will > probably work for the interpreter given that this method is declared in >