Lichen

Annotated optimiser.py

101:be308b898916
2016-10-15 Paul Boddie Added a method providing the parent of any reference alias.
paul@92 1
#!/usr/bin/env python
paul@92 2
paul@92 3
"""
paul@95 4
Optimise object layouts and generate access instruction plans.
paul@92 5
paul@92 6
Copyright (C) 2014, 2015, 2016 Paul Boddie <paul@boddie.org.uk>
paul@92 7
paul@92 8
This program is free software; you can redistribute it and/or modify it under
paul@92 9
the terms of the GNU General Public License as published by the Free Software
paul@92 10
Foundation; either version 3 of the License, or (at your option) any later
paul@92 11
version.
paul@92 12
paul@92 13
This program is distributed in the hope that it will be useful, but WITHOUT
paul@92 14
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
paul@92 15
FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
paul@92 16
details.
paul@92 17
paul@92 18
You should have received a copy of the GNU General Public License along with
paul@92 19
this program.  If not, see <http://www.gnu.org/licenses/>.
paul@92 20
"""
paul@92 21
paul@92 22
from common import add_counter_item, get_attrname_from_location, init_item, \
paul@92 23
                   sorted_output
paul@94 24
from encoders import encode_access_location, encode_instruction, get_kinds
paul@92 25
from os.path import exists, join
paul@92 26
from os import makedirs
paul@92 27
from referencing import Reference
paul@92 28
paul@92 29
class Optimiser:
paul@92 30
paul@92 31
    "Optimise objects in a program."
paul@92 32
paul@92 33
    def __init__(self, importer, deducer, output):
paul@92 34
paul@92 35
        """
paul@92 36
        Initialise an instance using the given 'importer' and 'deducer' that
paul@92 37
        will perform the arrangement of attributes for program objects, writing
paul@92 38
        the results to the given 'output' directory.
paul@92 39
        """
paul@92 40
paul@92 41
        self.importer = importer
paul@92 42
        self.deducer = deducer
paul@92 43
        self.output = output
paul@92 44
paul@92 45
        # Locations/offsets of attributes in objects.
paul@92 46
paul@92 47
        self.locations = None
paul@92 48
        self.attr_locations = None
paul@92 49
        self.all_attrnames = None
paul@92 50
paul@92 51
        # Locations of parameters in parameter tables.
paul@92 52
paul@92 53
        self.arg_locations = None
paul@92 54
        self.param_locations = None
paul@92 55
        self.all_paramnames = None
paul@92 56
paul@92 57
        # Specific attribute access information.
paul@92 58
paul@94 59
        self.access_instructions = {}
paul@92 60
paul@92 61
        # Object structure information.
paul@92 62
paul@92 63
        self.structures = {}
paul@92 64
        self.attr_table = {}
paul@92 65
paul@92 66
        # Parameter list information.
paul@92 67
paul@92 68
        self.parameters = {}
paul@92 69
        self.param_table = {}
paul@92 70
paul@92 71
        # Constant literal information.
paul@92 72
paul@92 73
        self.constants = []
paul@92 74
        self.constant_numbers = {}
paul@92 75
paul@92 76
        # Optimiser activities.
paul@92 77
paul@92 78
        self.populate_objects()
paul@92 79
        self.position_attributes()
paul@92 80
        self.populate_parameters()
paul@92 81
        self.position_parameters()
paul@92 82
        self.populate_tables()
paul@92 83
        self.populate_constants()
paul@94 84
        self.initialise_access_instructions()
paul@92 85
paul@92 86
    def to_output(self):
paul@92 87
paul@92 88
        "Write the output files using optimisation information."
paul@92 89
paul@92 90
        if not exists(self.output):
paul@92 91
            makedirs(self.output)
paul@92 92
paul@92 93
        self.write_objects()
paul@92 94
paul@92 95
    def write_objects(self):
