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"
107 print "Semantic error at " NR ": " msg > "/dev/stderr"
112 print "DEBUG: " msg
123 print "/* " $0 " */"
153 print "/* " $0 " */"
162 print "const insn_attr_t " name " = {"
166 print " [" id "] = " tbl[id] ","
168 print "};"
173 # print group tables
195 # print primary/escaped tables
225 print ""
366 print "#ifndef __BOOT_COMPRESSED\n"
368 # print escape opcode map's array
369 print "/* Escape opcode map array */"
370 print "const insn_attr_t * const inat_escape_tables[INAT_ESC_MAX + 1]" \
375 print " ["i"]["j"] = "etable[i,j]","
376 print "};\n"
377 # print group opcode map's array
378 print "/* Group opcode map array */"
379 print "const insn_attr_t * const inat_group_tables[INAT_GRP_MAX + 1]"\
384 print " ["i"]["j"] = "gtable[i,j]","
385 print "};\n"
386 # print AVX opcode map's array
387 print "/* AVX opcode map array */"
388 print "const insn_attr_t * const inat_avx_tables[X86_VEX_M_MAX + 1]"\
393 print " ["i"]["j"] = "atable[i,j]","
394 print "};\n"
396 print "#else /* !__BOOT_COMPRESSED */\n"
398 print "/* Escape opcode map array */"
399 print "static const insn_attr_t *inat_escape_tables[INAT_ESC_MAX + 1]" \
401 print ""
403 print "/* Group opcode map array */"
404 print "static const insn_attr_t *inat_group_tables[INAT_GRP_MAX + 1]"\
406 print ""
408 print "/* AVX opcode map array */"
409 print "static const insn_attr_t *inat_avx_tables[X86_VEX_M_MAX + 1]"\
411 print ""
413 print "static void inat_init_tables(void)"
414 print "{"
416 # print escape opcode map's array
417 print "\t/* Print Escape opcode map array */"
421 print "\tinat_escape_tables["i"]["j"] = "etable[i,j]";"
422 print ""
424 # print group opcode map's array
425 print "\t/* Print Group opcode map array */"
429 print "\tinat_group_tables["i"]["j"] = "gtable[i,j]";"
430 print ""
431 # print AVX opcode map's array
432 print "\t/* Print AVX opcode map array */"
436 print "\tinat_avx_tables["i"]["j"] = "atable[i,j]";"
438 print "}"
439 print "#endif"