Skip to content
Snippets Groups Projects
Commit 38be2e7c authored by rarbore2's avatar rarbore2
Browse files

Merge branch 'fix_floats_llvm' into 'main'

Fix float constants in LLVM

Closes #24

See merge request !170
parents fdb26f84 9c0408e3
No related branches found
No related tags found
1 merge request!170Fix float constants in LLVM
Pipeline #201609 passed
use std::collections::BTreeMap; use std::collections::BTreeMap;
use std::fmt::{Error, Write}; use std::fmt::{Error, Write};
use std::iter::zip; use std::iter::zip;
use std::mem::transmute;
use std::sync::atomic::{AtomicUsize, Ordering}; use std::sync::atomic::{AtomicUsize, Ordering};
use hercules_ir::*; use hercules_ir::*;
...@@ -264,18 +265,14 @@ impl<'a> CPUContext<'a> { ...@@ -264,18 +265,14 @@ impl<'a> CPUContext<'a> {
Constant::UnsignedInteger32(val) => write!(body, "i32 {} to i32\n", val)?, Constant::UnsignedInteger32(val) => write!(body, "i32 {} to i32\n", val)?,
Constant::UnsignedInteger64(val) => write!(body, "i64 {} to i64\n", val)?, Constant::UnsignedInteger64(val) => write!(body, "i64 {} to i64\n", val)?,
Constant::Float32(val) => { Constant::Float32(val) => {
if val.fract() == 0.0 { write!(body, "float 0x{:016x} to float\n", unsafe {
write!(body, "float {}.0 to float\n", val)? transmute::<f64, u64>(*val as f64)
} else { })?;
write!(body, "float {} to float\n", val)?
}
} }
Constant::Float64(val) => { Constant::Float64(val) => {
if val.fract() == 0.0 { write!(body, "float 0x{:016x} to float\n", unsafe {
write!(body, "double {}.0 to double\n", val)? transmute::<f64, u64>(*val)
} else { })?;
write!(body, "double {} to double\n", val)?
}
} }
_ => unreachable!(), _ => unreachable!(),
} }
......
#[entry] #[entry]
fn casts_and_intrinsics(input : f32) -> i32 { fn casts_and_intrinsics(input : f32) -> i32 {
let sqrt = sqrt!::<f32>(input); let sqrt = sqrt!::<f32>(input + 0.3);
return sqrt as i32; return sqrt as i32;
} }
...@@ -7,7 +7,7 @@ juno_build::juno!("casts_and_intrinsics"); ...@@ -7,7 +7,7 @@ juno_build::juno!("casts_and_intrinsics");
fn main() { fn main() {
async_std::task::block_on(async { async_std::task::block_on(async {
let mut r = runner!(casts_and_intrinsics); let mut r = runner!(casts_and_intrinsics);
let output = r.run(16.0).await; let output = r.run(15.7).await;
println!("{}", output); println!("{}", output);
assert_eq!(output, 4); assert_eq!(output, 4);
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment