2015-08-16 13:56:09 +00:00
|
|
|
#![allow(plugin_as_library)]
|
|
|
|
#![feature(rustc_private)]
|
2015-08-14 15:14:54 +00:00
|
|
|
|
|
|
|
extern crate clippy;
|
2015-08-16 13:56:09 +00:00
|
|
|
extern crate rustc;
|
2016-03-16 11:38:26 +00:00
|
|
|
extern crate rustc_const_eval;
|
2016-03-31 15:05:43 +00:00
|
|
|
extern crate rustc_const_math;
|
|
|
|
extern crate rustc_front;
|
|
|
|
extern crate syntax;
|
2015-08-14 15:14:54 +00:00
|
|
|
|
2016-03-31 15:05:43 +00:00
|
|
|
use clippy::consts::{constant_simple, Constant, FloatWidth};
|
|
|
|
use rustc_const_math::ConstInt;
|
2015-09-03 14:42:17 +00:00
|
|
|
use rustc_front::hir::*;
|
2016-03-31 15:05:43 +00:00
|
|
|
use syntax::ast::{LitIntType, LitKind, StrStyle};
|
|
|
|
use syntax::codemap::{Spanned, COMMAND_LINE_SP};
|
2015-08-17 11:18:14 +00:00
|
|
|
use syntax::parse::token::InternedString;
|
2015-08-16 13:56:09 +00:00
|
|
|
use syntax::ptr::P;
|
2015-08-17 09:43:36 +00:00
|
|
|
|
2015-08-17 14:24:57 +00:00
|
|
|
fn spanned<T>(t: T) -> Spanned<T> {
|
|
|
|
Spanned{ node: t, span: COMMAND_LINE_SP }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expr(n: Expr_) -> Expr {
|
2015-08-17 09:43:36 +00:00
|
|
|
Expr{
|
|
|
|
id: 1,
|
2015-08-17 14:24:57 +00:00
|
|
|
node: n,
|
2015-08-17 09:43:36 +00:00
|
|
|
span: COMMAND_LINE_SP,
|
2015-12-05 12:25:04 +00:00
|
|
|
attrs: None
|
2015-08-17 09:43:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 17:35:44 +00:00
|
|
|
fn lit(l: LitKind) -> Expr {
|
2015-08-17 14:24:57 +00:00
|
|
|
expr(ExprLit(P(spanned(l))))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn binop(op: BinOp_, l: Expr, r: Expr) -> Expr {
|
|
|
|
expr(ExprBinary(spanned(op), P(l), P(r)))
|
|
|
|
}
|
|
|
|
|
2015-08-17 15:51:30 +00:00
|
|
|
fn check(expect: Constant, expr: &Expr) {
|
|
|
|
assert_eq!(Some(expect), constant_simple(expr))
|
2015-08-16 13:56:09 +00:00
|
|
|
}
|
2015-08-14 15:14:54 +00:00
|
|
|
|
2016-02-01 11:51:33 +00:00
|
|
|
const TRUE : Constant = Constant::Bool(true);
|
|
|
|
const FALSE : Constant = Constant::Bool(false);
|
2016-03-16 11:38:26 +00:00
|
|
|
const ZERO : Constant = Constant::Int(ConstInt::Infer(0));
|
|
|
|
const ONE : Constant = Constant::Int(ConstInt::Infer(1));
|
|
|
|
const TWO : Constant = Constant::Int(ConstInt::Infer(2));
|
2015-08-17 14:24:57 +00:00
|
|
|
|
2015-08-14 15:14:54 +00:00
|
|
|
#[test]
|
|
|
|
fn test_lit() {
|
2016-02-12 17:35:44 +00:00
|
|
|
check(TRUE, &lit(LitKind::Bool(true)));
|
|
|
|
check(FALSE, &lit(LitKind::Bool(false)));
|
|
|
|
check(ZERO, &lit(LitKind::Int(0, LitIntType::Unsuffixed)));
|
|
|
|
check(Constant::Str("cool!".into(), StrStyle::Cooked), &lit(LitKind::Str(
|
|
|
|
InternedString::new("cool!"), StrStyle::Cooked)));
|
2015-08-14 15:14:54 +00:00
|
|
|
}
|
2015-08-17 14:24:57 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_ops() {
|
2016-02-12 17:35:44 +00:00
|
|
|
check(TRUE, &binop(BiOr, lit(LitKind::Bool(false)), lit(LitKind::Bool(true))));
|
|
|
|
check(FALSE, &binop(BiAnd, lit(LitKind::Bool(false)), lit(LitKind::Bool(true))));
|
2015-08-17 14:24:57 +00:00
|
|
|
|
2016-02-12 17:35:44 +00:00
|
|
|
let litzero = lit(LitKind::Int(0, LitIntType::Unsuffixed));
|
|
|
|
let litone = lit(LitKind::Int(1, LitIntType::Unsuffixed));
|
2015-08-17 14:24:57 +00:00
|
|
|
check(TRUE, &binop(BiEq, litzero.clone(), litzero.clone()));
|
|
|
|
check(TRUE, &binop(BiGe, litzero.clone(), litzero.clone()));
|
|
|
|
check(TRUE, &binop(BiLe, litzero.clone(), litzero.clone()));
|
|
|
|
check(FALSE, &binop(BiNe, litzero.clone(), litzero.clone()));
|
|
|
|
check(FALSE, &binop(BiGt, litzero.clone(), litzero.clone()));
|
|
|
|
check(FALSE, &binop(BiLt, litzero.clone(), litzero.clone()));
|
2015-08-19 09:58:59 +00:00
|
|
|
|
|
|
|
check(ZERO, &binop(BiAdd, litzero.clone(), litzero.clone()));
|
|
|
|
check(TWO, &binop(BiAdd, litone.clone(), litone.clone()));
|
|
|
|
check(ONE, &binop(BiSub, litone.clone(), litzero.clone()));
|
|
|
|
check(ONE, &binop(BiMul, litone.clone(), litone.clone()));
|
|
|
|
check(ONE, &binop(BiDiv, litone.clone(), litone.clone()));
|
2016-02-12 14:51:55 +00:00
|
|
|
|
2016-02-15 16:00:06 +00:00
|
|
|
let half_any = Constant::Float("0.5".into(), FloatWidth::Any);
|
|
|
|
let half32 = Constant::Float("0.5".into(), FloatWidth::F32);
|
|
|
|
let half64 = Constant::Float("0.5".into(), FloatWidth::F64);
|
2016-02-12 14:51:55 +00:00
|
|
|
|
|
|
|
assert_eq!(half_any, half32);
|
|
|
|
assert_eq!(half_any, half64);
|
|
|
|
assert_eq!(half32, half64); // for transitivity
|
2016-03-16 15:28:31 +00:00
|
|
|
|
|
|
|
assert_eq!(Constant::Int(ConstInt::Infer(0)), Constant::Int(ConstInt::U8(0)));
|
|
|
|
assert_eq!(Constant::Int(ConstInt::Infer(0)), Constant::Int(ConstInt::I8(0)));
|
|
|
|
assert_eq!(Constant::Int(ConstInt::InferSigned(-1)), Constant::Int(ConstInt::I8(-1)));
|
2015-08-17 14:24:57 +00:00
|
|
|
}
|