search for: stubforg

Displaying 11 results from an estimated 11 matches for "stubforg".

Did you mean: stubborn
2013 Nov 13
3
[LLVMdev] (Very) small patch for the jit event listener
...entPointer }; map<FnDescriptor, FnState> it could be really useful. Let's imagine the same scenario with f that calls g while g is not yet compiled. At the beginning of this scenario, "g" "void ()" could simply be associated to a FnState with <null, List<>, stubForG>. After f's compilation, it could be something like that <null, List<RelocationTable-of-module-f>, stubForG>. And after the compilation of g, something like <moduleOfG, List<Reloc-f, Reloc-g>, compiledCode-of-g> with the relocation entries updated? Otherwise, fo...
2013 Nov 14
0
[LLVMdev] (Very) small patch for the jit event listener
...entPointer }; map<FnDescriptor, FnState> it could be really useful. Let's imagine the same scenario with f that calls g while g is not yet compiled. At the beginning of this scenario, "g" "void ()" could simply be associated to a FnState with <null, List<>, stubForG>. After f's compilation, it could be something like that <null, List<RelocationTable-of-module-f>, stubForG>. And after the compilation of g, something like <moduleOfG, List<Reloc-f, Reloc-g>, compiledCode-of-g> with the relocation entries updated? Otherwise, fo...
2013 Nov 14
2
[LLVMdev] (Very) small patch for the jit event listener
...<FnDescriptor, FnState> > > it could be really useful. Let's imagine the same scenario with f that calls g while g is not yet compiled. At the beginning of this scenario, "g" "void ()" could simply be associated to a FnState with > > <null, List<>, stubForG>. > > After f's compilation, it could be something like that > > <null, List<RelocationTable-of-module-f>, stubForG>. > > And after the compilation of g, something like > > <moduleOfG, List<Reloc-f, Reloc-g>, compiledCode-of-g> > > with t...
2013 Nov 14
0
[LLVMdev] (Very) small patch for the jit event listener
...ptor, FnState> > > it could be really useful. Let's imagine the same scenario with f that > calls g while g is not yet compiled. At the beginning of this > scenario, "g" "void ()" could simply be associated to a FnState with > > <null, List<>, stubForG>. > > After f's compilation, it could be something like that > > <null, List<RelocationTable-of-module-f>, stubForG>. > > And after the compilation of g, something like > > <moduleOfG, List<Reloc-f, Reloc-g>, compiledCode-of-g> > > with t...
2013 Nov 16
2
[LLVMdev] (Very) small patch for the jit event listener
...> >> it could be really useful. Let's imagine the same scenario with f that >> calls g while g is not yet compiled. At the beginning of this >> scenario, "g" "void ()" could simply be associated to a FnState with >> >> <null, List<>, stubForG>. >> >> After f's compilation, it could be something like that >> >> <null, List<RelocationTable-of-module-f>, stubForG>. >> >> And after the compilation of g, something like >> >> <moduleOfG, List<Reloc-f, Reloc-g>, compil...
2013 Nov 16
0
[LLVMdev] (Very) small patch for the jit event listener
...could be really useful. Let's imagine the same scenario with f that >>> calls g while g is not yet compiled. At the beginning of this >>> scenario, "g" "void ()" could simply be associated to a FnState with >>> >>> <null, List<>, stubForG>. >>> >>> After f's compilation, it could be something like that >>> >>> <null, List<RelocationTable-of-module-f>, stubForG>. >>> >>> And after the compilation of g, something like >>> >>> <moduleOfG, List...
2013 Nov 13
0
[LLVMdev] (Very) small patch for the jit event listener
Hi Andy, We had previous discussions about this, I'd like to state more exactly what features would make MCJIT a replacement for the JIT. After putting significant effort trying to move to MCJIT, I'm currently back with the JIT. This is in a REPL environment where functions are added and removed dynamically and response time is important. The issue is the legacy JIT provides great
2013 Nov 18
2
[LLVMdev] (Very) small patch for the jit event listener
...ould be really useful. Let's imagine the same scenario with f >>> that calls g while g is not yet compiled. At the beginning of this >>> scenario, "g" "void ()" could simply be associated to a FnState with >>> >>> <null, List<>, stubForG>. >>> >>> After f's compilation, it could be something like that >>> >>> <null, List<RelocationTable-of-module-f>, stubForG>. >>> >>> And after the compilation of g, something like >>> >>> <moduleOfG, List...
2013 Nov 19
0
[LLVMdev] (Very) small patch for the jit event listener
...useful. Let's imagine the same scenario with f >>>> that calls g while g is not yet compiled. At the beginning of this >>>> scenario, "g" "void ()" could simply be associated to a FnState with >>>> >>>> <null, List<>, stubForG>. >>>> >>>> After f's compilation, it could be something like that >>>> >>>> <null, List<RelocationTable-of-module-f>, stubForG>. >>>> >>>> And after the compilation of g, something like >>>> >...
2013 Nov 19
1
[LLVMdev] (Very) small patch for the jit event listener
...magine the same scenario with f >>>> that calls g while g is not yet compiled. At the beginning of this >>>> scenario, "g" "void ()" could simply be associated to a FnState >>>> with >>>> >>>> <null, List<>, stubForG>. >>>> >>>> After f's compilation, it could be something like that >>>> >>>> <null, List<RelocationTable-of-module-f>, stubForG>. >>>> >>>> And after the compilation of g, something like >>>> >...
2013 Nov 13
3
[LLVMdev] (Very) small patch for the jit event listener
Hi Gaƫl, I'm not familiar enough with the details of the old JIT engine and its event interface to comment on whether or not your changes are appropriate, but I'm not sure anyone is so the patch is probably OK as is. I don't see any obvious problems with it. However, your description of the changes raises a bigger issue in my mind. I'm not sure if you are aware of this, but