Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
Hercules
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
Hercules
Commits
7521db33
Commit
7521db33
authored
1 year ago
by
Russel Arbore
Browse files
Options
Downloads
Patches
Plain Diff
Introduce dynamic constant type
parent
371e5540
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hercules_ir/src/ir.rs
+23
-3
23 additions, 3 deletions
hercules_ir/src/ir.rs
hercules_ir/src/parse.rs
+42
-6
42 additions, 6 deletions
hercules_ir/src/parse.rs
with
65 additions
and
9 deletions
hercules_ir/src/ir.rs
+
23
−
3
View file @
7521db33
...
...
@@ -5,6 +5,7 @@ pub struct Module {
pub
functions
:
Vec
<
Function
>
,
pub
types
:
Vec
<
Type
>
,
pub
constants
:
Vec
<
Constant
>
,
pub
dynamic_constants
:
Vec
<
DynamicConstant
>
,
}
#[derive(Debug,
Clone)]
...
...
@@ -13,11 +14,12 @@ pub struct Function {
pub
param_types
:
Vec
<
TypeID
>
,
pub
return_type
:
TypeID
,
pub
nodes
:
Vec
<
Node
>
,
pub
num_dynamic_constants
:
u32
,
}
#[derive(Debug,
Clone,
PartialEq,
Eq,
Hash)]
pub
enum
Type
{
Control
(
ConstantID
),
Control
(
Dynamic
ConstantID
),
Integer8
,
Integer16
,
Integer32
,
...
...
@@ -46,6 +48,11 @@ pub enum Constant {
Float64
(
ordered_float
::
OrderedFloat
<
f64
>
),
}
#[derive(Debug,
Clone,
PartialEq,
Eq,
Hash)]
pub
enum
DynamicConstant
{
Constant
(
usize
),
}
#[derive(Debug,
Clone)]
pub
enum
Node
{
Start
,
...
...
@@ -58,11 +65,11 @@ pub enum Node {
},
Fork
{
control
:
NodeID
,
factor
:
ConstantID
,
factor
:
Dynamic
ConstantID
,
},
Join
{
control
:
NodeID
,
factor
:
ConstantID
,
factor
:
Dynamic
ConstantID
,
},
Phi
{
control
:
NodeID
,
...
...
@@ -156,3 +163,16 @@ impl TypeID {
self
.0
as
usize
}
}
#[derive(Debug,
Clone,
Copy,
PartialEq,
Eq,
Hash)]
pub
struct
DynamicConstantID
(
u32
);
impl
DynamicConstantID
{
pub
fn
new
(
x
:
usize
)
->
Self
{
DynamicConstantID
(
x
as
u32
)
}
pub
fn
idx
(
&
self
)
->
usize
{
self
.0
as
usize
}
}
This diff is collapsed.
Click to expand it.
hercules_ir/src/parse.rs
+
42
−
6
View file @
7521db33
...
...
@@ -14,6 +14,7 @@ struct Context<'a> {
node_ids
:
HashMap
<&
'a
str
,
NodeID
>
,
interned_types
:
HashMap
<
Type
,
TypeID
>
,
interned_constants
:
HashMap
<
Constant
,
ConstantID
>
,
interned_dynamic_constants
:
HashMap
<
DynamicConstant
,
DynamicConstantID
>
,
}
impl
<
'a
>
Context
<
'a
>
{
...
...
@@ -56,6 +57,16 @@ impl<'a> Context<'a> {
id
}
}
fn
get_dynamic_constant_id
(
&
mut
self
,
dynamic_constant
:
DynamicConstant
)
->
DynamicConstantID
{
if
let
Some
(
id
)
=
self
.interned_dynamic_constants
.get
(
&
dynamic_constant
)
{
*
id
}
else
{
let
id
=
DynamicConstantID
::
new
(
self
.interned_dynamic_constants
.len
());
self
.interned_dynamic_constants
.insert
(
dynamic_constant
,
id
);
id
}
}
}
fn
parse_module
<
'a
>
(
ir_text
:
&
'a
str
,
mut
context
:
Context
<
'a
>
)
->
nom
::
IResult
<&
'a
str
,
Module
>
{
...
...
@@ -68,7 +79,8 @@ fn parse_module<'a>(ir_text: &'a str, mut context: Context<'a>) -> nom::IResult<
name
:
String
::
from
(
""
),
param_types
:
vec!
[],
return_type
:
TypeID
::
new
(
0
),
nodes
:
vec!
[]
nodes
:
vec!
[],
num_dynamic_constants
:
0
};
context
.function_ids
.len
()
];
...
...
@@ -77,7 +89,7 @@ fn parse_module<'a>(ir_text: &'a str, mut context: Context<'a>) -> nom::IResult<
let
function_id
=
context
.function_ids
.remove
(
function_name
.as_str
())
.unwrap
();
fixed_functions
[
function_id
.idx
()]
=
function
;
}
let
mut
types
=
vec!
[
Type
::
Control
(
ConstantID
::
new
(
0
));
context
.interned_types
.len
()];
let
mut
types
=
vec!
[
Type
::
Control
(
Dynamic
ConstantID
::
new
(
0
));
context
.interned_types
.len
()];
for
(
ty
,
id
)
in
context
.interned_types
{
types
[
id
.idx
()]
=
ty
;
}
...
...
@@ -85,12 +97,18 @@ fn parse_module<'a>(ir_text: &'a str, mut context: Context<'a>) -> nom::IResult<
for
(
constant
,
id
)
in
context
.interned_constants
{
constants
[
id
.idx
()]
=
constant
;
}
let
mut
dynamic_constants
=
vec!
[
DynamicConstant
::
Constant
(
0
);
context
.interned_dynamic_constants
.len
()];
for
(
dynamic_constant
,
id
)
in
context
.interned_dynamic_constants
{
dynamic_constants
[
id
.idx
()]
=
dynamic_constant
;
}
Ok
((
rest
,
Module
{
functions
:
fixed_functions
,
types
,
constants
,
dynamic_constants
,
},
))
}
...
...
@@ -146,6 +164,7 @@ fn parse_function<'a>(
param_types
:
params
.into_iter
()
.map
(|
x
|
x
.5
)
.collect
(),
return_type
,
nodes
:
fixed_nodes
,
num_dynamic_constants
:
0
,
},
))
}
...
...
@@ -198,7 +217,7 @@ fn parse_constant_node<'a>(
let
ir_text
=
nom
::
character
::
complete
::
multispace0
(
ir_text
)
?
.0
;
let
ir_text
=
nom
::
character
::
complete
::
char
(
'('
)(
ir_text
)
?
.0
;
let
ir_text
=
nom
::
character
::
complete
::
multispace0
(
ir_text
)
?
.0
;
let
(
ir_text
,
ty
)
=
parse_type
(
ir_text
)
?
;
let
(
ir_text
,
ty
)
=
parse_type
(
ir_text
,
context
)
?
;
let
ir_text
=
nom
::
character
::
complete
::
multispace0
(
ir_text
)
?
.0
;
let
ir_text
=
nom
::
character
::
complete
::
char
(
','
)(
ir_text
)
?
.0
;
let
ir_text
=
nom
::
character
::
complete
::
multispace0
(
ir_text
)
?
.0
;
...
...
@@ -268,15 +287,25 @@ fn parse_call<'a>(ir_text: &'a str, context: &mut Context<'a>) -> nom::IResult<&
fn
parse_type_id
<
'a
>
(
ir_text
:
&
'a
str
,
context
:
&
mut
Context
<
'a
>
)
->
nom
::
IResult
<&
'a
str
,
TypeID
>
{
let
ir_text
=
nom
::
character
::
complete
::
multispace0
(
ir_text
)
?
.0
;
let
(
ir_text
,
ty
)
=
parse_type
(
ir_text
)
?
;
let
(
ir_text
,
ty
)
=
parse_type
(
ir_text
,
context
)
?
;
let
id
=
context
.get_type_id
(
ty
);
Ok
((
ir_text
,
id
))
}
fn
parse_type
<
'a
>
(
ir_text
:
&
'a
str
)
->
nom
::
IResult
<&
'a
str
,
Type
>
{
fn
parse_type
<
'a
>
(
ir_text
:
&
'a
str
,
context
:
&
mut
Context
<
'a
>
)
->
nom
::
IResult
<&
'a
str
,
Type
>
{
let
ir_text
=
nom
::
character
::
complete
::
multispace0
(
ir_text
)
?
.0
;
let
(
ir_text
,
ty
)
=
nom
::
branch
::
alt
((
//nom::sequence::tuple((nom::bytes::complete::tag(""))),
nom
::
combinator
::
map
(
nom
::
sequence
::
tuple
((
nom
::
bytes
::
complete
::
tag
(
"ctrl"
),
nom
::
character
::
complete
::
multispace0
,
nom
::
character
::
complete
::
char
(
'('
),
|
x
|
parse_dynamic_constant_id
(
x
,
context
),
nom
::
character
::
complete
::
multispace0
,
nom
::
character
::
complete
::
char
(
')'
),
)),
|(
_
,
_
,
_
,
id
,
_
,
_
)|
Type
::
Control
(
id
),
),
nom
::
combinator
::
map
(
nom
::
bytes
::
complete
::
tag
(
"i8"
),
|
_
|
Type
::
Integer8
),
nom
::
combinator
::
map
(
nom
::
bytes
::
complete
::
tag
(
"i16"
),
|
_
|
Type
::
Integer16
),
nom
::
combinator
::
map
(
nom
::
bytes
::
complete
::
tag
(
"i32"
),
|
_
|
Type
::
Integer32
),
...
...
@@ -297,6 +326,13 @@ fn parse_type<'a>(ir_text: &'a str) -> nom::IResult<&'a str, Type> {
Ok
((
ir_text
,
ty
))
}
fn
parse_dynamic_constant_id
<
'a
>
(
ir_text
:
&
'a
str
,
context
:
&
mut
Context
<
'a
>
,
)
->
nom
::
IResult
<&
'a
str
,
DynamicConstantID
>
{
todo!
()
}
fn
parse_constant_id
<
'a
>
(
ir_text
:
&
'a
str
,
ty
:
Type
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment