2 * Copyright (C) 2006-2010 Michael Buesch <mb@bu3sch.de>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
26 extern int yyparse(void);
30 const char *infile_name;
31 const char *outfile_name;
41 unsigned int operand; /* For NORMAL */
42 struct label *label; /* For LABELREF */
52 /* Set to true, if this is a jump instruction.
53 * This is only used when assembling RET to check
54 * whether the previous instruction was a jump or not. */
58 struct out_operand operands[3];
60 /* The absolute address of this instruction.
61 * Only used in resolve_labels(). */
64 const char *labelname; /* only for OUT_LABEL */
65 /* Set to 1, if this is the %start instruction. */
68 struct list_head list;
71 struct assembler_context {
72 /* The architecture version (802.11 core revision) */
75 struct label *start_label;
78 struct statement *cur_stmt;
80 struct list_head output;
84 #define for_each_statement(ctx, s) \
85 list_for_each_entry(s, &infile.sl, list) { \
88 #define for_each_statement_end(ctx, s) \
89 } do { ctx->cur_stmt = NULL; } while (0)
91 #define _msg_helper(type, stmt, msg, x...) do { \
92 fprintf(stderr, "Assembler " type); \
94 fprintf(stderr, " (file \"%s\", line %u)", \
98 fprintf(stderr, ":\n " msg "\n" ,##x); \
101 #define asm_error(ctx, msg, x...) do { \
102 _msg_helper("ERROR", (ctx)->cur_stmt, msg ,##x); \
106 #define asm_warn(ctx, msg, x...) \
107 _msg_helper("warning", (ctx)->cur_stmt, msg ,##x)
109 #define asm_info(ctx, msg, x...) \
110 _msg_helper("info", (ctx)->cur_stmt, msg ,##x)
113 static void eval_directives(struct assembler_context *ctx)
118 int have_start_label = 0;
120 unsigned int arch_fallback = 0;
122 for_each_statement(ctx, s) {
123 if (s->type == STMT_ASMDIR) {
128 asm_error(ctx, "Multiple %%arch definitions");
129 ctx->arch = ad->u.arch;
130 if (ctx->arch > 5 && ctx->arch < 15)
135 asm_warn(ctx, "Using %%arch %d is incorrect. "
136 "The wireless core revision %d uses the "
137 "firmware architecture %d. So use %%arch %d",
138 ctx->arch, ctx->arch, arch_fallback, arch_fallback);
139 ctx->arch = arch_fallback;
141 if (ctx->arch != 5 && ctx->arch != 15) {
142 asm_error(ctx, "Architecture version %u unsupported",
148 if (have_start_label)
149 asm_error(ctx, "Multiple %%start definitions");
150 ctx->start_label = ad->u.start;
151 have_start_label = 1;
154 asm_error(ctx, "Unknown ASM directive");
157 } for_each_statement_end(ctx, s);
160 asm_error(ctx, "No %%arch defined");
161 if (!have_start_label)
162 asm_info(ctx, "Using start address 0");
165 static bool is_possible_imm(unsigned int imm)
169 /* Immediates are only possible up to 16bit (wordsize). */
172 if (imm & (1 << 15)) {
173 if ((imm & mask) != mask &&
177 if ((imm & mask) != 0)
184 static unsigned int immediate_nr_bits(struct assembler_context *ctx)
188 return 10; /* 10 bits */
190 return 11; /* 11 bits */
192 asm_error(ctx, "Internal error: immediate_nr_bits unknown arch\n");
195 static bool is_valid_imm(struct assembler_context *ctx,
199 unsigned int immediate_size;
201 /* This function checks if the immediate value is representable
202 * as a native immediate operand.
204 * For v5 architecture the immediate can be 10bit long.
205 * For v15 architecture the immediate can be 11bit long.
207 * The value is sign-extended, so we allow values
208 * of 0xFFFA, for example.
211 if (!is_possible_imm(imm))
215 immediate_size = immediate_nr_bits(ctx);
217 /* First create a mask with all possible bits for
218 * an immediate value unset. */
219 mask = (~0 << immediate_size) & 0xFFFF;
220 /* Is the sign bit of the immediate set? */
221 if (imm & (1 << (immediate_size - 1))) {
222 /* Yes, so all bits above that must also
223 * be set, otherwise we can't represent this
224 * value in an operand. */
225 if ((imm & mask) != mask)
228 /* All bits above the immediate's size must
237 /* This checks if the value is nonzero and a power of two. */
238 static bool is_power_of_two(unsigned int value)
240 return (value && ((value & (value - 1)) == 0));
243 /* This checks if all bits set in the mask are contiguous.
244 * Zero is also considered a contiguous mask. */
245 static bool is_contiguous_bitmask(unsigned int mask)
247 unsigned int low_zeros_mask;
252 /* Turn the lowest zeros of the mask into a bitmask.
253 * Example: 0b00011000 -> 0b00000111 */
254 low_zeros_mask = (mask - 1) & ~mask;
255 /* Adding the low_zeros_mask to the original mask
256 * basically is a bitwise OR operation.
257 * If the original mask was contiguous, we end up with a
258 * contiguous bitmask from bit 0 to the highest bit
259 * set in the original mask. Adding 1 will result in a single
260 * bit set, which is a power of two. */
261 is_contiguous = is_power_of_two(mask + low_zeros_mask + 1);
263 return is_contiguous;
266 static unsigned int generate_imm_operand(struct assembler_context *ctx,
267 const struct immediate *imm)
269 unsigned int val, tmp;
277 if (!is_valid_imm(ctx, tmp)) {
278 asm_warn(ctx, "IMMEDIATE 0x%X (%d) too long "
279 "(> %u bits + sign). Did you intend to "
280 "use implicit sign extension?",
281 tmp, (int)tmp, immediate_nr_bits(ctx) - 1);
293 static unsigned int generate_reg_operand(struct assembler_context *ctx,
294 const struct registr *reg)
296 unsigned int val = 0;
303 if (reg->nr & ~0x3F) /* REVISIT: 128 regs for v15 arch possible? Probably not... */
304 asm_error(ctx, "GPR-nr too big");
311 if (reg->nr & ~0x1FF)
312 asm_error(ctx, "SPR-nr too big");
320 asm_error(ctx, "OFFR-nr too big");
324 asm_error(ctx, "generate_reg_operand() regtype");
330 static unsigned int generate_mem_operand(struct assembler_context *ctx,
331 const struct memory *mem)
333 unsigned int val = 0, off, reg, off_mask, reg_shift;
341 asm_warn(ctx, "DIRECT memoffset 0x%X too long (> 11 bits)", off);
347 asm_warn(ctx, "DIRECT memoffset 0x%X too long (> 12 bits)", off);
352 asm_error(ctx, "Internal error: generate_mem_operand invalid arch");
369 asm_error(ctx, "Internal error: MEM_INDIRECT invalid arch\n");
374 if (off & ~off_mask) {
375 asm_warn(ctx, "INDIRECT memoffset 0x%X too long (> %u bits)",
380 /* Assembler bug. The parser shouldn't pass this value. */
381 asm_error(ctx, "OFFR-nr too big");
384 asm_warn(ctx, "Using offset register 6. This register is broken "
385 "on certain devices. Use off0 to off5 only.");
388 val |= (reg << reg_shift);
391 asm_error(ctx, "generate_mem_operand() memtype");
397 static void generate_operand(struct assembler_context *ctx,
398 const struct operand *oper,
399 struct out_operand *out)
401 out->type = OUTOPER_NORMAL;
403 switch (oper->type) {
405 out->u.operand = generate_imm_operand(ctx, oper->u.imm);
408 out->u.operand = generate_reg_operand(ctx, oper->u.reg);
411 out->u.operand = generate_mem_operand(ctx, oper->u.mem);
414 out->type = OUTOPER_LABELREF;
415 out->u.label = oper->u.label;
418 out->u.operand = oper->u.addr->addr;
421 out->u.operand = oper->u.raw;
424 asm_error(ctx, "generate_operand() operstate");
428 static struct code_output * do_assemble_insn(struct assembler_context *ctx,
429 struct instruction *insn,
436 struct code_output *out;
437 struct label *labelref = NULL;
438 struct operand *oper;
439 int have_spr_operand = 0;
440 int have_mem_operand = 0;
442 out = xmalloc(sizeof(*out));
443 INIT_LIST_HEAD(&out->list);
444 out->opcode = opcode;
447 if (ARRAY_SIZE(out->operands) > ARRAY_SIZE(ol->oper))
448 asm_error(ctx, "Internal operand array confusion");
450 for (i = 0; i < ARRAY_SIZE(out->operands); i++) {
455 /* If this is an INPUT operand (first or second), we must
456 * make sure that not both are accessing SPR or MEMORY.
457 * The device only supports one SPR or MEMORY operand in
458 * the input operands. */
459 if ((i == 0) || (i == 1)) {
460 if ((oper->type == OPER_REG) &&
461 (oper->u.reg->type == SPR)) {
462 if (have_spr_operand)
463 asm_error(ctx, "Multiple SPR input operands in one instruction");
464 have_spr_operand = 1;
466 if (oper->type == OPER_MEM) {
467 if (have_mem_operand)
468 asm_error(ctx, "Multiple MEMORY input operands in on instruction");
469 have_mem_operand = 1;
473 generate_operand(ctx, oper, &out->operands[i]);
477 asm_error(ctx, "Internal error: nr_oper at "
478 "lowlevel do_assemble_insn");
480 list_add_tail(&out->list, &ctx->output);
485 static unsigned int merge_ext_into_opcode(struct assembler_context *ctx,
487 struct instruction *insn)
491 unsigned int mask, shift;
495 mask = ol->oper[0]->u.raw;
497 asm_error(ctx, "opcode MASK extension too big (> 0xF)");
498 shift = ol->oper[1]->u.raw;
500 asm_error(ctx, "opcode SHIFT extension too big (> 0xF)");
501 opcode |= (mask << 4);
503 ol->oper[0] = ol->oper[2];
504 ol->oper[1] = ol->oper[3];
505 ol->oper[2] = ol->oper[4];
510 static unsigned int merge_external_jmp_into_opcode(struct assembler_context *ctx,
512 struct instruction *insn)
514 struct operand *fake;
515 struct registr *fake_reg;
516 struct operand *target;
523 cond = ol->oper[0]->u.imm->imm;
525 asm_error(ctx, "External jump condition value too big (> 0xFF)");
527 target = ol->oper[1];
528 memset(ol->oper, 0, sizeof(ol->oper));
530 /* This instruction has two fake r0 operands
531 * at position 0 and 1. */
532 fake = xmalloc(sizeof(*fake));
533 fake_reg = xmalloc(sizeof(*fake_reg));
534 fake->type = OPER_REG;
535 fake->u.reg = fake_reg;
536 fake_reg->type = GPR;
541 ol->oper[2] = target;
546 static void assemble_instruction(struct assembler_context *ctx,
547 struct instruction *insn);
549 static void emulate_mov_insn(struct assembler_context *ctx,
550 struct instruction *insn)
552 struct instruction em_insn;
553 struct operlist em_ol;
554 struct operand em_op_shift;
555 struct operand em_op_mask;
556 struct operand em_op_x;
557 struct operand em_op_y;
558 struct immediate em_imm_x;
559 struct immediate em_imm_y;
561 struct operand *in, *out;
564 /* This is a pseudo-OP. We emulate it by OR or ORX */
566 in = insn->operands->oper[0];
567 out = insn->operands->oper[1];
572 em_op_x.type = OPER_IMM;
573 em_op_x.u.imm = &em_imm_x;
574 em_ol.oper[1] = &em_op_x;
577 if (in->type == OPER_IMM) {
578 tmp = in->u.imm->imm;
579 if (!is_possible_imm(tmp))
580 asm_error(ctx, "MOV operand 0x%X > 16bit", tmp);
581 if (!is_valid_imm(ctx, tmp)) {
582 /* Immediate too big for plain OR */
585 em_op_mask.type = OPER_RAW;
586 em_op_mask.u.raw = 0x7;
587 em_op_shift.type = OPER_RAW;
588 em_op_shift.u.raw = 0x8;
590 em_imm_x.imm = (tmp & 0xFF00) >> 8;
591 em_op_x.type = OPER_IMM;
592 em_op_x.u.imm = &em_imm_x;
594 em_imm_y.imm = (tmp & 0x00FF);
595 em_op_y.type = OPER_IMM;
596 em_op_y.u.imm = &em_imm_y;
598 em_ol.oper[0] = &em_op_mask;
599 em_ol.oper[1] = &em_op_shift;
600 em_ol.oper[2] = &em_op_x;
601 em_ol.oper[3] = &em_op_y;
606 em_insn.operands = &em_ol;
607 assemble_instruction(ctx, &em_insn); /* recurse */
610 static void emulate_jmp_insn(struct assembler_context *ctx,
611 struct instruction *insn)
613 struct instruction em_insn;
614 struct operlist em_ol;
615 struct immediate em_condition;
616 struct operand em_cond_op;
618 /* This is a pseudo-OP. We emulate it with
619 * JEXT 0x7F, target */
621 em_insn.op = OP_JEXT;
622 em_condition.imm = 0x7F; /* Ext cond: Always true */
623 em_cond_op.type = OPER_IMM;
624 em_cond_op.u.imm = &em_condition;
625 em_ol.oper[0] = &em_cond_op;
626 em_ol.oper[1] = insn->operands->oper[0]; /* Target */
627 em_insn.operands = &em_ol;
629 assemble_instruction(ctx, &em_insn); /* recurse */
632 static void emulate_jand_insn(struct assembler_context *ctx,
633 struct instruction *insn,
636 struct code_output *out;
637 struct instruction em_insn;
638 struct operlist em_ol;
639 struct operand em_op_shift;
640 struct operand em_op_mask;
641 struct operand em_op_y;
642 struct immediate em_imm;
644 struct operand *oper0, *oper1, *oper2;
645 struct operand *imm_oper = NULL;
647 int first_bit, last_bit;
649 oper0 = insn->operands->oper[0];
650 oper1 = insn->operands->oper[1];
651 oper2 = insn->operands->oper[2];
653 if (oper0->type == OPER_IMM)
655 if (oper1->type == OPER_IMM)
657 if (oper0->type == OPER_IMM && oper1->type == OPER_IMM)
661 /* We have a single immediate operand.
662 * Check if it's representable by a normal JAND insn.
664 tmp = imm_oper->u.imm->imm;
665 if (!is_valid_imm(ctx, tmp)) {
666 /* Nope, this must be emulated by JZX/JNZX */
667 if (!is_contiguous_bitmask(tmp)) {
668 asm_error(ctx, "Long bitmask 0x%X is not contiguous",
672 first_bit = ffs(tmp);
673 last_bit = ffs(~(tmp >> (first_bit - 1))) - 1 + first_bit - 1;
678 em_insn.op = OP_JNZX;
679 em_op_shift.type = OPER_RAW;
680 em_op_shift.u.raw = first_bit - 1;
681 em_op_mask.type = OPER_RAW;
682 em_op_mask.u.raw = last_bit - first_bit;
685 em_op_y.type = OPER_IMM;
686 em_op_y.u.imm = &em_imm;
688 em_ol.oper[0] = &em_op_mask;
689 em_ol.oper[1] = &em_op_shift;
690 if (oper0->type != OPER_IMM)
691 em_ol.oper[2] = oper0;
693 em_ol.oper[2] = oper1;
694 em_ol.oper[3] = &em_op_y;
695 em_ol.oper[4] = oper2;
697 em_insn.operands = &em_ol;
699 assemble_instruction(ctx, &em_insn); /* recurse */
704 /* Do a normal JAND/JNAND instruction */
706 out = do_assemble_insn(ctx, insn, 0x040 | 0x1);
708 out = do_assemble_insn(ctx, insn, 0x040);
709 out->is_jump_insn = 1;
712 static void assemble_instruction(struct assembler_context *ctx,
713 struct instruction *insn)
715 struct code_output *out;
720 do_assemble_insn(ctx, insn, 0x1C0);
723 do_assemble_insn(ctx, insn, 0x1C2);
726 do_assemble_insn(ctx, insn, 0x1C1);
729 do_assemble_insn(ctx, insn, 0x1C3);
732 do_assemble_insn(ctx, insn, 0x1D0);
735 do_assemble_insn(ctx, insn, 0x1D2);
738 do_assemble_insn(ctx, insn, 0x1D1);
741 do_assemble_insn(ctx, insn, 0x1D3);
744 do_assemble_insn(ctx, insn, 0x130);
747 do_assemble_insn(ctx, insn, 0x160);
750 do_assemble_insn(ctx, insn, 0x140);
753 do_assemble_insn(ctx, insn, 0x170);
756 do_assemble_insn(ctx, insn, 0x120);
759 opcode = merge_ext_into_opcode(ctx, 0x200, insn);
760 do_assemble_insn(ctx, insn, opcode);
763 do_assemble_insn(ctx, insn, 0x110);
766 do_assemble_insn(ctx, insn, 0x1A0);
769 do_assemble_insn(ctx, insn, 0x1B0);
772 do_assemble_insn(ctx, insn, 0x150);
775 opcode = merge_ext_into_opcode(ctx, 0x300, insn);
776 do_assemble_insn(ctx, insn, opcode);
779 emulate_mov_insn(ctx, insn);
782 emulate_jmp_insn(ctx, insn);
785 emulate_jand_insn(ctx, insn, 0);
788 emulate_jand_insn(ctx, insn, 1);
791 out = do_assemble_insn(ctx, insn, 0x050);
792 out->is_jump_insn = 1;
795 out = do_assemble_insn(ctx, insn, 0x050 | 0x1);
796 out->is_jump_insn = 1;
799 out = do_assemble_insn(ctx, insn, 0x0D0);
800 out->is_jump_insn = 1;
803 out = do_assemble_insn(ctx, insn, 0x0D0 | 0x1);
804 out->is_jump_insn = 1;
807 out = do_assemble_insn(ctx, insn, 0x0D2);
808 out->is_jump_insn = 1;
811 out = do_assemble_insn(ctx, insn, 0x0D2 | 0x1);
812 out->is_jump_insn = 1;
815 out = do_assemble_insn(ctx, insn, 0x0D4);
816 out->is_jump_insn = 1;
819 out = do_assemble_insn(ctx, insn, 0x0D4 | 0x1);
820 out->is_jump_insn = 1;
823 out = do_assemble_insn(ctx, insn, 0x0DA);
824 out->is_jump_insn = 1;
827 out = do_assemble_insn(ctx, insn, 0x0DA | 0x1);
828 out->is_jump_insn = 1;
831 out = do_assemble_insn(ctx, insn, 0x0DC);
834 out = do_assemble_insn(ctx, insn, 0x0DC | 0x1);
835 out->is_jump_insn = 1;
838 opcode = merge_ext_into_opcode(ctx, 0x400, insn);
839 out = do_assemble_insn(ctx, insn, opcode);
840 out->is_jump_insn = 1;
843 opcode = merge_ext_into_opcode(ctx, 0x500, insn);
844 out = do_assemble_insn(ctx, insn, opcode);
845 out->is_jump_insn = 1;
848 opcode = merge_external_jmp_into_opcode(ctx, 0x700, insn);
849 out = do_assemble_insn(ctx, insn, opcode);
850 out->is_jump_insn = 1;
853 opcode = merge_external_jmp_into_opcode(ctx, 0x600, insn);
854 out = do_assemble_insn(ctx, insn, opcode);
855 out->is_jump_insn = 1;
858 do_assemble_insn(ctx, insn, 0x002);
861 /* Get the previous instruction and check whether it
862 * is a jump instruction. */
863 list_for_each_entry_reverse(out, &ctx->output, list) {
864 /* Search the last insn. */
865 if (out->type == OUT_INSN) {
866 if (out->is_jump_insn) {
867 asm_warn(ctx, "RET instruction directly after "
868 "jump instruction. The hardware won't like this.");
873 do_assemble_insn(ctx, insn, 0x003);
879 do_assemble_insn(ctx, insn, 0x1E0);
882 do_assemble_insn(ctx, insn, 0x001);
885 do_assemble_insn(ctx, insn, insn->opcode);
888 asm_error(ctx, "Unknown op");
892 static void assemble_instructions(struct assembler_context *ctx)
895 struct instruction *insn;
896 struct code_output *out;
898 if (ctx->start_label) {
899 /* Generate a jump instruction at offset 0 to
900 * jump to the code start.
902 struct instruction sjmp;
906 oper.type = OPER_LABEL;
907 oper.u.label = ctx->start_label;
912 assemble_instruction(ctx, &sjmp);
913 out = list_entry(ctx->output.next, struct code_output, list);
914 out->is_start_insn = 1;
917 for_each_statement(ctx, s) {
922 assemble_instruction(ctx, insn);
925 out = xmalloc(sizeof(*out));
926 INIT_LIST_HEAD(&out->list);
927 out->type = OUT_LABEL;
928 out->labelname = s->u.label->name;
930 list_add_tail(&out->list, &ctx->output);
935 } for_each_statement_end(ctx, s);
938 /* Resolve a label reference to the address it points to. */
939 static int get_labeladdress(struct assembler_context *ctx,
940 struct code_output *this_insn,
941 struct label *labelref)
943 struct code_output *c;
947 switch (labelref->direction) {
948 case LABELREF_ABSOLUTE:
949 list_for_each_entry(c, &ctx->output, list) {
950 if (c->type != OUT_LABEL)
952 if (strcmp(c->labelname, labelref->name) != 0)
955 asm_error(ctx, "Ambiguous label reference \"%s\"",
959 address = c->address;
962 case LABELREF_RELATIVE_BACK:
963 for (c = list_entry(this_insn->list.prev, typeof(*c), list);
964 &c->list != &ctx->output;
965 c = list_entry(c->list.prev, typeof(*c), list)) {
966 if (c->type != OUT_LABEL)
968 if (strcmp(c->labelname, labelref->name) == 0) {
970 address = c->address;
975 case LABELREF_RELATIVE_FORWARD:
976 for (c = list_entry(this_insn->list.next, typeof(*c), list);
977 &c->list != &ctx->output;
978 c = list_entry(c->list.next, typeof(*c), list)) {
979 if (c->type != OUT_LABEL)
981 if (strcmp(c->labelname, labelref->name) == 0) {
983 address = c->address;
993 static void resolve_labels(struct assembler_context *ctx)
995 struct code_output *c;
998 unsigned int current_address;
1000 /* Calculate the absolute addresses for each instruction. */
1001 recalculate_addresses:
1002 current_address = 0;
1003 list_for_each_entry(c, &ctx->output, list) {
1006 c->address = current_address;
1010 c->address = current_address;
1015 /* Resolve the symbolic label references. */
1016 list_for_each_entry(c, &ctx->output, list) {
1019 if (c->is_start_insn) {
1020 /* If the first %start-jump jumps to 001, we can
1021 * optimize it away, as it's unneeded.
1024 if (c->operands[i].type != OUTOPER_LABELREF)
1025 asm_error(ctx, "Internal error, %%start insn oper 2 not labelref");
1026 if (c->operands[i].u.label->direction != LABELREF_ABSOLUTE)
1027 asm_error(ctx, "%%start label reference not absolute");
1028 addr = get_labeladdress(ctx, c, c->operands[i].u.label);
1030 goto does_not_exist;
1032 list_del(&c->list); /* Kill it */
1033 goto recalculate_addresses;
1037 for (i = 0; i < ARRAY_SIZE(c->operands); i++) {
1038 if (c->operands[i].type != OUTOPER_LABELREF)
1040 addr = get_labeladdress(ctx, c, c->operands[i].u.label);
1042 goto does_not_exist;
1043 c->operands[i].u.operand = addr;
1045 /* Is not a jump target.
1046 * Make it be an immediate */
1048 c->operands[i].u.operand |= 0xC00;
1049 else if (ctx->arch == 15)
1050 c->operands[i].u.operand |= 0xC00 << 1;
1052 asm_error(ctx, "Internal error: label res imm");
1063 asm_error(ctx, "Label \"%s\" does not exist",
1064 c->operands[i].u.label->name);
1067 static void emit_code(struct assembler_context *ctx)
1071 struct code_output *c;
1073 unsigned char outbuf[8];
1074 unsigned int insn_count = 0, insn_count_limit;
1075 struct fw_header hdr;
1078 fd = fopen(fn, "w+");
1080 fprintf(stderr, "Could not open microcode output file \"%s\"\n", fn);
1083 if (IS_VERBOSE_DEBUG)
1084 fprintf(stderr, "\nCode:\n");
1086 list_for_each_entry(c, &ctx->output, list) {
1096 switch (output_format) {
1102 memset(&hdr, 0, sizeof(hdr));
1103 hdr.type = FW_TYPE_UCODE;
1104 hdr.ver = FW_HDR_VER;
1105 hdr.size = cpu_to_be32(8 * insn_count);
1106 if (fwrite(&hdr, sizeof(hdr), 1, fd) != 1) {
1107 fprintf(stderr, "Could not write microcode outfile\n");
1113 switch (ctx->arch) {
1115 insn_count_limit = NUM_INSN_LIMIT_R5;
1118 insn_count_limit = ~0; //FIXME limit currently unknown.
1121 asm_error(ctx, "Internal error: emit_code unknown arch\n");
1123 if (insn_count > insn_count_limit)
1124 asm_warn(ctx, "Generating more than %u instructions. This "
1125 "will overflow the device microcode memory.",
1128 list_for_each_entry(c, &ctx->output, list) {
1131 if (IS_VERBOSE_DEBUG) {
1132 fprintf(stderr, "%03X %03X,%03X,%03X\n",
1134 c->operands[0].u.operand,
1135 c->operands[1].u.operand,
1136 c->operands[2].u.operand);
1139 switch (ctx->arch) {
1142 code |= ((uint64_t)c->operands[2].u.operand);
1143 code |= ((uint64_t)c->operands[1].u.operand) << 12;
1144 code |= ((uint64_t)c->operands[0].u.operand) << 24;
1145 code |= ((uint64_t)c->opcode) << 36;
1149 code |= ((uint64_t)c->operands[2].u.operand);
1150 code |= ((uint64_t)c->operands[1].u.operand) << 13;
1151 code |= ((uint64_t)c->operands[0].u.operand) << 26;
1152 code |= ((uint64_t)c->opcode) << 39;
1155 asm_error(ctx, "No emit format for arch %u",
1159 switch (output_format) {
1162 code = ((code & (uint64_t)0xFFFFFFFF00000000ULL) >> 32) |
1163 ((code & (uint64_t)0x00000000FFFFFFFFULL) << 32);
1164 outbuf[0] = (code & (uint64_t)0xFF00000000000000ULL) >> 56;
1165 outbuf[1] = (code & (uint64_t)0x00FF000000000000ULL) >> 48;
1166 outbuf[2] = (code & (uint64_t)0x0000FF0000000000ULL) >> 40;
1167 outbuf[3] = (code & (uint64_t)0x000000FF00000000ULL) >> 32;
1168 outbuf[4] = (code & (uint64_t)0x00000000FF000000ULL) >> 24;
1169 outbuf[5] = (code & (uint64_t)0x0000000000FF0000ULL) >> 16;
1170 outbuf[6] = (code & (uint64_t)0x000000000000FF00ULL) >> 8;
1171 outbuf[7] = (code & (uint64_t)0x00000000000000FFULL) >> 0;
1174 outbuf[7] = (code & (uint64_t)0xFF00000000000000ULL) >> 56;
1175 outbuf[6] = (code & (uint64_t)0x00FF000000000000ULL) >> 48;
1176 outbuf[5] = (code & (uint64_t)0x0000FF0000000000ULL) >> 40;
1177 outbuf[4] = (code & (uint64_t)0x000000FF00000000ULL) >> 32;
1178 outbuf[3] = (code & (uint64_t)0x00000000FF000000ULL) >> 24;
1179 outbuf[2] = (code & (uint64_t)0x0000000000FF0000ULL) >> 16;
1180 outbuf[1] = (code & (uint64_t)0x000000000000FF00ULL) >> 8;
1181 outbuf[0] = (code & (uint64_t)0x00000000000000FFULL) >> 0;
1185 if (fwrite(&outbuf, ARRAY_SIZE(outbuf), 1, fd) != 1) {
1186 fprintf(stderr, "Could not write microcode outfile\n");
1195 if (arg_print_sizes) {
1196 printf("%s: text = %u instructions (%u bytes)\n",
1198 (unsigned int)(insn_count * sizeof(uint64_t)));
1204 static void assemble(void)
1206 struct assembler_context ctx;
1208 memset(&ctx, 0, sizeof(ctx));
1209 INIT_LIST_HEAD(&ctx.output);
1211 eval_directives(&ctx);
1212 assemble_instructions(&ctx);
1213 resolve_labels(&ctx);
1217 static void initialize(void)
1219 INIT_LIST_HEAD(&infile.sl);
1220 INIT_LIST_HEAD(&infile.ivals);
1222 if (IS_INSANE_DEBUG)
1226 #endif /* YYDEBUG */
1229 int main(int argc, char **argv)
1233 err = parse_args(argc, argv);
1240 err = open_input_file();
1246 assemble_initvals();
1250 /* Lazyman simply leaks all allocated memory. */