Lines Matching full:print
31 print "Error: " awkchecked > "/dev/stderr"
32 print "Please try to use gawk." > "/dev/stderr"
37 print "/* x86 opcode map generated from x86-opcode-map.txt */"
38 print "/* Do not change this code. */\n"
112 print "Semantic error at " NR ": " msg > "/dev/stderr"
117 print "DEBUG: " msg
128 print "/* " $0 " */"
158 print "/* " $0 " */"
167 print "const insn_attr_t " name " = {"
171 print " [" id "] = " tbl[id] ","
173 print "};"
178 # print group tables
200 # print primary/escaped tables
230 print ""
379 print "#ifndef __BOOT_COMPRESSED\n"
381 # print escape opcode map's array
382 print "/* Escape opcode map array */"
383 print "const insn_attr_t * const inat_escape_tables[INAT_ESC_MAX + 1]" \
388 print " ["i"]["j"] = "etable[i,j]","
389 print "};\n"
390 # print group opcode map's array
391 print "/* Group opcode map array */"
392 print "const insn_attr_t * const inat_group_tables[INAT_GRP_MAX + 1]"\
397 print " ["i"]["j"] = "gtable[i,j]","
398 print "};\n"
399 # print AVX opcode map's array
400 print "/* AVX opcode map array */"
401 print "const insn_attr_t * const inat_avx_tables[X86_VEX_M_MAX + 1]"\
406 print " ["i"]["j"] = "atable[i,j]","
407 print "};\n"
409 print "#else /* !__BOOT_COMPRESSED */\n"
411 print "/* Escape opcode map array */"
412 print "static const insn_attr_t *inat_escape_tables[INAT_ESC_MAX + 1]" \
414 print ""
416 print "/* Group opcode map array */"
417 print "static const insn_attr_t *inat_group_tables[INAT_GRP_MAX + 1]"\
419 print ""
421 print "/* AVX opcode map array */"
422 print "static const insn_attr_t *inat_avx_tables[X86_VEX_M_MAX + 1]"\
424 print ""
426 print "static void inat_init_tables(void)"
427 print "{"
429 # print escape opcode map's array
430 print "\t/* Print Escape opcode map array */"
434 print "\tinat_escape_tables["i"]["j"] = "etable[i,j]";"
435 print ""
437 # print group opcode map's array
438 print "\t/* Print Group opcode map array */"
442 print "\tinat_group_tables["i"]["j"] = "gtable[i,j]";"
443 print ""
444 # print AVX opcode map's array
445 print "\t/* Print AVX opcode map array */"
449 print "\tinat_avx_tables["i"]["j"] = "atable[i,j]";"
451 print "}"
452 print "#endif"