Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 889715
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T13:36:43+00:00 2026-05-15T13:36:43+00:00

Goal: I want to write an X86_64 assembler. Note: marked as community wiki Background:

  • 0

Goal: I want to write an X86_64 assembler. Note: marked as community wiki

Background: I’m familiar with C. I’ve written MIPS assembly before. I’ve written some x86 assembly. However, I want to write an x86_64 assembler — it should output machine code that I can jump to and start executing (like in a JIT).

Question is: what is the best way to approach this? I realize this problem looks kind large to tackle. I want to start out with a basic minimum set:

  • Load into register
  • Arithmetric ops on registers (just integers is fine, no need to mess with FPU yet)
  • Conditionals
  • Jumps

Just a basic set to make it Turing complete. Anyone done this? Suggestions / resources?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T13:36:44+00:00Added an answer on May 15, 2026 at 1:36 pm

    An assembler, like any other “compiler”, is best written as a lexical analyser feeding into a language grammar processor.

    Assembly language is usually easier than the regular compiled languages since you don’t need to worry about constructs crossing line boundaries and the format is usually fixed.

    I wrote an assembler for a (fictional) CPU some two years ago for educational purposes and it basically treated each line as:

    • optional label (e.g., :loop).
    • operation (e.g., mov).
    • operands (e.g., ax,$1).

    The easiest way to do it is to ensure that tokens are easily distinguishable.

    That’s why I made the rule that labels had to begin with : – it made the analysis of the line so much easier. The process for handling a line was:

    • strip off comments (first ; outside a string to end of line).
    • extract label if present.
    • first word is then the operation.
    • rest are the operands.

    You can easily insist that different operands have special markers as well, to make your life easier. All this is assuming you have control over the input format. If you’re required to use Intel or AT&T format, it’s a little more difficult.

    The way I approached it is that there was a simple per-operation function that got called (e.g., doJmp, doCall, doRet) and that function decided on what was allowed in the operands.

    For example, doCall only allows a numeric or label, doRet allows nothing.

    For example, here’s a code segment from the encInstr function:

    private static MultiRet encInstr(
        boolean ignoreVars,
        String opcode,
        String operands)
    {
        if (opcode.length() == 0) return hlprNone(ignoreVars);
        if (opcode.equals("defb"))  return hlprByte(ignoreVars,operands);
        if (opcode.equals("defbr")) return hlprByteR(ignoreVars,operands);
        if (opcode.equals("defs"))  return hlprString(ignoreVars,operands);
        if (opcode.equals("defw"))  return hlprWord(ignoreVars,operands);
        if (opcode.equals("defwr")) return hlprWordR(ignoreVars,operands);
        if (opcode.equals("equ"))   return hlprNone(ignoreVars);
        if (opcode.equals("org"))   return hlprNone(ignoreVars);
    
        if (opcode.equals("adc"))   return hlprTwoReg(ignoreVars,0x0a,operands);
        if (opcode.equals("add"))   return hlprTwoReg(ignoreVars,0x09,operands);
        if (opcode.equals("and"))   return hlprTwoReg(ignoreVars,0x0d,operands);
    

    The hlpr... functions simply took the operands and returned a byte array containing the instructions. They’re useful when many operations have similar operand requirements, such as adc,addandand` all requiring two register operands in the above case (the second parameter controlled what opcode was returned for the instruction).

    By making the types of operands easily distinguishable, you can check what operands are provided, whether they are legal and which byte sequences to generate. The separation of operations into their own functions provides for a nice logical structure.

    In addition, most CPUs follow a reasonably logical translation from opcode to operation (to make the chip designers lives easier) so there will be very similar calculations on all opcodes that allow, for example, indexed addressing.

    In order to properly create code in a CPU that allows variable-length instructions, you’re best of doing it in two passes.

    In the first pass, don’t generate code, just generate the lengths of instructions. This allows you to assign values to all labels as you encounter them. The second pass will generate the code and can fill in references to those labels since their values are known. The ignoreVars in that code segment above was used for this purpose (byte sequences of code were returned so we could know the length but any references to symbols just used 0).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Background: The goal is to write a rather large (at least 2048 x 2048
I want to ask about manipulating IE via Powershell. My goal is to write
So basically I want to write a function that can be written like this:
goal : I want to place a text after the submit button using hook_form_alter.
My Goal: i want to create an horizontal list of images. when mouse is
I've recently started my new private project. The main goal which I want to
goal: I have the string 1234432144 I want to only replace the first 2
I want to extract kernel symbols from a u-boot image The final goal is
I have the pages that I want to set as a goal in Google
My goal here is to make a button. I want the text to sit

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.