glapi: gl_x86_64_asm.py: Use argparse instead of getopt

Also removes the redundant -m argument, which could only be set to
'generic', or it would raise an exception. This option wasn't used in
the makefile.

Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Acked-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Dylan Baker 2015-02-12 14:04:03 -08:00 committed by Matt Turner
parent 4892456799
commit 2e3da443f1

View file

@ -25,9 +25,11 @@
# Authors:
# Ian Romanick <idr@us.ibm.com>
import argparse
import copy
import license
import gl_XML, glX_XML
import sys, getopt, copy
def should_use_push(registers):
for [reg, offset] in registers:
@ -289,30 +291,20 @@ class PrintGenericStubs(gl_XML.gl_print_base):
return
def show_usage():
print "Usage: %s [-f input_file_name] [-m output_mode]" % sys.argv[0]
sys.exit(1)
def _parser():
"""Parse arguments and return a namespace."""
parser = argparse.ArgumentParser()
parser.add_argument('-f',
default='gl_API.xml',
dest='filename',
help='An XML file describing an API')
return parser.parse_args()
if __name__ == '__main__':
file_name = "gl_API.xml"
mode = "generic"
args = _parser()
printer = PrintGenericStubs()
api = gl_XML.parse_GL_API(args.filename, glX_XML.glx_item_factory())
try:
(args, trail) = getopt.getopt(sys.argv[1:], "m:f:")
except Exception,e:
show_usage()
for (arg,val) in args:
if arg == '-m':
mode = val
elif arg == "-f":
file_name = val
if mode == "generic":
printer = PrintGenericStubs()
else:
print "ERROR: Invalid mode \"%s\" specified." % mode
show_usage()
api = gl_XML.parse_GL_API(file_name, glX_XML.glx_item_factory())
printer.Print(api)