summaryrefslogtreecommitdiff
path: root/src/treebuilder/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* treebuilder: Return to running gperf at build time.Michael Drake2021-05-271-1/+11
| | | | Now we include the generated C file directly, in a new C file.
* treebuilder: Include generated element type lookup source.Michael Drake2021-05-241-7/+1
| | | | | | | | | Previously this source was generated at build time, however there was variance in the versions of gperf on all the platforms that we support. The comment at the top of the generated source file contains a command that can be used to regenerate it manually.
* Treebuilder: Massively optimise element type from name with gperf.Michael Drake2021-05-151-1/+7
| | | | | | | | | | Loading the html5 single page spec: * We were spending 10.81% of total runtime in element_type_from_name. Now it takes 0.66% of total runtime. * Total instruction fetch cost is reduced from 5,660,475,511 to 4,523,112,517.
* Update to new NSBUILD infrastructureDaniel Silverstone2012-06-291-1/+1
| | | | svn path=/trunk/hubbub/; revision=14006
* First cut at porting hubbub's buildsystem to the core toolsJohn Mark Bell2009-03-241-44/+2
| | | | svn path=/trunk/hubbub/; revision=6837
* Sync treebuilder with specJohn Mark Bell2009-03-101-1/+1
| | | | svn path=/trunk/hubbub/; revision=6764
* Implement the "in table" insertion mode, at least partially. (The adoption ↵Andrew Sidwell2008-07-031-1/+1
| | | | | | agency algorithm hasn't been tweaked to respect in_table_foster.) svn path=/trunk/hubbub/; revision=4500
* Implement the "after after frameset" insertion mode.Andrew Sidwell2008-06-301-1/+1
| | | | svn path=/trunk/hubbub/; revision=4480
* Implement "after frameset" mode.Andrew Sidwell2008-06-301-1/+1
| | | | svn path=/trunk/hubbub/; revision=4479
* Implement "in frameset" tree construction mode.Andrew Sidwell2008-06-301-1/+2
| | | | svn path=/trunk/hubbub/; revision=4478
* Add the "after after body" insertion mode.Andrew Sidwell2008-06-301-1/+1
| | | | svn path=/trunk/hubbub/; revision=4477
* Add the "after body" insertion mode.Andrew Sidwell2008-06-301-1/+1
| | | | svn path=/trunk/hubbub/; revision=4476
* Add "in foreign content" handling. Not convinced this is the best way.Andrew Sidwell2008-06-301-0/+1
| | | | svn path=/trunk/hubbub/; revision=4475
* Implement the "in select in table" insertion mode.Andrew Sidwell2008-06-251-1/+1
| | | | svn path=/trunk/hubbub/; revision=4447
* Implement the "in select" insertion mode, and add some more utility functions.Andrew Sidwell2008-06-251-1/+1
| | | | svn path=/trunk/hubbub/; revision=4446
* Implement the "in cell" insertion mode.Andrew Sidwell2008-06-251-0/+1
| | | | svn path=/trunk/hubbub/; revision=4444
* Implement the "in row" insertion mode.Andrew Sidwell2008-06-251-1/+1
| | | | svn path=/trunk/hubbub/; revision=4443
* Add the "in table body" insertion mode.Andrew Sidwell2008-06-251-1/+1
| | | | svn path=/trunk/hubbub/; revision=4442
* Implement "in column group" insertion mode.Andrew Sidwell2008-06-251-1/+1
| | | | svn path=/trunk/hubbub/; revision=4440
* Add "in caption" insertion mode.Andrew Sidwell2008-06-241-0/+1
| | | | svn path=/trunk/hubbub/; revision=4436
* Put each insertion mode into its own C file, so that treebuilder.c doesn't ↵Andrew Sidwell2008-06-231-1/+4
| | | | | | get extremely long. svn path=/trunk/hubbub/; revision=4429
* Whoops. Missed the makefile for src/treebuilderJohn Mark Bell2008-04-071-43/+36
| | | | svn path=/trunk/hubbub/; revision=4078
* Implement "in body" insertion mode.John Mark Bell2008-04-071-1/+1
| | | | | | | Modify treebuilder test driver to bring it in line with API changes. A few minimal bits of testdata for various bits of in body. Proper testing will come once we're actually building a tree. svn path=/trunk/hubbub/; revision=4076
* Beginnings of a tree builder.John Mark Bell2008-03-071-0/+53
Distinct lack of any real functionality beyond creation/destruction & option setting. svn path=/trunk/hubbub/; revision=3894