Beispiel #1
0
 def _parse_root(self):
     language = asciify(self._root_node.attributes['language'].value)
     size     = asciify(self._root_node.attributes['size'].value)
     api      = asciify(self._root_node.attributes['api'].value)
     self._data['language'] = language
     self._data['size']     = int(size, 16)
     self._data['api']      = api
Beispiel #2
0
    def _parse_pipeline(self):
        try:
            pipeline = self._root_node.getElementsByTagName('pipeline')[0]
            stages   = pipeline.getElementsByTagName('stage')

            flags = asciify(pipeline.attributes['flags'].value)
            pipeline_stages = []
            for stage in stages:
                name = asciify(stage.attributes['name'].value)
                pipeline_stages.append(name)
        except Exception, e:
            raise XmlDataFormatException(e.message)
Beispiel #3
0
 def _parse_language(self):
     try:
         language = self._root_node.getElementsByTagName('language')[0]
         l_name = asciify(language.attributes['name'].value)
         self._data['language'] = l_name
     except Exception, e:
         raise XmlDataFormatException(e.message)
Beispiel #4
0
    def _parse_registers(self):
        registers=[]

        registers_node=self._root_node.getElementsByTagName('registers')
        register_node_list=registers_node[0].getElementsByTagName('register')
        for register in register_node_list:
            name    = asciify(register.attributes['name'].value)
            number  = int(asciify(register.attributes['number'].value), 16)
            size    = int(asciify(register.attributes['size'].value), 16)
            write   = asciify(register.attributes['write'].value)
            write = (write == 'True' and True or False)
            profile = asciify(register.attributes['profile'].value)
            visible = asciify(register.attributes['visible'].value)
            visible = (visible == 'True' and True or False)
            #prepared to be nice and leniant for this one
            preset  = 0
            try:
                preset  = int(asciify(register.attributes['preset'].value), 16)
            except:
                pass

            registers.append((name, number, size, write, profile,
                              visible, preset))

        self._data['registers'] = tuple(registers)
Beispiel #5
0
    def _parse_memory(self):
        """Stores a segmentation profile for the machine's memory

        Reads an xml machine specification and looks for details
        of its memory organization.
        """
        memory=[]

        try:
            memory_node=self._root_node.getElementsByTagName('memory')[0]
            address_space = asciify(memory_node.attributes['address_space'].value)
            word          = asciify(memory_node.attributes['word'].value)
            addressable   = asciify(memory_node.attributes['addressable'].value)

            for attribute in [address_space, word, addressable]:
                #readable, but a potential bug for non-hex data
                memory.append(int(attribute, 16))

            text_node  = memory_node.getElementsByTagName('text')[0]
            data_node  = memory_node.getElementsByTagName('data')[0]
            stack_node = memory_node.getElementsByTagName('stack')[0]
            for segment in [text_node, data_node, stack_node]:
                s_name  = asciify(segment.tagName)
                s_start = int(asciify(segment.attributes['start'].value), 16)
                s_end   = int(asciify(segment.attributes['end'].value), 16)
                memory.append((s_name, s_start, s_end))
        except Exception, e:
            raise XmlDataFormatException(e.message)
Beispiel #6
0
    def _parse_formats(self):
        data=[]
        f_root = self._root_node.getElementsByTagName('formats')[0]
        formats = f_root.getElementsByTagName('format')
        for instruction_format in formats:
            f_type = asciify(
                instruction_format.attributes['type'].value)
            f_size = int(asciify(
                instruction_format.attributes['size'].value), 16)
            f_fetch = int(asciify(
                instruction_format.attributes['fetch'].value), 16)
            fields = instruction_format.getElementsByTagName('field')
            f_data=[]
            for field in fields:
                fd_name  = asciify(field.attributes['name'].value)
                fd_start = int(asciify(field.attributes['start'].value), 16)
                fd_end   = int(asciify(field.attributes['end'].value), 16)
                f_data.append((fd_name, fd_start, fd_end))
            data.append((f_type, f_size, tuple(f_data), f_fetch))

        self._data['formats'] = tuple(data)
Beispiel #7
0
    def _parse_instructions(self):
        data=[]
        instructions=self._root_node.getElementsByTagName('instruction')
        for instruction in instructions:
            # add attributes
            i_name   = asciify(instruction.attributes['name'].value)
            i_format = asciify(instruction.attributes['format'].value)

            # add signatures
            i_signature=[]
            s_root = instruction.getElementsByTagName('signature')[0]
            fields = s_root.getElementsByTagName('field')
            for field in fields:
                f_name = asciify(field.attributes['name'].value)
                i_signature.append(f_name)
            i_signature = tuple(i_signature)

            # add preset values
            i_values=[]
            f_root = instruction.getElementsByTagName('fields')[0]
            fields = f_root.getElementsByTagName('field')
            for field in fields:
                f_name  = asciify(field.attributes['name'].value)
                f_value = asciify(field.attributes['value'].value)
                i_values.append((f_name, int(f_value, 16)))
            i_values = tuple(i_values)

            # add syntax
            i_syntax=[]
            s_root = instruction.getElementsByTagName('syntax')[0]
            fields = s_root.getElementsByTagName('field')
            expression   = s_root.getElementsByTagName('expression')[0]
            symbols = s_root.getElementsByTagName('symbol')
            for symbol in symbols:
                s_kind=symbol.attributes['type'].value
                s_match=symbol.attributes['matches'].value
                i_syntax.append((asciify(s_match), asciify(s_kind)))
            i_expression = asciify(expression.attributes['pattern'].value)
            i_syntax = tuple(i_syntax)

            # add implementation
            i_implementation=[]
            im_root = instruction.getElementsByTagName('implementation')[0]
            methods = im_root.getElementsByTagName('method')
            for method in methods:
                im_name = asciify(method.attributes['name'].value)
                im_args = asciify(method.attributes['args'].value)
                im_args = im_args.split()
                for i in range(len(im_args)):
                    if im_args[i][:2] == '0x':
                        im_args[i] = int(im_args[i], 16)
                i_implementation.append(tuple((im_name, tuple(im_args))))
            i_implementation = tuple(i_implementation)

            # add replacements
            i_replacements=[]
            try:
                r_root = instruction.getElementsByTagName('replacements')[0]
                replacements = r_root.getElementsByTagName('replacement')
                for replacement in replacements:
                    r_name  = asciify(replacement.attributes['name'].value)
                    r_group = asciify(replacement.attributes['group'].value)
                    r_type  = asciify(replacement.attributes['type'].value)
                    try:
                        i_replacements = (
                            r_name, int(r_group, 16), r_type)
                    except Exception, e:
                        raise XmlDataFormatException(e)
            except Exception, e:
                pass

            instruction=(i_name, i_format, i_signature,
                         i_expression, i_values, i_syntax,
                         i_implementation, i_replacements)

            data.append(instruction)
Beispiel #8
0
 def _parse_root(self):
     name = asciify(self._root_node.attributes['name'].value)
     self._data['name'] = name