@@ -36,8 +36,8 @@ pub struct FunctionCache<'a, T: FieldElement> {
36
36
/// The processor that generates the JIT code
37
37
processor : BlockMachineProcessor < ' a , T > ,
38
38
/// The cache of JIT functions and the returned range constraints.
39
- /// If the entry is None , we attempted to generate the function but failed.
40
- witgen_functions : HashMap < CacheKey < T > , Option < CacheEntry < T > > > ,
39
+ /// If the entry is Err , we attempted to generate the function but failed.
40
+ witgen_functions : HashMap < CacheKey < T > , Result < CacheEntry < T > , CompilationError > > ,
41
41
column_layout : ColumnLayout ,
42
42
block_size : usize ,
43
43
machine_name : String ,
@@ -49,6 +49,12 @@ pub struct CacheEntry<T: FieldElement> {
49
49
pub range_constraints : Vec < RangeConstraint < T > > ,
50
50
}
51
51
52
+ #[ derive( Debug ) ]
53
+ pub enum CompilationError {
54
+ UnsupportedField ,
55
+ Other ( String ) ,
56
+ }
57
+
52
58
impl < ' a , T : FieldElement > FunctionCache < ' a , T > {
53
59
pub fn new (
54
60
fixed_data : & ' a FixedData < ' a , T > ,
@@ -81,15 +87,15 @@ impl<'a, T: FieldElement> FunctionCache<'a, T> {
81
87
bus_id : T ,
82
88
known_args : & BitVec ,
83
89
known_concrete : Option < ( usize , T ) > ,
84
- ) -> & Option < CacheEntry < T > > {
90
+ ) -> & Result < CacheEntry < T > , CompilationError > {
85
91
// First try the generic version, then the specific.
86
92
let mut key = CacheKey {
87
93
bus_id,
88
94
known_args : known_args. clone ( ) ,
89
95
known_concrete : None ,
90
96
} ;
91
97
92
- if self . ensure_cache ( can_process. clone ( ) , & key) . is_none ( ) && known_concrete. is_some ( ) {
98
+ if self . ensure_cache ( can_process. clone ( ) , & key) . is_err ( ) && known_concrete. is_some ( ) {
93
99
key = CacheKey {
94
100
bus_id,
95
101
known_args : known_args. clone ( ) ,
@@ -104,15 +110,15 @@ impl<'a, T: FieldElement> FunctionCache<'a, T> {
104
110
& mut self ,
105
111
can_process : impl CanProcessCall < T > ,
106
112
cache_key : & CacheKey < T > ,
107
- ) -> & Option < CacheEntry < T > > {
113
+ ) -> & Result < CacheEntry < T > , CompilationError > {
108
114
if !self . witgen_functions . contains_key ( cache_key) {
109
115
record_start ( "Auto-witgen code derivation" ) ;
110
116
let f = match T :: known_field ( ) {
111
117
// Currently, we only support the Goldilocks fields
112
118
Some ( KnownField :: GoldilocksField ) => {
113
119
self . compile_witgen_function ( can_process, cache_key)
114
120
}
115
- _ => None ,
121
+ _ => Err ( CompilationError :: UnsupportedField ) ,
116
122
} ;
117
123
assert ! ( self . witgen_functions. insert( cache_key. clone( ) , f) . is_none( ) ) ;
118
124
record_end ( "Auto-witgen code derivation" ) ;
@@ -124,7 +130,7 @@ impl<'a, T: FieldElement> FunctionCache<'a, T> {
124
130
& self ,
125
131
can_process : impl CanProcessCall < T > ,
126
132
cache_key : & CacheKey < T > ,
127
- ) -> Option < CacheEntry < T > > {
133
+ ) -> Result < CacheEntry < T > , CompilationError > {
128
134
log:: debug!(
129
135
"Compiling JIT function for\n Machine: {}\n Connection: {}\n Inputs: {:?}{}" ,
130
136
self . machine_name,
@@ -154,10 +160,10 @@ impl<'a, T: FieldElement> FunctionCache<'a, T> {
154
160
// These errors can be pretty verbose and are quite common currently.
155
161
log:: debug!(
156
162
"=> Error generating JIT code: {}\n ..." ,
157
- e. to_string ( ) . lines( ) . take( 5 ) . join( "\n " )
163
+ e. lines( ) . take( 5 ) . join( "\n " )
158
164
) ;
159
- } )
160
- . ok ( ) ?;
165
+ CompilationError :: Other ( e )
166
+ } ) ?;
161
167
162
168
log:: debug!( "=> Success!" ) ;
163
169
let out_of_bounds_vars = code
@@ -198,7 +204,7 @@ impl<'a, T: FieldElement> FunctionCache<'a, T> {
198
204
. unwrap ( ) ;
199
205
log:: trace!( "Compilation done." ) ;
200
206
201
- Some ( CacheEntry {
207
+ Ok ( CacheEntry {
202
208
function,
203
209
range_constraints,
204
210
} )
0 commit comments