paul@92 96
paul@92 97
        """
paul@92 98
        Write object-related output.
paul@92 99
paul@92 100
        The locations are a list of positions indicating the attributes residing
paul@92 101
        at each position in the different structures in a program.
paul@92 102
paul@92 103
        ----
paul@92 104
paul@92 105
        The parameter locations are a list of positions indicating the parameters
paul@92 106
        residing at each position in the different parameter lists in a program.
paul@92 107
paul@92 108
        ----
paul@92 109
paul@92 110
        Each attribute plan provides attribute details in the following format:
paul@92 111
paul@92 112
        location " " name " " test " " test type " " base
paul@92 113
                 " " traversed attributes " " traversed attribute ambiguity
paul@96 114
                 " " traversal access modes
paul@92 115
                 " " attributes to traverse " " attribute ambiguity
paul@92 116
                 " " context " " access method " " static attribute
paul@92 117
paul@92 118
        Locations have the following format:
paul@92 119
paul@92 120
        qualified name of scope "." local name ":" name version
paul@92 121
paul@96 122
        Traversal access modes are either "class" (obtain accessor class to
paul@96 123
        access attribute) or "object" (obtain attribute directly from accessor).
paul@96 124
paul@92 125
        ----
paul@92 126
paul@92 127
        The structures are presented as a table in the following format:
paul@92 128
paul@92 129
        qualified name " " attribute names
paul@92 130
paul@92 131
        The attribute names are separated by ", " characters and indicate the
paul@92 132
        attribute provided at each position in the structure associated with the
paul@92 133
        given type. Where no attribute is provided at a particular location
paul@92 134
        within a structure, "-" is given.
paul@92 135
paul@92 136
        ----
paul@92 137
paul@92 138
        The parameters are presented as a table in the following format:
paul@92 139
paul@92 140
        qualified name " " parameter details
paul@92 141
paul@92 142
        The parameter details are separated by ", " characters and indicate
paul@92 143
        the parameter name and list position for each parameter described at
paul@92 144
        each location in the parameter table associated with the given
paul@92 145
        function. Where no parameter details are provided at a particular
paul@92 146
        location within a parameter table, "-" is given. The name and list
paul@92 147
        position are separated by a colon (":").
paul@92 148
paul@92 149
        ----
paul@92 150
paul@92 151
        The attribute table is presented as a table in the following format:
paul@92 152
paul@92 153
        qualified name " " attribute identifiers
paul@92 154
paul@92 155
        Instead of attribute names, identifiers defined according to the order
paul@92 156
        given in the "attrnames" file are employed to denote the attributes
paul@92 157
        featured in each type's structure. Where no attribute is provided at a
paul@92 158
        particular location within a structure, "-" is given.
paul@92 159
paul@92 160
        ----
paul@92 161
paul@92 162
        The parameter table is presented as a table in the following format:
paul@92 163
paul@92 164
        qualified name " " parameter details
paul@92 165
paul@92 166
        Instead of parameter names, identifiers defined according to the order
paul@92 167
        given in the "paramnames" file are employed to denote the parameters
paul@92 168
        featured in each function's parameter table. Where no parameter is
paul@92 169
        provided at a particular location within a table, "-" is given.
paul@92 170
paul@92 171
        ----
paul@92 172
paul@92 173
        The ordered list of attribute names is given in the "attrnames" file.
paul@92 174
paul@92 175
        ----
paul@92 176
paul@92 177
        The ordered list of parameter names is given in the "paramnames" file.
paul@92 178
paul@92 179
        ----
paul@92 180
paul@92 181
        The ordered list of constant literals is given in the "constants" file.
paul@92 182
        """
paul@92 183
paul@92 184
        f = open(join(self.output, "locations"), "w")
paul@92 185
        try:
paul@92 186
            for attrnames in self.locations:
paul@92 187
                print >>f, sorted_output(attrnames)
paul@92 188
paul@92 189
        finally:
paul@92 190
            f.close()
paul@92 191
paul@92 192
        f = open(join(self.output, "parameter_locations"), "w")
paul@92 193
        try:
paul@92 194
            for argnames in self.arg_locations:
paul@92 195
                print >>f, sorted_output(argnames)
paul@92 196
paul@92 197
        finally:
paul@92 198
            f.close()
paul@92 199
paul@94 200
        f = open(join(self.output, "instruction_plans"), "w")
paul@94 201
        try:
paul@94 202
            access_instructions = self.access_instructions.items()
paul@94 203
            access_instructions.sort()
paul@94 204
paul@94 205
            for location, instructions in access_instructions:
paul@94 206
                print >>f, encode_access_location(location), "..."
paul@94 207
                for instruction in instructions:
paul@94 208
                    print >>f, encode_instruction(instruction)
paul@94 209
                print >>f
paul@92 210
paul@92 211
        finally:
paul@92 212
            f.close()
paul@92 213
paul@92 214
        f = open(join(self.output, "structures"), "w")
paul@92 215
        try:
paul@92 216
            structures = self.structures.items()
paul@92 217
            structures.sort()
paul@92 218
paul@92 219
            for name, attrnames in structures:
paul@92 220
                print >>f, name, ", ".join([s or "-" for s in attrnames])
paul@92 221
paul@92 222
        finally:
paul@92 223
            f.close()
paul@92 224
paul@92 225
        f = open(join(self.output, "parameters"), "w")
paul@92 226
        try:
paul@92 227
            parameters = self.parameters.items()
paul@92 228
            parameters.sort()
paul@92 229
paul@92 230
            for name, argnames in parameters:
paul@92 231
                print >>f, name, ", ".join([s and ("%s:%d" % s) or "-" for s in argnames])
paul@92 232
paul@92 233
        finally:
paul@92 234
            f.close()
paul@92 235
paul@92 236
        f = open(join(self.output, "attrtable"), "w")
paul@92 237
        try:
paul@92 238
            attr_table = self.attr_table.items()
paul@92 239
            attr_table.sort()
paul@92 240
paul@92 241
            for name, attrcodes in attr_table:
paul@92 242
                print >>f, name, ", ".join([i is not None and str(i) or "-" for i in attrcodes])
paul@92 243
paul@92 244
        finally:
paul@92 245
            f.close()
paul@92 246
paul@92 247
        f = open(join(self.output, "paramtable"), "w")
paul@92 248
        try:
paul@92 249
            param_table = self.param_table.items()
paul@92 250
            param_table.sort()
paul@92 251
paul@92 252
            for name, paramcodes in param_table:
paul@92 253
                print >>f, name, ", ".join([s and ("%d:%d" % s) or "-" for s in paramcodes])
paul@92 254
paul@92 255
        finally:
paul@92 256
            f.close()
paul@92 257
paul@92 258
        f = open(join(self.output, "attrnames"), "w")
paul@92 259
        try:
paul@92 260
            for name in self.all_attrnames:
paul@92 261
                print >>f, name
paul@92 262
paul@92 263
        finally:
paul@92 264
            f.close()
paul@92 265
paul@92 266
        f = open(join(self.output, "paramnames"), "w")
paul@92 267
        try:
paul@92 268
            for name in self.all_paramnames:
paul@92 269
                print >>f, name
paul@92 270
paul@92 271
        finally:
paul@92 272
            f.close()
paul@92 273
paul@92 274
        f = open(join(self.output, "constants"), "w")
paul@92 275
        try:
paul@92 276
            constants = [(n, value) for (value, n) in self.constants.items()]
paul@92 277
            constants.sort()
paul@92 278
            for n, value in constants:
paul@92 279
                print >>f, repr(value)
paul@92 280
paul@92 281
        finally:
paul@92 282
            f.close()
paul@92 283
paul@92 284
    def populate_objects(self):
paul@92 285
paul@92 286
        "Populate objects using attribute and usage information."
paul@92 287
paul@92 288
        all_attrs = {}
paul@92 289
paul@92 290
        # Partition attributes into separate sections so that class and instance
paul@92 291
        # attributes are treated separately.
paul@92 292
paul@92 293
        for source, objtype in [
paul@92 294
            (self.importer.all_class_attrs, "<class>"),
paul@92 295
            (self.importer.all_instance_attrs, "<instance>"),
paul@92 296
            (self.importer.all_module_attrs, "<module>")
paul@92 297
            ]:
paul@92 298
            for name, attrs in source.items():
paul@92 299
                all_attrs[(objtype, name)] = attrs
paul@92 300
paul@92 301
        self.locations = get_allocated_locations(all_attrs, get_attributes_and_sizes)
paul@92 302
paul@92 303
    def populate_parameters(self):
paul@92 304
paul@92 305
        "Populate parameter tables using parameter information."
paul@92 306
paul@92 307
        self.arg_locations = get_allocated_locations(self.importer.function_parameters, get_parameters_and_sizes)
paul@92 308
paul@92 309
    def position_attributes(self):
paul@92 310
paul@92 311
        "Position specific attribute references."
paul@92 312
paul@92 313
        # Reverse the location mappings.
paul@92 314
paul@92 315
        attr_locations = self.attr_locations = {}
paul@92 316
paul@92 317
        for i, attrnames in enumerate(self.locations):
paul@92 318
            for attrname in attrnames:
paul@92 319
                attr_locations[attrname] = i
paul@92 320
paul@92 321
        # Record the structures.
paul@92 322
paul@92 323
        for source, objtype in [
paul@92 324
            (self.importer.all_class_attrs, "<class>"),
paul@92 325
            (self.importer.all_instance_attrs, "<instance>"),
paul@92 326
            (self.importer.all_module_attrs, "<module>")
paul@92 327
            ]:
paul@92 328
paul@92 329
            for name, attrnames in source.items():
paul@92 330
                key = Reference(objtype, name)
paul@92 331
                l = self.structures[key] = [None] * len(attrnames)
paul@92 332
                for attrname in attrnames:
paul@92 333
                    position = attr_locations[attrname]
paul@92 334
                    if position >= len(l):
paul@92 335
                        l.extend([None] * (position - len(l) + 1))
paul@92 336
                    l[position] = attrname
paul@92 337
paul@94 338
    def initialise_access_instructions(self):
paul@94 339
paul@94 340
        "Expand access plans into instruction sequences."
paul@94 341
paul@97 342
        for access_location, access_plan in self.deducer.access_plans.items():
paul@94 343
paul@94 344
            # Obtain the access details.
paul@94 345
paul@96 346
            name, test, test_type, base, traversed, traversal_modes, \
paul@96 347
                attrnames, context, first_method, final_method, origin = access_plan
paul@94 348
paul@94 349
            instructions = []
paul@94 350
            emit = instructions.append
paul@94 351
paul@94 352
            if base:
paul@94 353
                original_accessor = base
paul@94 354
            else:
paul@95 355
                original_accessor = "<expr>" # use a generic placeholder
paul@94 356
paul@94 357
            # Prepare for any first attribute access.
paul@94 358
paul@94 359
            if traversed:
paul@94 360
                attrname = traversed[0]
paul@94 361
                del traversed[0]
paul@94 362
            elif attrnames:
paul@94 363
                attrname = attrnames[0]
paul@94 364
                del attrnames[0]
paul@94 365
paul@98 366
            # Perform the first access explicitly if at least one operation
paul@98 367
            # requires it.
paul@98 368
paul@98 369
            access_first_attribute = final_method in ("access", "assign") or traversed or attrnames
paul@98 370
paul@98 371
            # Determine whether the first access involves assignment.
paul@98 372
paul@98 373
            assigning = not traversed and not attrnames and final_method == "assign"
paul@94 374
paul@94 375
            # Set the context if already available.
paul@100 376
paul@100 377
            if context == "original-accessor":
paul@100 378
                emit(("set_context", original_accessor))
paul@100 379
                accessor = "context"
paul@100 380
            elif context == "base":
paul@100 381
                emit(("set_context", base))
paul@100 382
                accessor = "context"
paul@100 383
paul@98 384
            # Assigning does not set the context.
paul@94 385
paul@100 386
            elif context in ("final-accessor", "unset"):
paul@95 387
                emit(("set_accessor", original_accessor))
paul@95 388
                accessor = "accessor"
paul@94 389
paul@94 390
            # Apply any test.
paul@94 391
paul@95 392
            if test == "specific-type":
paul@94 393
                emit(("test_specific_type", accessor, test_type))
paul@95 394
            elif test == "specific-instance":
paul@94 395
                emit(("test_specific_instance", accessor, test_type))
paul@95 396
            elif test == "specific-object":
paul@94 397
                emit(("test_specific_object", accessor, test_type))
paul@95 398
            elif test == "common-type":
paul@94 399
                emit(("test_common_type", accessor, test_type))
paul@95 400
            elif test == "common-instance":
paul@94 401
                emit(("test_common_instance", accessor, test_type))
paul@95 402
            elif test == "common-object":
paul@94 403
                emit(("test_common_object", accessor, test_type))
paul@94 404
paul@94 405
            # Perform the first or final access.
paul@94 406
            # The access only needs performing if the resulting accessor is used.
paul@94 407
paul@94 408
            if access_first_attribute:
paul@94 409
paul@94 410
                if first_method == "relative-class":
paul@98 411
                    if assigning:
paul@98 412
                        emit(("store_via_class", accessor, attrname, "<assexpr>"))
paul@98 413
                    else:
paul@98 414
                        emit(("set_accessor", ("load_via_class", accessor, attrname)))
paul@98 415
paul@94 416
                elif first_method == "relative-object":
paul@98 417
                    if assigning:
paul@98 418
                        emit(("store_via_object", accessor, attrname, "<assexpr>"))
paul@98 419
                    else:
paul@98 420
                        emit(("set_accessor", ("load_via_object", accessor, attrname)))
paul@98 421
paul@94 422
                elif first_method == "relative-object-class":
paul@98 423
                    if assigning:
paul@98 424
                        emit(("get_class_and_store", accessor, attrname, "<assexpr>"))
paul@98 425
                    else:
paul@98 426
                        emit(("set_accessor", ("get_class_and_load", accessor, attrname)))
paul@98 427
paul@94 428
                elif first_method == "check-class":
paul@98 429
                    if assigning:
paul@98 430
                        emit(("check_and_store_via_class", accessor, attrname, "<assexpr>"))
paul@98 431
                    else:
paul@98 432
                        emit(("set_accessor", ("check_and_load_via_class", accessor, attrname)))
paul@98 433
paul@94 434
                elif first_method == "check-object":
paul@98 435
                    if assigning:
paul@98 436
                        emit(("check_and_store_via_object", accessor, attrname, "<assexpr>"))
paul@98 437
                    else:
paul@98 438
                        emit(("set_accessor", ("check_and_load_via_object", accessor, attrname)))
paul@98 439
paul@94 440
                elif first_method == "check-object-class":
paul@98 441
                    if assigning:
paul@98 442
                        emit(("check_and_store_via_any", accessor, attrname, "<assexpr>"))
paul@98 443
                    else:
paul@98 444
                        emit(("set_accessor", ("check_and_load_via_any", accessor, attrname)))
paul@94 445
paul@94 446
            # Obtain an accessor.
paul@94 447
paul@94 448
            remaining = len(traversed + attrnames)
paul@94 449
paul@94 450
            if traversed:
paul@96 451
                for attrname, traversal_mode in zip(traversed, traversal_modes):
paul@98 452
                    assigning = remaining == 1 and final_method == "assign"
paul@94 453
paul@94 454
                    # Set the context, if appropriate.
paul@94 455
paul@98 456
                    if remaining == 1 and final_method != "assign" and context == "final-accessor":
paul@94 457
                        emit(("set_context", "accessor"))
paul@94 458
paul@94 459
                    # Perform the access only if not achieved directly.
paul@94 460
paul@98 461
                    if remaining > 1 or final_method in ("access", "assign"):
paul@98 462
paul@96 463
                        if traversal_mode == "class":
paul@98 464
                            if assigning:
paul@98 465
                                emit(("store_via_class", "accessor", attrname, "<assexpr>"))
paul@98 466
                            else:
paul@98 467
                                emit(("set_accessor", ("load_via_class", "accessor", attrname)))
paul@96 468
                        else:
paul@98 469
                            if assigning:
paul@98 470
                                emit(("store_via_object", "accessor", attrname, "<assexpr>"))
paul@98 471
                            else:
paul@98 472
                                emit(("set_accessor", ("load_via_object", "accessor", attrname)))
paul@94 473
paul@94 474
                    remaining -= 1
paul@94 475
paul@94 476
            if attrnames:
paul@96 477
                for attrname in attrnames:
paul@98 478
                    assigning = remaining == 1 and final_method == "assign"
paul@94 479
paul@94 480
                    # Set the context, if appropriate.
paul@94 481
paul@98 482
                    if remaining == 1 and final_method != "assign" and context == "final-accessor":
paul@94 483
                        emit(("set_context", "accessor"))
paul@94 484
paul@94 485
                    # Perform the access only if not achieved directly.
paul@94 486
paul@98 487
                    if remaining > 1 or final_method in ("access", "assign"):
paul@98 488
paul@98 489
                        if assigning:
paul@98 490
                            emit(("check_and_store_via_any", "accessor", attrname, "<assexpr>"))
paul@98 491
                        else:
paul@98 492
                            emit(("set_accessor", ("check_and_load_via_any", "accessor", attrname)))
paul@94 493
paul@94 494
                    remaining -= 1
paul@94 495
paul@98 496
            if final_method == "static-assign":
paul@98 497
                emit(("store_member", origin, "<assexpr>"))
paul@94 498
            elif final_method == "static":
paul@94 499
                emit(("load_static", origin))
paul@94 500
paul@94 501
            self.access_instructions[access_location] = instructions
paul@92 502
paul@92 503
    def get_ambiguity_for_attributes(self, attrnames):
paul@92 504
paul@92 505
        """
paul@92 506
        Return a list of attribute position alternatives corresponding to each
paul@92 507
        of the given 'attrnames'.
paul@92 508
        """
paul@92 509
paul@92 510
        ambiguity = []
paul@92 511
paul@92 512
        for attrname in attrnames:
paul@92 513
            position = self.attr_locations[attrname]
paul@92 514
            ambiguity.append(len(self.locations[position]))
paul@92 515
paul@92 516
        return ambiguity
paul@92 517
paul@92 518
    def position_parameters(self):
paul@92 519
paul@92 520
        "Position the parameters for each function's parameter table."
paul@92 521
paul@92 522
        # Reverse the location mappings.
paul@92 523
paul@92 524
        param_locations = self.param_locations = {}
paul@92 525
paul@92 526
        for i, argnames in enumerate(self.arg_locations):
paul@92 527
            for argname in argnames:
paul@92 528
                param_locations[argname] = i
paul@92 529
paul@92 530
        for name, argnames in self.importer.function_parameters.items():
paul@92 531
            l = self.parameters[name] = [None] * len(argnames)
paul@92 532
paul@92 533
            # Store an entry for the name along with the name's position in the
paul@92 534
            # parameter list.
paul@92 535
paul@92 536
            for pos, argname in enumerate(argnames):
paul@92 537
                position = param_locations[argname]
paul@92 538
                if position >= len(l):
paul@92 539
                    l.extend([None] * (position - len(l) + 1))
paul@92 540
                l[position] = (argname, pos)
paul@92 541
paul@92 542
    def populate_tables(self):
paul@92 543
paul@92 544
        """
paul@92 545
        Assign identifiers to attributes and encode structure information using
paul@92 546
        these identifiers.
paul@92 547
        """
paul@92 548
paul@92 549
        self.all_attrnames, d = self._get_name_mapping(self.attr_locations)
paul@92 550
paul@92 551
        # Record the numbers indicating the locations of the names.
paul@92 552
paul@92 553
        for key, attrnames in self.structures.items():
paul@92 554
            l = self.attr_table[key] = []
paul@92 555
            for attrname in attrnames:
paul@92 556
                if attrname is None:
paul@92 557
                    l.append(None)
paul@92 558
                else:
paul@92 559
                    l.append(d[attrname])
paul@92 560
paul@92 561
        self.all_paramnames, d = self._get_name_mapping(self.param_locations)
paul@92 562
paul@92 563
        # Record the numbers indicating the locations of the names.
paul@92 564
paul@92 565
        for key, values in self.parameters.items():
paul@92 566
            l = self.param_table[key] = []
paul@92 567
            for value in values:
paul@92 568
                if value is None:
paul@92 569
                    l.append(None)
paul@92 570
                else:
paul@92 571
                    name, pos = value
paul@92 572
                    l.append((d[name], pos))
paul@92 573
paul@92 574
    def _get_name_mapping(self, locations):
paul@92 575
paul@92 576
        """
paul@92 577
        Get a sorted list of names from 'locations', then map them to
paul@92 578
        identifying numbers. Return the list and the mapping.
paul@92 579
        """
