idlc 0.1.2 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/idlc/ast.rb +340 -95
- data/lib/idlc/cli.rb +11 -2
- data/lib/idlc/idl.treetop +39 -62
- data/lib/idlc/idl_parser.rb +1810 -2452
- data/lib/idlc/interfaces.rb +5 -1
- data/lib/idlc/passes/find_src_registers.rb +58 -18
- data/lib/idlc/passes/prune.rb +50 -17
- data/lib/idlc/passes/reachable_exceptions.rb +6 -6
- data/lib/idlc/passes/reachable_functions.rb +2 -2
- data/lib/idlc/symbol_table.rb +50 -9
- data/lib/idlc/syntax_node.rb +2 -8
- data/lib/idlc/type.rb +17 -12
- data/lib/idlc/version.rb +1 -1
- data/lib/idlc.rb +53 -29
- metadata +3 -6
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: idlc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Derek Hower
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
10
|
+
date: 2026-08-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: activesupport
|
|
@@ -372,7 +371,6 @@ metadata:
|
|
|
372
371
|
homepage_uri: https://github.com/riscv/riscv-unified-db
|
|
373
372
|
mailing_list_uri: https://lists.riscv.org/g/tech-unifieddb
|
|
374
373
|
bug_tracker_uri: https://github.com/riscv/riscv-unified-db/issues
|
|
375
|
-
post_install_message:
|
|
376
374
|
rdoc_options: []
|
|
377
375
|
require_paths:
|
|
378
376
|
- lib
|
|
@@ -387,8 +385,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
387
385
|
- !ruby/object:Gem::Version
|
|
388
386
|
version: '0'
|
|
389
387
|
requirements: []
|
|
390
|
-
rubygems_version: 3.
|
|
391
|
-
signing_key:
|
|
388
|
+
rubygems_version: 3.6.9
|
|
392
389
|
specification_version: 4
|
|
393
390
|
summary: ISA Description Language Compiler
|
|
394
391
|
test_files: []
|