search for: transform2

Displaying 9 results from an estimated 9 matches for "transform2".

Did you mean: transforms
2010 Oct 01
3
scoping goes wrong when some functions are used within others.
Dear, I'm following the r tag on stackoverflow.com, and couldn't but notice there are quite some questions popping up that deal with scoping in relation to custom functions. I grinded my teeth on it already, and I have absolutely no clue what goes wrong. The general pattern is as follows : ff <- function(x){ y <- some_value some_function(y) } > ff(x) Error in eval(expr,
2012 Apr 25
0
[LLVMdev] Tool for loop transformations
...Structure when using opt, and the PassManager will print the call list for you. If you want only one transformation to be called, you could disable in opt all analysis and transformations (I guess -o0 is the default), and enable only the ones that you are interested in (something like -transform1 -transform2 etc.). Keep in mind that the transformations could need different types of analysis (that will be also printed by the PassManager), and, sometimes, should be interesting for a transformation the combination of it with another transformations that only will clean up the code (such as dead code elimi...
2012 Apr 24
4
[LLVMdev] Tool for loop transformations
Hi everyone! I would like to create a tool which would "simulate" several loop transformations. It should serve as a part of my bachelor thesis. Typical usage of that tool would be this: Mark a loop in a source (probably C/C++) file and specify desired transformation in a predefined way (for example a special comment or something). -> Run the tool on that "crafted"
2007 Oct 26
0
8 commits - doc/swfdec-sections.txt libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_interpret.c test/trace
...7 02:19:19 2007 +0300 Add a test to see what exception gets thrown out of Try action's finally block diff --git a/test/trace/Makefile.am b/test/trace/Makefile.am index 78767a2..2ff2699 100644 --- a/test/trace/Makefile.am +++ b/test/trace/Makefile.am @@ -2054,6 +2054,13 @@ EXTRA_DIST = \ transform2.swf \ transform2.swf.trace \ transform2.swf.trace.org \ + try-throw-in-finally.as \ + try-throw-in-finally-6.swf \ + try-throw-in-finally-6.swf.trace \ + try-throw-in-finally-7.swf \ + try-throw-in-finally-7.swf.trace \ + try-throw-in-finally-8.swf \ + try-throw-in-finally-8.swf.trace \ undef...
2014 Jun 13
2
[LLVMdev] Passes calling
...adds a CFG edge 4. Transform1 immediately notifies the PassManager that all analyses depending on the CFG must be invalidated 5. PassManager invalidates its reference to the DomTree and LoopInfo 6. Transform1 incrementally updates its copy of the DomTree and reregisters it with the PassManager. 7. Transform2 runs and reuses the DomTree but must recompute LoopInfo. You could imagine other kinds of Analysis being dependent on the call graph or SSA values. You could also imagine that an analyses knows how to partially invalidate itself for example when a specific function, block, or value changes. -Andy...
2007 Nov 14
0
5 commits - libswfdec/.gitignore libswfdec/swfdec_initialize.as test/image test/sound test/trace
...-field-init-native-5.swf \ text-field-init-native-5.swf.trace \ text-field-init-native-6.swf \ @@ -2181,6 +2195,7 @@ EXTRA_DIST = \ tointeger-various-6.swf.trace \ tointeger-various-7.swf \ tointeger-various-7.swf.trace \ + trace_properties.as \ transform.swf \ transform.swf.trace \ transform2.swf \ commit 636431eae7c9701a3afc6b8e413a53ff74ff1c0a Author: Pekka Lampila <pekka.lampila at iki.fi> Date: Tue Nov 13 11:01:11 2007 +0200 Add couple of missing \ chars to test/trace/Makefile.am diff --git a/libswfdec/swfdec_initialize.as b/libswfdec/swfdec_initialize.as index d02ff9a...
2014 Jun 13
2
[LLVMdev] Passes calling
On Jun 12, 2014, at 9:41 AM, Chandler Carruth <chandlerc at google.com> wrote: > > On Thu, Jun 12, 2014 at 5:23 PM, John Criswell <criswell at illinois.edu> wrote: > On 6/12/14, 11:03 AM, Chandler Carruth wrote: >> >> On Thu, Jun 12, 2014 at 4:45 PM, Hanbing Li <hanbing.li at inria.fr> wrote: >> Hi, >> >> I know when a pass needs other
2007 Mar 12
0
11 commits - libswfdec/js libswfdec/swfdec_loader.c libswfdec/swfdec_root_sprite.c libswfdec/swfdec_script.c player/swfdebug.c player/swfdec_player_manager.c test/trace
...in Otte <otte@gnome.org> Date: Mon Mar 12 21:39:06 2007 +0100 check undefined to string conversions diff --git a/test/trace/Makefile.am b/test/trace/Makefile.am index 131989d..ed2582f 100644 --- a/test/trace/Makefile.am +++ b/test/trace/Makefile.am @@ -150,6 +150,8 @@ EXTRA_DIST = \ transform2.swf \ transform2.swf.trace \ transform2.swf.trace.org \ + undefined-tostring.swf \ + undefined-tostring.swf.trace \ undefined1.swf \ undefined1.swf.trace \ undefined2-6.swf \ diff --git a/test/trace/undefined-tostring.swf b/test/trace/undefined-tostring.swf new file mode 100755 index 0000...
2007 Oct 29
0
20 commits - libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_html_parser.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h
...Lampila <pekka.lampila at iki.fi> Date: Mon Oct 29 15:32:09 2007 +0200 Add a test for Try action diff --git a/test/trace/Makefile.am b/test/trace/Makefile.am index 77f2bb0..f1c9938 100644 --- a/test/trace/Makefile.am +++ b/test/trace/Makefile.am @@ -2093,6 +2093,13 @@ EXTRA_DIST = \ transform2.swf \ transform2.swf.trace \ transform2.swf.trace.org \ + try.as \ + try-6.swf \ + try-6.swf.trace \ + try-7.swf \ + try-7.swf.trace \ + try-8.swf \ + try-8.swf.trace \ try-throw-in-finally.as \ try-throw-in-finally-6.swf \ try-throw-in-finally-6.swf.trace \ diff --git a/test/trace/try-6....