Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
WordPress
/
sqlite-database-integration
Public
Notifications
You must be signed in to change notification settings
Fork
68
Star
363
Code
Issues
47
Pull requests
5
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Parser + lexer performance: consolidated 2–3× end-to-end speedup
- #378
#378
Closed
JanJakes
wants to merge 30 commits into
trunk
WordPress/sqlite-database-integration:trunk
from
performance
WordPress/sqlite-database-integration:performance
Copy head branch name to clipboard
Conversation
Commits
30
(30)
Checks
Files changed
Closed
Parser + lexer performance: consolidated 2–3× end-to-end speedup
#378
JanJakes
wants to merge 30 commits into
trunk
WordPress/sqlite-database-integration:trunk
from
performance
WordPress/sqlite-database-integration:performance
Copy head branch name to clipboard
Commits
Commits on Jun 5, 2026
Inline terminal matching and defer parse node allocation
Show description for 5a3f211
JanJakes
committed
5a3f211
View commit details
Copy full SHA for 5a3f211
Browse repository at this point
Use per-branch FIRST sets to skip unreachable branches
Show description for cdc9713
JanJakes
committed
cdc9713
View commit details
Copy full SHA for cdc9713
Browse repository at this point
Short-circuit nullable-fallback and inline single-branch fragments
Show description for 332c10a
JanJakes
committed
332c10a
View commit details
Copy full SHA for 332c10a
Browse repository at this point
Strip epsilon markers and cache grammar refs on the parser
Show description for 402554c
JanJakes
committed
402554c
View commit details
Copy full SHA for 402554c
Browse repository at this point
Return fragment results as children arrays, skip the intermediate node
Show description for c43425f
JanJakes
committed
c43425f
View commit details
Copy full SHA for c43425f
Browse repository at this point
Append end-of-input sentinel token to drop range checks
Show description for e35e14f
JanJakes
committed
e35e14f
View commit details
Copy full SHA for e35e14f
Browse repository at this point
Embed branch symbol sequences directly in the per-token selector
Show description for a3b8a08
JanJakes
committed
a3b8a08
View commit details
Copy full SHA for a3b8a08
Browse repository at this point
Compare selectStatement by rule id instead of by name
Show description for 25dad62
JanJakes
committed
25dad62
View commit details
Copy full SHA for 25dad62
Browse repository at this point
Re-align grammar and parser whitespace after recent changes
Show description for e4a0951
JanJakes
committed
e4a0951
View commit details
Copy full SHA for e4a0951
Browse repository at this point
Deduplicate selector entries while embedding branch sequences
Show description for 0e23320
JanJakes
committed
0e23320
View commit details
Copy full SHA for 0e23320
Browse repository at this point
Add direct-return fast path for single-candidate rules
Show description for 3164da9
JanJakes
committed
3164da9
View commit details
Copy full SHA for 3164da9
Browse repository at this point
Speed up the lexer with cheaper byte checks
Show description for 45c344a
JanJakes
committed
45c344a
View commit details
Copy full SHA for 45c344a
Browse repository at this point
Skip parent constructor in WP_MySQL_Token
Show description for a763087
JanJakes
committed
a763087
View commit details
Copy full SHA for a763087
Browse repository at this point
Use ! empty() in WP_Parser_Node::has_child()
Show description for 60981f6
JanJakes
committed
60981f6
View commit details
Copy full SHA for 60981f6
Browse repository at this point
Inline leading-whitespace skip in lexer's token loops
Show description for 1aa326a
JanJakes
committed
1aa326a
View commit details
Copy full SHA for 1aa326a
Browse repository at this point
Catch identifier and keyword tokens at the top of the chain
Show description for 7256e62
JanJakes
committed
7256e62
View commit details
Copy full SHA for 7256e62
Browse repository at this point
Add a single-byte operator dispatch table
Show description for ee75d4b
JanJakes
committed
ee75d4b
View commit details
Copy full SHA for ee75d4b
Browse repository at this point
Document non-obvious lexer dispatch conditions
Show description for e36e2d2
JanJakes
committed
e36e2d2
View commit details
Copy full SHA for e36e2d2
Browse repository at this point
Unroll whitespace check in '--' line-comment dispatch
Show description for 3867de9
JanJakes
committed
3867de9
View commit details
Copy full SHA for 3867de9
Browse repository at this point
Extract WP_Parser::set_tokens() helper for shared sentinel handling
Show description for 0e91429
JanJakes
committed
0e91429
View commit details
Copy full SHA for 0e91429
Browse repository at this point
Update native parser to consume branches_for_token + nullable_branches
Show description for 58d84c6
JanJakes
committed
58d84c6
View commit details
Copy full SHA for 58d84c6
Browse repository at this point
Materialize native AST eagerly into plain WP_Parser_Node instances
Show description for b330676
JanJakes
committed
b330676
View commit details
Copy full SHA for b330676
Browse repository at this point
Mark WP_Parser_Node as final
Show description for ec5a74e
JanJakes
committed
ec5a74e
View commit details
Copy full SHA for ec5a74e
Browse repository at this point
Document parent-ctor bypass and remaining_tokens duplication
Show description for 2e20dc5
JanJakes
committed
2e20dc5
View commit details
Copy full SHA for 2e20dc5
Browse repository at this point
Add unit tests for grammar build-time transforms
Show description for 849c596
JanJakes
committed
849c596
View commit details
Copy full SHA for 849c596
Browse repository at this point
Refresh native-extension benchmark numbers
Show description for 00a502a
JanJakes
committed
00a502a
View commit details
Copy full SHA for 00a502a
Browse repository at this point
Fall back to pure PHP when the native extension grammar ABI mismatches
Show description for 096a44e
JanJakes
committed
096a44e
View commit details
Copy full SHA for 096a44e
Browse repository at this point
Speed up grammar construction with a worklist fixpoint and lazy selectors
Show description for 0679908
JanJakes
committed
0679908
View commit details
Copy full SHA for 0679908
Browse repository at this point
Unify unit-test CI into one matrix and disable Xdebug
Show description for 7368e34
JanJakes
committed
7368e34
View commit details
Copy full SHA for 7368e34
Browse repository at this point
Cache the Rust extension build in CI
Show description for d3716d3
JanJakes
committed
d3716d3
View commit details
Copy full SHA for d3716d3
Browse repository at this point
You can’t perform that action at this time.