active questions tagged assembler - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T08:28:26Z http://stackoverflow.com/feeds/tag/assembler http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816784/create-executable-from-assembly-code 1 Create Executable From Assembly Code Kiewic 2009-11-29T21:07:23Z 2009-12-01T17:18:59Z <p>Hello, I need to create an executable from the next assembly code:</p> <pre><code>.MODEL SMALL .DATA TEXT DB 'Hello world!$' .CODE .STACK 20 .STARTUP MOV AX, @DATA MOV DS, AX MOV AH, 9 MOV BL, 02H INT 10H MOV Dx, OFFSET TEXT INT 21H MOV AH, 4CH INT 21H END </code></pre> <p>It works with Turbo Assembler (tasm.exe), but I don't want to continue working with it, because it doesn't run in Windows 7.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1651874/what-is-the-best-way-to-go-about-writing-a-simple-x86-assembler 6 What is the best way to go about writing a simple x86 assembler? Simucal 2009-10-30T19:37:02Z 2009-11-26T22:46:28Z <p>I'm interested in writing an x86 assembler for a hobby project. </p> <p>At first it seemed fairly straight forward to me but the more I read into it, the more unanswered questions I find myself having. I'm not totally inexperienced: I've used MIPs assembly a fair amount and I've written a toy compiler for a subset of C in school.</p> <p>My goal is to write a simple, but functional x86 assembler. I'm not looking to make a commercially viable assembler, but simply a hobby project to strengthen my knowledge in certain areas. So I don't mind if I don't implement every available feature and operation.</p> <p>I have many questions such as: Should I use a one-pass or two-pass method? Should I use ad-hoc parsing or define formal grammars and use a parser-generator for my instructions? At what stage, and how do I resolve the addresses of my symbols?</p> <p>Given my requirements, can anyone suggest some general guidelines for the methods I should be using in my pet-project assembler?</p> http://stackoverflow.com/questions/1087983/definition-of-fix-up 2 Definition of fix-up? skypher 2009-07-06T16:42:47Z 2009-11-26T22:43:59Z <p>I've seen this term in the Python Lisp compiler and some C linker's sources.</p> <p>My guess is that a fix-up is just some wrapper around an Assembly routine that makes sure the alignment is right, but I'm not sure at all about anything here.</p> http://stackoverflow.com/questions/633020/which-x86-assembler-do-you-use 4 Which x86 assembler do you use? zildjohn01 2009-03-11T01:45:57Z 2009-11-21T17:54:24Z <p>For anyone who works with x86 assembly, I'm curious which assembler you use.</p> <p>Preferably, the name should be an acronym and end in "ASM" =)</p> http://stackoverflow.com/questions/1737917/which-assemblers-currently-support-the-avx-instruction-set 3 Which assemblers currently support the AVX instruction set? PhiS 2009-11-15T15:55:26Z 2009-11-18T09:59:24Z <p>I'd like to start and play with some AVX (advanced vector extension) instructions. I know Intel provides an emulator to test software containing these instructions (see <a href="http://stackoverflow.com/questions/458869/developing-for-new-instruction-sets">this question</a>), but since I don't want to manually write hex code, the question arises as to <strong>which assemblers currently know the AVX instruction set?</strong> </p> <p>I would be most interested in assemblers that run under Windows and can be made to accept Intel syntax. </p> http://stackoverflow.com/questions/1282628/gas-vs-nasm-which-assembler-produces-the-best-code 4 gas vs. nasm: which assembler produces the best code? cyber988348 2009-08-15T19:25:35Z 2009-11-14T09:24:35Z <p>Both tools translate assembly instructions directly into machine code, but is it possible to determine which one produces the fastest and cleanest code?</p> http://stackoverflow.com/questions/1305091/writing-an-z80-assembler-lexing-asm-and-building-a-parse-tree-using-composition 2 Writing an z80 assembler - Lexing ASM and building a parse tree using composition? Gary Paluk 2009-08-20T09:50:00Z 2009-11-14T09:23:56Z <p>Hi guys, I'm very new to the concept of writing an assembler and even after reading a great deal of material, I'm still having difficulties wrapping my head around a couple of concepts.</p> <p>1) What is the process to actually break up a source file into tokens? I believe this process is called lexing and I've searched high and low for a real code examples that make sense but I can't find a thing so simple code examples very welcome ;)</p> <p>2) When parsing, does information ever need to be passed up or down the tree, the reason I ask is as follows, take:</p> <pre><code>LD BC, nn </code></pre> <p>It needs to be turned into the following parse tree once tokenized???</p> <pre><code> ___ LD ___ | | BC nn </code></pre> <p>Now, when this tree is traversed it needs to produce the following machine code:</p> <pre><code>01 n n </code></pre> <p>If the instruction had been:</p> <pre><code>LD DE,nn </code></pre> <p>Then the output would need to be:</p> <pre><code>11 n n </code></pre> <p>Meaning that it raises the question, does the LD node return something different based on the operand or is it the operand that returns something? and how is this achieved? More simple code examples would be excellent if time permits.</p> <p>I'm most interested in learning some of the raw processes here rather than looking at advanced existing tools so please bare that in mind before sending me to Yacc or Flex.</p> <p>Best regards, GP</p> http://stackoverflow.com/questions/790650/compile-amr-nb-codec-with-rvct-for-wince-window-mobile 2 compile AMR-nb codec with RVCT for WinCE/Window Mobile pps 2009-04-26T11:07:20Z 2009-11-12T11:41:55Z <p>Hello everybody, I'm working on amr speech codec (porting/optimization) I have an arm (for WinCE) optimized version from voiceage and I use it as a reference in performance testing. So far, binary produced with my lib beats the other one by around 20-30%! I use Vs2008 and I have limited access to ARM instruction set I can generate with Microsoft compiler. So I tried to look for alternative compiler to see what would be performance difference. I have RVCT compiler, but it produces elf binaries/object files. However, I run my test on a wince mobile phone (TyTn 2) so I need to find a way to run code compiled with RVCT on WinCE. Some of the options are 1) to produce assembly listing (-S option of armcc), and try to assemble with some other assembler that can create COFF (MS assembler for arm) 2) compile and convert generated ELF object file to COFF object (seems like objcopy of gnu binutils could help me with that) 3) using fromelf utility supplied by RVCT create BIN file and somehow try to mangle the bits so I can execute them ;)</p> <p>My first attempt is to create a simple c++ file with one exported function, compile it with RVCT and then try to run that function on the smartphone. The emitted assembly cannot be assembled by the ms assembler (not only they are not compatible, but also ms assembler rejects some of the instructions generated with RVCT compiler; ASR opcode in my case) Then I tried to convert ELF object to coff format and I can't find any information on that. There is a gcc port for ce and objcopy from that toolset is supposed to be able to do the task. However, I can't get it working. I tried different switches, but I have no idea what exactly I need to specify as bfdname for input and output format. So, I couldn't get it working either. Dumping with fromelf and using generated bin file seems to be overkill, so I decided to ask you guys if there is anything I should try to do or maybe someone has already done similar task and could help me. Basically, all I want to do is to compile my code with RVCT compiler and see what's the performance difference. My code has zero dependencies on any c runtime functions.</p> <p>thanks!</p> http://stackoverflow.com/questions/1317256/z80-asm-bnf-structure-im-am-on-the-right-track 3 Z80 ASM BNF structure... I'm am on the right track? Gary Paluk 2009-08-22T22:58:26Z 2009-10-17T19:50:00Z <p>I'm currently trying to get to grips with BNF and attempting to assemble some Z80 ASM code. Since I'm new to both fields So my question is, Am I even on the right track? I am currently trying to write the format of Z80 ASM as EBNF so that I can then figure out where to go from there to create machine code from the source. At the moment I have the following:</p> <pre><code>Assignment = Identifier, ":" ; Instruction = Opcode, [ Operand ], [ Operand ] ; Operand = Identifier | Something* ; Something* = "(" , Identifier, ")" ; Identifier = Alpha, { Numeric | Alpha } ; Opcode = Alpha, Alpha ; Int = [ "-" ], Numeric, { Numeric } ; Alpha = "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" ; Numeric = "0" | "1" | "2" | "3"| "4" | "5" | "6" | "7" | "8" | "9" ; </code></pre> <p>Any directional feedback if I am going wrong would be excellent.</p> <p>Many thanks!</p> http://stackoverflow.com/questions/941710/is-it-possible-to-compile-assembly-code-in-msvc 1 Is it possible to compile assembly code in MSVC++? Keand64 2009-06-02T20:24:27Z 2009-10-15T00:26:48Z <p>Is it possible to create, edit, link, compile (is compile the word?) etc. assembly code in MSVC++?</p> <p>Also, if it's not possible, how can I create an .exe out of plain text, ie: convert the text into whatever format is required to use assembly code, then turn the assembly code into an .exe. (I'd say compile, but I don't think that is the correct word here).</p> <p>And finally, what are some good places to begin learning assembly code? Written in a way that someone who has little experience can use.</p> <p>I know some of these questions are probably very stupid, but I have absolutely no experience in assembly code and am not exactly sure where to start.</p> http://stackoverflow.com/questions/730587/documentation-of-gnu-assembler-directives 1 documentation of gnu assembler directives Kim 2009-04-08T15:42:29Z 2009-10-05T22:37:51Z <p>I'm trying to learn mips assembly at the moment. To that end, I wrote a very simple c program...</p> <pre><code>int main(){} </code></pre> <p>...and compiled it on a mips machine with the -S option to gcc to generate assembly code. Here is what the beginning of the main function looks like:</p> <pre> .ent main main: .frame $fp,8,$31 .mask 0x40000000,-8 .fmask 0x00000000,0 </pre> <p>I then tried to figure out what this all means by looking at the <a href="http://sourceware.org/binutils/docs-2.19/as/index.html" rel="nofollow">documentation for gas</a>, but I couldn't find any of these directives there. So what do they mean? Where can I find more information?</p> http://stackoverflow.com/questions/775020/what-are-good-or-interesting-assembler-like-languages-but-at-a-higher-level 2 What are good or interesting Assembler-like languages, but at a higher level? CodexArcanum 2009-04-21T22:58:13Z 2009-09-16T15:00:07Z <p>I've been looking at <a href="http://www.anywherebb.com/linoleum.html" rel="nofollow">L.in.oleum</a> and am intrigued by it's mix of higher-level constructs (loops, dynamic variables) with low-level assembler power (registers). </p> <p>Are there other languages like Lino out there, which blend the speed of assembler with productivity enhancing features? </p> <p>EDIT: I realized this kind of sounds like an ad. I'm genuinely interested in other assembler-like languages, Lino is just the only one I happen to know of.</p> http://stackoverflow.com/questions/875791/how-do-modern-compilers-use-mmx-3dnow-sse-instructions 6 How do modern compilers use mmx/3dnow/sse instructions? thecoop 2009-05-18T00:02:46Z 2009-09-11T08:40:08Z <p>I've been reading up on the x86 instruction set extensions, and they only seem useful in some quite specific circumstances (eg HADDPD - (Horizontal-Add-Packed-Double) in SSE3). These require a certain register layout that needs to be either deliberately set up, or occur from the series of instructions before it. How often do general-purpose compilers like gcc actually use these instructions (or a subset thereof), or are they mainly to be used in hand-coded assembler? How does the compiler detect where it is appropriate to use SIMD instructions?</p> http://stackoverflow.com/questions/1176138/assembly-vs-assembler 1 "Assembly" vs. "Assembler" Henrik Paul 2009-07-24T07:01:33Z 2009-08-14T08:53:34Z <p>I've been taught that "assembly" is what you write in your files, to have your "assembler" convert it into binary code.</p> <p>But I see these two terms mixed and matched in various works. I've even heard that you write "assembler", after which an "assemblator" makes it executable.</p> <p>Tell me, please, what's the right words to use?</p> http://stackoverflow.com/questions/717848/using-yyparse-to-make-a-two-pass-assembler 3 Using yyparse() to make a two pass assembler? samoz 2009-04-04T21:25:59Z 2009-07-09T07:40:43Z <p>I'm writing an assembler for a custom micro controller I'm working on. I've got the assembler to a point where it will assemble instructions down to binary.</p> <p>However, I'm now having problems with getting labels to work. Currently, when my assembler encounters a new label, it stores the name of the label and the memory location its referring to. When an instruction references a label, the assembler looks up the label and replaces the label with the appropriate value.</p> <p>This is fine and dandy, but what if the label is defined after the instruction referencing it? Because of this, I need to have my parser run over the code twice. </p> <p>Here's what I currently have for my main function:</p> <pre><code>303 int main(int argc, char* argv[]) 304 { 305 306 if(argc &lt; 1 || strcmp(argv[1],"-h")==0 || 0==strcmp(argv[1],"--help")) 307 { 308 //printf("%s\n", usage); 309 return 1; 310 } 311 // redirect stdin to the file pointer 312 int stdin = dup(0); 313 close(0); 314 315 // pass 1 on the file 316 int fp = open(argv[1], O_RDONLY, "r"); 317 dup2(fp, 0); 318 319 yyparse(); 320 321 lseek(fp, SEEK_SET, 0); 322 323 // pass 2 on the file 324 if(secondPassNeeded) 325 { 326 fp = open(argv[1], O_RDONLY, "r"); 327 dup2(fp, 0); 328 yyparse(); 329 } 330 close(fp); 331 332 // restore stdin 333 dup2(0, stdin); 334 335 for(int i = 0; i &lt; labels.size(); i++) 336 { 337 printf("Label: %s, Loc: %d\n", labels[i].name.c_str(), labels[i].memoryLoc); 338 } 339 return 0; 340 } </code></pre> <p>I'm using this inside a flex/bison configuration.</p> http://stackoverflow.com/questions/1081757/images-for-assembler-interpreter-and-compiler 1 Images for Assembler, Interpreter and Compiler? Prashant 2009-07-04T07:52:22Z 2009-07-05T22:03:08Z <p>I got an assignment to make hand-drawn posters of</p> <ul> <li>Assembler</li> <li>Interpreter</li> <li>Compiler</li> </ul> <p>I googled for images of above three but not able to get some exact images which can define the above three properly. Can anyone share some image links which will give an idea about what is Assembler, Interpreter and compiler in computers.</p> <p>Thanks</p> http://stackoverflow.com/questions/991009/why-do-programmers-confuse-the-term-assembler-with-assembly 5 Why do programmers confuse the term "assembler" with "assembly"? emddudley 2009-06-13T16:49:32Z 2009-06-21T07:12:45Z <p>As programmers we need to be precise with our verbal and written communication. Why do so many programmers confuse the term "assembler" (the object code generator) with "assembly" (the language you program in)?</p> <p>The distinction is unambiguous. Could there be historical explanation?</p> http://stackoverflow.com/questions/999980/how-to-integrate-assembly-code-when-i-am-designing-a-compiler-in-c 1 how to integrate assembly code when i am designing a compiler in c? mekasperasky 2009-06-16T07:24:06Z 2009-06-16T08:12:22Z <p>i am designing a compiler in c . but for certain problems like big integers i have to code in assembly code . so how can i integrate assembly code in c?</p> <p>i am wrting my code in dev cpp.. which i suppose uses gcc ... in windows..!!.. </p> <p>pls give me instructions for linux too</p> http://stackoverflow.com/questions/940274/sic-assembler-i-o-question 0 SIC Assembler I/O question Mikey D 2009-06-02T15:40:39Z 2009-06-13T17:50:09Z <p>I've coded a SIC assembler and everything seems to be working fine except for the I/O aspect of it. </p> <p>I've loaded the object code into memory (converted char format into machine representation), but when I call SICRun(); to execute the code, I get an error stating "devf1 cannot be found".</p> <p>I know this is related to the input/output device instructions in the source code. <br>The c file states that it depends on external files, most notably, Dev[6]. Am I supposed to create this myself? My instructor did not give us any other files to work with. Any insight?</p> <p>Example: TD OUTPUT ;TEST OUTPUT DEVICE</p> <p><a href="http://cs.panam.edu/~egle/CSCI3334/" rel="nofollow">This</a> directory contains the source code (source.asm), header file (sic.h) and the SIC simulator (sicengine.c)</p> http://stackoverflow.com/questions/924425/x86-code-generator-framework-for-delphi 3 x86 code generator framework for Delphi David Taylor 2009-05-29T04:47:16Z 2009-05-29T09:52:28Z <p>Has anyone come across a framework or library for Delphi to simplify the generation of x86 code? I am not looking for an assembler, but rather a framework that abstracts the code generation process above the low level bits and bytes. Ideally I would like to build on top of an existing library or framework rather than hardcode the logic on a case by case basis.</p> <p>The initial usage will be to generate small code stubs at runtime similar to the way Delphi dispatches SOAP requests. If I cannot find something I will likely roll my own, but I would hate to reinvent the wheel. Something in "C" might me interesting provided the license will permit translation and use in commercial and open source projects.</p> <p>Update:</p> <p>Here is some more context: What I am working toward is runtime implementation of interfaces and/or classes as part of a persistence framework. Something sort of like Java annotation driven persistence (JPA/EJB3) except with a distinctly Delphi flavor. The invocation target is a modular/extensible framework which will implement a generalized persistence model. I need to dispatch and hook method calls based on RTTI and an annotation/attribute model (something similar to InstantObjects metadata) in a very dynamic and fluid manner.</p> <p>Thanks, David</p> http://stackoverflow.com/questions/885574/file-not-recognized-while-using-the-gnu-linker 1 "file not recognized" while using the GNU linker Mr Mister 2009-05-19T23:40:03Z 2009-05-20T00:22:48Z <p>I'm probably doing something wrong, being a newbie. Could you please help me out?</p> <p>I've written a simple Hello World program in C called hello.c, and ran the following command:</p> <pre><code>gcc -S hello.c </code></pre> <p>That produced <code>hello.s</code>. Then I used that file with GNU assembler, <code>as</code>:</p> <pre><code>as hello.s </code></pre> <p>Which produced a non-executable <code>a.out</code>, which still needs to be linked, I understand?</p> <p>I try to link it by using <code>ld</code>, like so:</p> <pre><code>ld a.out </code></pre> <p>But get the following error:</p> <pre><code>a.out: file not recognized: File truncated </code></pre> <p>And <code>ld</code> deletes my file.</p> <p>This is an x86 Ubuntu system. What am I doing wrong? Many thanks!</p> http://stackoverflow.com/questions/837342/assembler-are-you-using-it-for-something-nowadays 0 Assembler - are you using it for something nowadays? [closed] feiroox 2009-05-07T22:16:04Z 2009-05-07T22:42:02Z <p>I'd like to know if it makes sense to know assembler nowadays? or I should forget it as wasting of time? When I've learnt some basics like reading files counting, making loop and function.</p> <p>I'm not sure if it makes sense to learn more? can I ever needed?</p> <p><hr /></p> <p><strong>Dupe:</strong> <a href="http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days">http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days</a></p> http://stackoverflow.com/questions/787884/trying-to-no-op-an-instruction 0 Trying to no-op an instruction ctuffli 2009-04-25T00:02:12Z 2009-04-26T17:00:04Z <p>Is it possible using GNU tools (gcc, binutils, etc) to modify all occurrences of an assembly instruction into a no-op? Specifically, gcc with the -pg option generates the following assembly (ARM):</p> <pre><code> 0x0: e1a0c00d mov ip, sp 0x4: e92dd800 stmdb sp!, {fp, ip, lr, pc} 0x8: e24cb004 sub fp, ip, #4 ; 0x4 0xc: ebfffffe bl 0 &lt;mcount&gt; </code></pre> <p>I want to record the address of this last instruction, and then change it to a nop like in the following code</p> <pre><code> 0x0: e1a0c00d mov ip, sp 0x4: e92dd800 stmdb sp!, {fp, ip, lr, pc} 0x8: e24cb004 sub fp, ip, #4 ; 0x4 0xc: e1a00000 nop (mov r0,r0) </code></pre> <p>The Linux kernel can do something similar to this at run-time, but I'm looking for a build-time solution.</p> http://stackoverflow.com/questions/745213/how-to-get-rid-of-gcc-assembler-warning-setting-incorrect-section-attributes-for 0 How to get rid of gcc assembler warning "setting incorrect section attributes for .init" in C code? Jim Buck 2009-04-13T20:15:59Z 2009-04-24T16:59:33Z <p>I have the following C code:</p> <pre><code>struct myStruct_t { const char m_name[60]; const uint32_t m_data; }; const struct myStruct_t myStruct __attribute__(( __aligned__( 64 ), section(".init") )) = { "myName", (uint32_t)&amp;someOtherStruct }; </code></pre> <p>When I compile in gcc 4.1.1 (for PS3), I get the warning:</p> <pre><code>1&gt;c:/t/ccy6.s: Assembler messages: 1&gt;c:/t/ccy6.s(106): Warning: setting incorrect section attributes for .init </code></pre> <p>The assembly code the warning points to is the ".section" clause below:</p> <pre><code> .section .init,"aw",@progbits .align 6 .type myStruct , @object .size myStruct , 64 myStruct : .ascii "myName" .long someOtherStruct </code></pre> <p>It doesn't like the "w" (writable) part of the flags since stuff in .init is read-only, and "const" in all the possible places doesn't compel the compiler not to spit out the "w". How can I tell the compiler "no, really, it is const, I'm not kidding"?</p> http://stackoverflow.com/questions/781811/need-some-help-deciphering-a-line-of-assembler-code-from-net-jitted-code 2 Need some help deciphering a line of assembler code, from .NET JITted code Lasse V. Karlsen 2009-04-23T13:53:49Z 2009-04-24T07:41:29Z <p>In a C# constructor, that ends up with a call to <code>this(...)</code>, the actual call gets translated to this:</p> <pre><code>0000003d call dword ptr ds:[199B88E8h] </code></pre> <p>What is the DS register contents here? I know it's the data-segment, but is this call through a VMT-table or similar? I doubt it though, since <code>this(...)</code> wouldn't be a call to a virtual method, just another constructor.</p> <p>I ask because the value at that location seems to be bad in some way, if I hit F11, trace into (Visual Studio 2008), on that call-instruction, the program crashes with an access violation.</p> <p>The code is deep inside a 3rd party control library, where, though I have the source code, I don't have the assemblies compiled with enough debug information that I can trace it through C# code, only through the disassembler, and then I have to match that back to the actual code.</p> <p>The C# code in question is this:</p> <pre><code>public AxisRangeData(AxisRange range) : this(range, range.Axis) { } </code></pre> <p>Reflector shows me this IL code:</p> <pre><code>.maxstack 8 L_0000: ldarg.0 L_0001: ldarg.1 L_0002: ldarg.1 L_0003: callvirt instance class DevExpress.XtraCharts.AxisBase DevExpress.XtraCharts.AxisRange::get_Axis() L_0008: call instance void DevExpress.XtraCharts.Native.AxisRangeData::.ctor(class DevExpress.XtraCharts.ChartElement, class DevExpress.XtraCharts.AxisBase) L_000d: ret </code></pre> <p>It's that last call there, to the other constructor of the same class, that fails. The debugger never surfaces inside the other method, it just crashes.</p> <p>The disassembly for the method after JITting is this:</p> <pre><code>00000000 push ebp 00000001 mov ebp,esp 00000003 sub esp,14h 00000006 mov dword ptr [ebp-4],ecx 00000009 mov dword ptr [ebp-8],edx 0000000c cmp dword ptr ds:[18890E24h],0 00000013 je 0000001A 00000015 call 61843511 0000001a mov eax,dword ptr [ebp-4] 0000001d mov dword ptr [ebp-0Ch],eax 00000020 mov eax,dword ptr [ebp-8] 00000023 mov dword ptr [ebp-10h],eax 00000026 mov ecx,dword ptr [ebp-8] 00000029 cmp dword ptr [ecx],ecx 0000002b call dword ptr ds:[1889D0DCh] // range.Axis 00000031 mov dword ptr [ebp-14h],eax 00000034 push dword ptr [ebp-14h] 00000037 mov edx,dword ptr [ebp-10h] 0000003a mov ecx,dword ptr [ebp-0Ch] 0000003d call dword ptr ds:[199B88E8h] // this(range, range.Axis)? 00000043 nop 00000044 mov esp,ebp 00000046 pop ebp 00000047 ret </code></pre> <p>Basically what I'm asking is this:</p> <ul> <li>What the purpose of the <code>ds:[ADDR]</code> indirection here? VMT-table is only for virtual isn't it? and this is constructor</li> <li>Could the constructor have yet to be JITted, which could mean that the call would actually call through a JIT shim? I'm afraid I'm in deep water here, so anything might and could help.</li> </ul> <p><hr /></p> <p><strong>Edit</strong>: Well, the problem just got worse, or better, or whatever.</p> <p>We are developing the .NET feature in a C# project in a Visual Studio 2008 solution, and debugging and developing through Visual Studio.</p> <p>However, in the end, this code will be loaded into a .NET runtime hosted by a Win32 Delphi application.</p> <p>In order to facilitate easy experimentation of such features, we can also configure the Visual Studio project/solution/debugger to copy the produced dll's to the Delphi app's directory, and then execute the Delphi app, through the Visual Studio debugger.</p> <p>Turns out, the problem goes away if I run the program outside of the debugger, but during debugging, it crops up, every time.</p> <p>Not sure that helps, but since the code isn't slated for production release for another 6 months or so, then it takes some of the pressure off of it for the test release that we have soon.</p> <p>I'll dive into the memory parts later, but probably not until over the weekend, and post a followup.</p> http://stackoverflow.com/questions/771867/how-to-make-a-cross-platform-c-inline-assembly-language 2 How to make a cross-platform c++ inline assembly language? Ɓukasz Lew 2009-04-21T09:50:51Z 2009-04-21T13:14:07Z <p>I hacked a following code:</p> <pre><code>unsigned long long get_cc_time () volatile { uint64 ret; __asm__ __volatile__("rdtsc" : "=A" (ret) : :); return ret; } </code></pre> <p>It works on g++ but not on Visual Studio. How can I port it ? What are the right macros to detect VS / g++ ?</p> http://stackoverflow.com/questions/764623/phar-lap-assembler-i-need-information-documentation-and-binaries-if-possible 0 Phar Lap Assembler: I Need information/documentation and binaries if possible. Breton 2009-04-19T01:27:05Z 2009-04-19T08:22:05Z <p>I've <a href="http://stackoverflow.com/questions/688241/reverse-engineering-old-paint-programs">inherited</a> a rather old big and complex codebase for a program originally targeted at MSDOS. It turns out that some sections of this program are written in an obscure dialect of x86 assembler called "Phar Lap assembler", after the company and product that produced the assembler program. I've done a fairly deep google search and I'm unable to find either the original assembler program, or any information or documentation about it. (Though I have found some rather frustrating pages on Experts Exchange of people asking similar questions). </p> <p>So basically, I won't be able to get this thing to compile until I can either find a copy of PharLap Assembler (386asm.exe), or find enough information about the dialect to translate it to a more "standard" MASM like dialect. Either that, or try to muscle through just figuring it out by reading it.</p> <p>Alternatively, if none of this is possible, then I just need some help with this problem, and I should at least be able to get one section of the program to compile.</p> <p>There's a struct declaration in a .c file that looks like this:</p> <pre><code>//static struct bhash *bhash; typedef struct bhash_control { void *cachedata; Rgb3 *ctab; int rederr; int grnerr; int bluerr; ULONG drgb; // temp var used by dithering, blackbox to us here #ifdef SHOW_STATS int calls, hits1, hits2, fhits, misses; #endif } BhashCtl; BhashCtl bhashctl; // global so assembler code can see it. </code></pre> <p>and then there's some assembler that looks like this, which is presumably trying to make the same type declaration so that some assembler code can use the same type:</p> <pre><code>BhashCtl struct cachedata dd ? ; pointer to alloc'd cache data area ctab dd ? ; contains vb.pencel-&gt;cmap-&gt;ctab rederr dd ? ; error diffusion dithering variables... grnerr dd ? bluerr dd ? drgb dd ? ; rgb value with dithering rolled in ;calls dd ? ; cache stats... ;hits1 dd ? ; to use these, you also need to ;hits2 dd ? ; uncomment a few lines below. ;fhits dd ? ; search for 'bhashctl.' to find them. ;misses dd ? BhashCtl ends extern bhashctl:BhashCtl ; the one-and-only lives in bhash.c </code></pre> <p>this compiles with an error on the last line which looks like this (watcom assembler):</p> <pre><code>Error! E518: External definition different from previous one </code></pre> <p>So basically, I think what this is saying is that the assembler version of this struct doesn't match the C version of this struct. I've tried a number of different combinations of WORD and DWORD in place of dd in the assembler, but I can't get past this little thing. Maybe if I could find a way to get these two declarations to match perfectly, my need for information about pharlap would be diminished.</p> <p>Also, if anyone can think of a better title for this sprawling question, I'm open to ideas.</p> <p>Edit: Okay it turns out I skimmed over some important info. This is a file originally written for a Phar Lap assembler (which I don't have), that I'm trying to assemble using the watcom assember (wasm). The problem with that particular error, it turns out, is it seems Phar Lap is case sensitive, while watcom isn't. So it sees bhashctl as the same as BhashCtl. Figured this out with the help of my brother in law. I never would have thought of case insensitivity being the cause of that one.</p> http://stackoverflow.com/questions/410365/has-anybody-had-real-experience-with-the-terse-assembler 0 Has anybody had real experience with the Terse Assembler ? dragoncity 2009-01-04T03:23:45Z 2009-01-04T14:44:22Z <p>I'm interested in playing with assembler (again) as a diversion from high level languages like Smalltalk, and came across the <strong>Terse Assembler</strong> Site. The syntax looks quite interesting, and appears to be a useful development on Assembler Languages, but I was wondering if anyboy has used Terse in a real world project and did it offer advantages over using any of the traditional Assemblers available ?</p> http://stackoverflow.com/questions/384871/building-an-assembler 6 Building an assembler John 2008-12-21T19:59:13Z 2008-12-21T20:15:59Z <p>Hello people !</p> <p>I need to build an assembler for a CPU architecture that I've built. The architecture is similar to MIPS, but this is of no importance.</p> <p>I started using C#, although C++ would be more appropriate. (C# means faster development time for me).</p> <p>My only problem is that I can't come with a good design for this application. I am building a 2 pass assembler. I know what I need to do in each pass.\</p> <p>I've implemented the first pass and I realised that if I have to lines assembly code on the same line ...no error is thrown.This means only one thing poor parsing techniques.</p> <p>So almighty programmers, fathers of assembler enlighten me how should I proceed. I just need to support symbols and data declaration. Instructions have fixed size.</p> <p>Please let me know if you need more information.</p>