Tagged Questions
AVM2 is the second iteration of the Actionscript Virtual Machine.
8
votes
1answer
2k views
How do generics (Vector) work inside the AVM?
Support for generics (currently only Vector.<*>, and called 'postfix type parameters' by Adobe) was added in Flash Player 10, but the only AVM2 documentation does not describe how these objects are ...
6
votes
3answers
794 views
Subclassing a private (support) class in AVM2
I am developing a dynamic mocking framework for Flex/AS3 and am having trouble with private/support types (ie. those declared outside the package {} in a class file).
In my ABC "file", I am declaring ...
5
votes
2answers
105 views
What kind of optimizations AVM2 supports?
I wonder, what kind of optimizations AVM2 (ActionScript 3 VM) support? I know it uses JIT but does it support Dead Code Elimination, constant folding, inlining, etc.
Also it's very interesting to me ...
3
votes
0answers
59 views
Why does the Flash ActionScript3 compiler emit unnecessary code?
I've recently made a decompiler for AVM2/AS3, and I've noticed that Flash compiler tends to emit a lot of unneccessary code. For example, for a certain application I've removed circa 10% of the code ...
3
votes
1answer
73 views
AVM Verifier to Flash Log, how to interpret some things?
The AVM verifier when encounters and error, writes to flash log. In the documentation it says that verifier will visit "all possible branches" where jumps might take it. However it is still pretty ...
3
votes
2answers
253 views
Any tool to debug ActionScript ByteCode? Would like to observe registers, stacks
So when running a SWF, is there a way to step through line by line of ABC code and observe registers, stacks? Could I at least print it to screen or log it?
3
votes
3answers
541 views
How are methods found in AVM2 bytecode?
I've been playing around with ABC bytecode and was hoping someone could clear up a point of confusion for me. I have a simple flash file that places a clip on the stage and has a tiny script to update ...
2
votes
1answer
37 views
Unexpected behavior accessing properties of script variables
I tried to execute the following actionscript3 program and I am surprised of the result of the call to f() function. I was expecting that the result of f() was "1" or at least "undefined" but the "0" ...
2
votes
1answer
107 views
Why is a linked list faster than Vector in AS3?
I tried the benchmark on this site: Array vs. Vector vs. Linked list. It tests the performance of iterating over said sequences.
Remarkably, iterating over a linked list is approximately 2.5x faster ...
2
votes
1answer
200 views
Stack(s), Registers in ActionScript ByteCode AVM2, which all are there?
From the AVM2 Overview PDF I encountered references to two types of stacks - Scope Stack and Operand Stack.
1) I assume these are two different memory stacks, each handling different things. Are ...
2
votes
3answers
577 views
Something to allow “Writing flex without ActionScript”, or “Java to AVM2 compiler”, or “Write Flex using Java” exists?
There are many dynamic languages that target Sun's JVM (Groovy, Scala, Jython, Jruby etc) and I was sure there are many that target Adobe's AVM as well. But I was surprised to find only haXe do ...
2
votes
2answers
3k views
AVM2 and ABC (Adobe's ActionScript bytecode format) spec licensing.. can I use it?
Google is failing me on this one.
Let's say I have some ECMA script that I've compiled to an ABC bytecode file using the compiler in the Open Source Flex SDK.
Is it within the terms of use (That I ...
1
vote
3answers
79 views
Is there a hang or lag when using the Loader.load() function in Flash/AS3?
I have created a simple list of images that are to be reloaded every 60 seconds. However, I have noticed that when the reloading process begins, Flash seems to hang or at least doesn't accept/remember ...
1
vote
3answers
112 views
Where I can find AVM2 disassembler (or dump tool)?
Greetings
I found this nice answer:
How are methods found in AVM2 bytecode?
See number 3.
May anyone help me?
What is the tool used to produce abcFile dump?
Thank you!
1
vote
1answer
109 views
In ActionScript Bytecode, what does NewActivation mean?
Some methods use it some don't, obviously that's specified by needsActivation flag, nut what does it do and when to use it and when don't?
The information on AVM docs is somewhat ungenerous:
Creates ...
1
vote
1answer
255 views
What are $cinit and $init in AVM2?
UPDATE: Found some nice info on AVM2. I haven't been able to spend much time with it, but it definitely covers $init and $cinit (as well as $iinit, and a lot of other things). I'll post a response ...
1
vote
2answers
885 views
What tools are available to edit/create AVM2 bytecode?
I'd like to generate some bytecode for the Flash 10 AVM2 directly, i.e. without AS3. An assembler that produced a SWF file would be ideal.
Does this exist? If not, what's the easiest way to get from ...
0
votes
0answers
21 views
Is it possible to debug SWF (AS2)?
Does anybody know if there is a debugger for AVM2?
It would be great if it had features like Olly Debug.
i.e. step though code, watch registers and stacks or possibly variables
(maybe breakpoints)
I ...
0
votes
0answers
23 views
garbage collector + big objects in AVM2
I've read an article recently. So garbace collector really don't clears big objects? As far as I know there's no way to force GC to destroy some object. So what can I do with large objects?
Thank you ...
0
votes
2answers
117 views
ActionScript - trace().Top level function behavior
When I'm tracing a variable in Flash Player Debug, I'm getting a strange behavior.
Let's assume that we have a pattern like "x:y". "x" and "y" are integer vars. If we trace that expression with
...
0
votes
1answer
97 views
AS3: Classloading order
I had a quick question on static blocks in AS3.
I have a library that requires initialization statically before any application logic is executed. If I insert a static code block like the following, ...
0
votes
2answers
135 views
Draggin Dropping of AVM1(ActionScript 1/2) dont work in AVM2(ActionScript 3/Flex)
I have a application developed in ActionScript 2 which has dragging/dropping activity. which works fine. I used following to test dropping
dropObject.hitTest(_root._xmouse, _root._ymouse, true) //if ...
0
votes
1answer
127 views
actions vs. avm instructions in actionscript
My questıon is that, what are actions and what are avm instructions. I've been reading these two documents:
http://www.adobe.com/devnet/swf/pdf/swf_file_format_spec_v10.pdf
...
0
votes
1answer
213 views
Flash on Linux Server
I'm a Flash fanboy and want to hear that Flash works well
with a Linux Server. How is Flashes performance in a Linux
environment?
I'm ignorant about servers and linux, but should have an answer.
...