block.rs (16761B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | #[cfg(feature="debug")]
use std::fmt;
use std::collections::{HashMap, VecDeque};
use crate::issue;
use crate::syntax;
use syntax::ast;
use syntax::ast::{Nodes, StaticTypes};
use super::element;
use super::instructions;
use element::{Element, Symbol};
use instructions::{Instr, Operators};
use num_traits::cast::FromPrimitive;
use super::internal_functions;
fn append_unique<T : Clone + PartialEq>(v : &mut Vec<T>, e : T) -> usize {
let index = v.iter().position(|c| c == &e);
if index.is_none() { v.push(e); }
index.unwrap_or(v.len() - 1)
}
pub fn numerics_to_element<'a>(num : &ast::Numerics) -> Element<'a> {
match num {
ast::Numerics::Natural(n) => Element::ENatural(*n),
ast::Numerics::Integer(n) => Element::EInteger(*n),
ast::Numerics::Real(n) => Element::EReal(*n)
}
}
#[derive(Clone)]
struct IdentTypePair<'a>(String, &'a Nodes);
#[derive(Clone)]
pub struct LocalBlock<'a> {
pub name : String,
pub filename : String,
pub constants : Vec<Element<'a>>,
pub instructions : Vec<Instr>,
pub globals : Vec<String>,
pub operand_type : ast::StaticTypes,
pub return_type : ast::StaticTypes,
// Used only for compilation:
pub locals_map : HashMap<String, u16>,
types_to_check : VecDeque<IdentTypePair<'a>>,
current_line : usize,
current_depth : usize,
pub stack_depth : usize,
last_instruction : Instr,
last_const_push_index : u16,
last_depth_delta : isize,
}
impl<'a> PartialEq for LocalBlock<'a> {
fn eq(&self, other : &Self) -> bool {
self.constants == other.constants
&& self.instructions == other.instructions
}
}
impl<'a> LocalBlock<'a> {
pub fn new(n : &str, f : &str) -> Self {
LocalBlock {
name: n.to_string(),
filename: f.to_string(),
constants: vec![],
instructions: vec![],
globals: vec![],
operand_type: ast::StaticTypes::TUnknown,
return_type: ast::StaticTypes::TUnknown,
locals_map: HashMap::new(),
types_to_check: VecDeque::new(),
current_line: 0,
stack_depth: 0,
current_depth: 0,
last_instruction: Instr::Operator(0),
last_const_push_index: 0xffff,
last_depth_delta: 0,
}
}
fn push_const_instr(&mut self, e : Element<'a>) {
let index = append_unique(&mut self.constants, e) as u16;
// Don't push constant if:
// (already on stack) and (stack depth has stayed the same)
if !(index == self.last_const_push_index
&& self.last_depth_delta == 0) {
self.push_operator(Operators::PUSH_CONST);
self.push_operand(index);
self.last_const_push_index = index;
}
}
fn change_stack_depth(&mut self, i : isize) {
assert!((self.current_depth as isize) + i >= 0);
self.last_depth_delta = i;
self.current_depth = (
(self.current_depth as isize) + i
) as usize;
if self.current_depth > self.stack_depth {
self.stack_depth = self.current_depth;
}
}
/// Pushes an operator onto the _instruction stack_.
fn push_operator(&mut self, o : Operators) {
let instr = Instr::Operator(o as u8);
if !o.takes_operand() {
self.change_stack_depth(instr.depth_delta(None));
}
self.last_instruction = instr;
self.instructions.push(instr);
}
/// Pushes an operand onto the _instruction stack_.
fn push_operand(&mut self, i : u16) {
let operand = Instr::Operand(i);
self.instructions.push(operand);
self.change_stack_depth(
self.last_instruction.depth_delta(
Some(operand)));
}
fn insert_local(&mut self, s : String) -> u16 {
let index = self.locals_map.len() as u16;
self.locals_map.insert(s, index);
index
}
fn ident_assignment(&mut self, left : &'a ast::IdentNode, right : &'a Nodes) {
if self.types_to_check.is_empty() {
fatal!(TypeError, left.site.with_filename(&self.filename),
"You must state what set `{}' is a member of.
No type-annotation found.", left.value)
.print();
}
if self.locals_map.contains_key(&left.value) {
fatal!(CompError, left.site.with_filename(&self.filename),
"Cannot mutate value of `{}',
as it is already bound.", left.value)
.print();
}
let index = self.insert_local(left.value.to_owned());
self.emit(right);
if left.static_type == ast::StaticTypes::TUnknown
|| left.static_type != right.yield_type() {
self.push_operator(Operators::DUP);
let type_node = self.types_to_check.pop_front().unwrap().1;
self.emit(type_node);
self.push_operator(Operators::CHECK_TYPE);
} else { // Otherwise just pop, type was already checked statically so
// its of no use to include in the compiled program,
// as no dynamic checking is needed.
self.types_to_check.pop_front();
}
self.push_operator(Operators::STORE_LOCAL);
self.push_operand(index);
}
fn function_assign(&mut self, left : &ast::CallNode, right : &'a Nodes) {
let mut arguments = left.collect();
let base_node = arguments.remove(0);
if let Nodes::Ident(ident) = base_node {
let name = format!("__{}_final", ident.value.to_owned());
let mut last_block = LocalBlock::new(&name, &self.filename);
// TODO: Be more careful here, not always an ident.
// NEED TO DEAL WITH PATTERN MATCHING.
last_block.insert_local(arguments.last().unwrap().ident().unwrap().value.to_owned());
last_block.emit(right);
last_block.yield_last();
for i in (0..(arguments.len() - 1)).rev() {
let name = format!("__{}_{}", ident.value, i);
let mut super_block = LocalBlock::new(
&name,
&self.filename);
// Also TODO: Pattern matching, be careful in the future.
super_block.insert_local(arguments[i].ident().unwrap().value.to_owned());
let block_name = last_block.name.clone();
super_block.push_const_instr(Element::ECode(Box::new(last_block)));
super_block.push_const_instr(Element::ESymbol(Symbol::new(&block_name)));
super_block.push_operator(Operators::MAKE_FUNC);
super_block.yield_last();
last_block = super_block;
}
let index = self.insert_local(ident.value.to_owned());
self.push_const_instr(Element::ECode(Box::new(last_block)));
self.push_const_instr(Element::ESymbol(Symbol::new(&ident.value)));
self.push_operator(Operators::MAKE_FUNC);
self.push_operator(Operators::STORE_LOCAL);
self.push_operand(index);
return;
}
// A function of multiple arguments (say 3 f.eks),
// must generate a function, which when called returns
// a function, and when that function is called, it returns
// the final value.
}
fn annotation(&mut self, left : &ast::IdentNode, right : &'a Nodes) {
self.types_to_check.push_back(IdentTypePair(left.value.to_owned(), right));
}
fn emit(&mut self, node : &'a Nodes) {
let current_line = node.site().location.line.unwrap();
if self.current_line != current_line {
let len = self.instructions.len();
if len > 1
&& self.instructions[len - 2]
== Instr::Operator(Operators::SET_LINE as u8) {
self.instructions.pop();
self.instructions.pop();
}
self.current_line = current_line;
self.push_operator(Operators::SET_LINE);
self.push_operand(self.current_line as u16);
}
match node {
Nodes::Ident(ident_node) => {
let s = &ident_node.value;
if !self.locals_map.contains_key(s) {
self.push_operator(Operators::PUSH_SUPER);
let index = append_unique(&mut self.globals, s.to_owned()) as u16;
self.push_operand(index);
return;
}
self.push_operator(Operators::PUSH_LOCAL);
self.push_operand(self.locals_map[s]);
},
Nodes::Nil(_) => {
self.push_const_instr(Element::ENil);
},
Nodes::Num(num_node) => {
self.push_const_instr(numerics_to_element(&num_node.value));
},
Nodes::Str(str_node) => {
self.push_const_instr(Element::EString(&str_node.value));
},
Nodes::Sym(sym_node) => {
self.push_const_instr(Element::ESymbol(Symbol::new(&sym_node.value)));
},
Nodes::Call(call_node) => {
if let Nodes::Ident(ident_node) = &*call_node.callee {
let mut do_return = true;
match ident_node.value.as_str() {
"__raw_print" => {
let arg = &call_node.operands[0];
let print_type : u16 = match arg.yield_type() {
StaticTypes::TNatural => 0x01,
StaticTypes::TInteger => 0x02,
StaticTypes::TReal => 0x03,
StaticTypes::TString => 0x04,
_ => fatal!(CompError, arg.site().with_filename(&self.filename),
"__raw_print cannot display `{}' types.",
arg.yield_type())
.crash_and_burn()
};
self.emit(arg);
self.push_operator(Operators::RAW_PRINT);
self.push_operand(print_type);
}
_ => do_return = false
};
if do_return { return; }
}
if call_node.is_binary() {
let ident = call_node.callee.call().unwrap().callee.ident().unwrap();
let args = vec![
&call_node.callee.call().unwrap().operands[0], // left
&call_node.operands[0], // right
];
// Check for cast.
if ident.value == "cast" {
self.emit(args[0]);
self.push_operator(Operators::CAST);
if let Some(cast_name) = args[1].get_name() {
let cast_to : u16 = match cast_name {
"Real" => 0b0000_0011,
"Int" => 0b0000_0010,
"Nat" => 0b0000_0001,
_ => fatal!(TypeError,
args[1].site().with_filename(&self.filename),
"Compiler does not know how to cast to `{}'.",
cast_name)
.crash_and_burn()
};
let cast_from = match args[0].yield_type() {
ast::StaticTypes::TReal => 0b0000_0011,
ast::StaticTypes::TInteger => 0b0000_0010,
ast::StaticTypes::TNatural => 0b0000_0001,
_ => fatal!(TypeError,
args[0].site().with_filename(&self.filename),
"Compiler does not know how to cast from `{}'.",
args[0].yield_type())
.crash_and_burn()
};
self.push_operand(cast_from << 8 | cast_to);
} else {
issue!(CompError,
args[1].site().with_filename(&self.filename),
"Cast-type provided to `cast' has to be a type-name.")
.print();
}
return;
}
// Check for assignment.
if ident.value == "=" {
// Direct variable assignment:
if let Nodes::Ident(left) = args[0] {
self.ident_assignment(left, args[1]);
} else if let Nodes::Call(left) = args[0] {
self.function_assign(left, args[1]);
}
return;
}
// Check for type annotation.
if ident.value == ":" {
// If the LHS is not an ident, it is not a
// valid annotation.
if args[0].ident().is_none() {
issue!(CompError,
args[0].site().with_filename(&self.filename),
"Left of `:` type annotator must be an identifier.")
.print();
}
let left = args[0].ident().unwrap();
// Annotation of variable or function.
self.annotation(left, args[1]);
return;
}
// Check for fast internal binary operations such as +, -, *, /, etc.
let maybe_op = internal_functions::get_internal_op(&ident.value, Some(&args));
if let Some(op) = maybe_op {
if let Instr::Operator(operator) = op {
self.emit(args[1]);
self.emit(args[0]);
self.push_operator(Operators::from_u8(operator).unwrap());
return;
}}
}
// TODO: Optimise to implicitly ignore currying and use CALL_N instead.
// Also, check that we are indeed calling a function, and not anything else
// by checking the static yield type.
self.emit(&call_node.operands[0]);
self.emit(&*call_node.callee);
self.push_operator(Operators::CALL_1);
},
_ => ()
};
}
fn yield_last(&mut self) {
if self.current_depth == 0usize {
self.push_const_instr(Element::ENil);
}
self.push_operator(Operators::YIELD);
}
pub fn generate(&mut self, nodes : &'a [Nodes]) {
for node in nodes {
self.emit(node);
}
self.yield_last();
}
}
#[cfg(feature="debug")]
impl<'a> fmt::Display for LocalBlock<'a> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
for c in &self.constants {
if let Element::ECode(local_block_box) = c {
write!(f, "{}", *local_block_box)?;
}
}
write!(f, "\n{}:", self.name)?;
writeln!(f,"
|[meta]:
| stack-depth: {}
| file-name: {}",
self.stack_depth,
self.filename)?;
writeln!(f, " |====Constants===============")?;
for (i, c) in self.constants.iter().enumerate() {
writeln!(f, " | {: >3} | {}", i, c)?;
}
writeln!(f, " |====Locals==================")?;
for key in self.locals_map.keys() {
writeln!(f, " | {: >3} | {}", self.locals_map[key], key)?;
}
writeln!(f, " |====Superiors===============")?;
for (i, c) in self.globals.iter().enumerate() {
writeln!(f, " | {: >3} | {}", i, c)?;
}
writeln!(f, " |====Bytecode================")?;
for inst in &self.instructions {
if let Instr::Operand(_) = inst {
write!(f, "{}", inst)?;
} else {
write!(f, " | {}", inst)?;
}
}
write!(f, "")
}
}
|