paul@92 580
paul@92 581
        all_names = locations.keys()
paul@92 582
        all_names.sort()
paul@92 583
        return all_names, dict([(name, i) for i, name in enumerate(all_names)])
paul@92 584
paul@92 585
    def populate_constants(self):
paul@92 586
paul@92 587
        """
paul@92 588
        Obtain a collection of distinct constant literals, building a mapping
paul@92 589
        from constant references to those in this collection.
paul@92 590
        """
paul@92 591
paul@92 592
        # Obtain mappings from constant values to identifiers.
paul@92 593
paul@92 594
        self.constants = {}
paul@92 595
paul@92 596
        for path, constants in self.importer.all_constants.items():
paul@92 597
            for constant, n in constants.items():
paul@92 598
paul@92 599
                # Record constants and obtain a number for them.
paul@92 600
paul@92 601
                add_counter_item(self.constants, constant)
paul@92 602
paul@92 603
        self.constant_numbers = {}
paul@92 604
paul@92 605
        for name, (value, value_type) in self.importer.all_constant_values.items():
paul@92 606
            self.constant_numbers[name] = self.constants[value]
paul@92 607
paul@92 608
def combine_rows(a, b):
paul@92 609
    c = []
paul@92 610
    for i, j in zip(a, b):
paul@92 611
        if i is None or j is None:
paul@92 612
            c.append(i or j)
paul@92 613
        else:
paul@92 614
            return None
paul@92 615
    return c
paul@92 616
paul@92 617
def get_attributes_and_sizes(d):
paul@92 618
paul@92 619
    """
paul@92 620
    Return a matrix of attributes, a list of type names corresponding to columns
paul@92 621
    in the matrix, and a list of ranked sizes each indicating...
paul@92 622
paul@92 623
     * a weighted size depending on the kind of object
paul@92 624
     * the minimum size of an object employing an attribute
paul@92 625
     * the number of free columns in the matrix for the attribute
paul@92 626
     * the attribute name itself
paul@92 627
    """
paul@92 628
paul@92 629
    attrs = {}
paul@92 630
    sizes = {}
paul@92 631
    objtypes = {}
paul@92 632
paul@92 633
    for name, attrnames in d.items():
paul@92 634
        objtype, _name = name
paul@92 635
paul@92 636
        for attrname in attrnames:
paul@92 637
paul@92 638
            # Record each type supporting the attribute.
paul@92 639
paul@92 640
            init_item(attrs, attrname, set)
paul@92 641
            attrs[attrname].add(name)
paul@92 642
paul@92 643
            # Maintain a record of the smallest object size supporting the given
paul@92 644
            # attribute.
paul@92 645
paul@92 646
            if not sizes.has_key(attrname):
paul@92 647
                sizes[attrname] = len(attrnames)
paul@92 648
            else:
paul@92 649
                sizes[attrname] = min(sizes[attrname], len(attrnames))
paul@92 650
paul@92 651
            # Record the object types/kinds supporting the attribute.
paul@92 652
paul@92 653
            init_item(objtypes, attrname, set)
paul@92 654
            objtypes[attrname].add(objtype)
paul@92 655
paul@92 656
    # Obtain attribute details in order of size and occupancy.
paul@92 657
paul@92 658
    names = d.keys()
paul@92 659
paul@92 660
    rsizes = []
paul@92 661
    for attrname, size in sizes.items():
paul@92 662
        priority = "<instance>" in objtypes[attrname] and 0.5 or 1
paul@92 663
        occupied = len(attrs[attrname])
paul@92 664
        key = (priority * size, size, len(names) - occupied, attrname)
paul@92 665
        rsizes.append(key)
paul@92 666
paul@92 667
    rsizes.sort()
paul@92 668
paul@92 669
    # Make a matrix of attributes.
paul@92 670
paul@92 671
    matrix = {}
paul@92 672
    for attrname, types in attrs.items():
paul@92 673
        row = []
paul@92 674
        for name in names:
paul@92 675
            if name in types:
paul@92 676
                row.append(attrname)
paul@92 677
            else:
paul@92 678
                row.append(None)
paul@92 679
        matrix[attrname] = row
paul@92 680
paul@92 681
    return matrix, names, rsizes
paul@92 682
paul@92 683
def get_parameters_and_sizes(d):
paul@92 684
paul@92 685
    """
paul@92 686
    Return a matrix of parameters, a list of functions corresponding to columns
paul@92 687
    in the matrix, and a list of ranked sizes each indicating...
paul@92 688
paul@92 689
     * a weighted size depending on the kind of object
paul@92 690
     * the minimum size of a parameter list employing a parameter
paul@92 691
     * the number of free columns in the matrix for the parameter
paul@92 692
     * the parameter name itself
paul@92 693
paul@92 694
    This is a slightly simpler version of the above 'get_attributes_and_sizes'
paul@92 695
    function.
paul@92 696
    """
paul@92 697
paul@92 698
    params = {}
paul@92 699
    sizes = {}
paul@92 700
paul@92 701
    for name, argnames in d.items():
paul@92 702
        for argname in argnames:
paul@92 703
paul@92 704
            # Record each function supporting the parameter.
paul@92 705
paul@92 706
            init_item(params, argname, set)
paul@92 707
            params[argname].add(name)
paul@92 708
paul@92 709
            # Maintain a record of the smallest parameter list supporting the
paul@92 710
            # given parameter.
paul@92 711
paul@92 712
            if not sizes.has_key(argname):
paul@92 713
                sizes[argname] = len(argnames)
paul@92 714
            else:
paul@92 715
                sizes[argname] = min(sizes[argname], len(argnames))
paul@92 716
paul@92 717
    # Obtain attribute details in order of size and occupancy.
paul@92 718
paul@92 719
    names = d.keys()
paul@92 720
paul@92 721
    rsizes = []
paul@92 722
    for argname, size in sizes.items():
paul@92 723
        occupied = len(params[argname])
paul@92 724
        key = (size, size, len(names) - occupied, argname)
paul@92 725
        rsizes.append(key)
paul@92 726
paul@92 727
    rsizes.sort()
paul@92 728
paul@92 729
    # Make a matrix of parameters.
paul@92 730
paul@92 731
    matrix = {}
paul@92 732
    for argname, types in params.items():
paul@92 733
        row = []
paul@92 734
        for name in names:
paul@92 735
            if name in types:
paul@92 736
                row.append(argname)
paul@92 737
            else:
paul@92 738
                row.append(None)
paul@92 739
        matrix[argname] = row
paul@92 740
paul@92 741
    return matrix, names, rsizes
paul@92 742
paul@92 743
def get_allocated_locations(d, fn):
paul@92 744
paul@92 745
    """
paul@92 746
    Return a list where each element corresponds to a structure location and
paul@92 747
    contains a set of attribute names that may be stored at that location, given
paul@92 748
    a mapping 'd' whose keys are (object type, object name) tuples and whose
paul@92 749
    values are collections of attributes.
paul@92 750
    """
paul@92 751
paul@92 752
    matrix, names, rsizes = fn(d)
paul@92 753
    allocated = []
paul@92 754
paul@92 755
    x = 0
paul@92 756
    while x < len(rsizes):
paul@92 757
        weight, size, free, attrname = rsizes[x]
paul@92 758
        base = matrix[attrname]
paul@92 759
        y = x + 1
paul@92 760
        while y < len(rsizes):
paul@92 761
            _weight, _size, _free, _attrname = rsizes[y]
paul@92 762
            occupied = len(names) - _free
paul@92 763
            if occupied > free:
paul@92 764
                break
paul@92 765
            new = combine_rows(base, matrix[_attrname])
paul@92 766
            if new:
paul@92 767
                del matrix[_attrname]
paul@92 768
                del rsizes[y]
paul@92 769
                base = new
paul@92 770
                free -= occupied
paul@92 771
            else:
paul@92 772
                y += 1
paul@92 773
        allocated.append(base)
paul@92 774
        x += 1
paul@92 775
paul@92 776
    # Return the list of attribute names from each row of the allocated
paul@92 777
    # attributes table.
paul@92 778
paul@92 779
    return [set([attrname for attrname in attrnames if attrname]) for attrnames in allocated]
paul@92 780
paul@92 781
# vim: tabstop=4 expandtab shiftwidth=4