mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-06-14 19:11:04 +00:00
bd4e108bb0
- Factor the YUL crate out of `revive-solidity`. - `revive-solidity` is in reality not a Solidity implementation but the revive solidity compiler driver (`resolc`). By renaming we not only get this straight but also a binary with the same name as the crate which should be less confusing. --------- Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
147 lines
4.6 KiB
Rust
147 lines
4.6 KiB
Rust
//! The expression statement.
|
|
|
|
pub mod function_call;
|
|
pub mod literal;
|
|
|
|
use std::collections::HashSet;
|
|
|
|
use serde::Deserialize;
|
|
use serde::Serialize;
|
|
|
|
use crate::error::Error;
|
|
use crate::lexer::token::lexeme::symbol::Symbol;
|
|
use crate::lexer::token::lexeme::Lexeme;
|
|
use crate::lexer::token::location::Location;
|
|
use crate::lexer::token::Token;
|
|
use crate::lexer::Lexer;
|
|
use crate::parser::error::Error as ParserError;
|
|
use crate::parser::identifier::Identifier;
|
|
|
|
use self::function_call::FunctionCall;
|
|
use self::literal::Literal;
|
|
|
|
/// The Yul expression statement.
|
|
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq, Eq)]
|
|
pub enum Expression {
|
|
/// The function call subexpression.
|
|
FunctionCall(FunctionCall),
|
|
/// The identifier operand.
|
|
Identifier(Identifier),
|
|
/// The literal operand.
|
|
Literal(Literal),
|
|
}
|
|
|
|
impl Expression {
|
|
/// The element parser.
|
|
pub fn parse(lexer: &mut Lexer, initial: Option<Token>) -> Result<Self, Error> {
|
|
let token = crate::parser::take_or_next(initial, lexer)?;
|
|
|
|
let (location, identifier) = match token {
|
|
Token {
|
|
lexeme: Lexeme::Literal(_),
|
|
..
|
|
} => return Ok(Self::Literal(Literal::parse(lexer, Some(token))?)),
|
|
Token {
|
|
location,
|
|
lexeme: Lexeme::Identifier(identifier),
|
|
..
|
|
} => (location, identifier),
|
|
token => {
|
|
return Err(ParserError::InvalidToken {
|
|
location: token.location,
|
|
expected: vec!["{literal}", "{identifier}"],
|
|
found: token.lexeme.to_string(),
|
|
}
|
|
.into());
|
|
}
|
|
};
|
|
let length = identifier
|
|
.inner
|
|
.len()
|
|
.try_into()
|
|
.map_err(|_| Error::Parser(ParserError::InvalidLength))?;
|
|
|
|
match lexer.peek()? {
|
|
Token {
|
|
lexeme: Lexeme::Symbol(Symbol::ParenthesisLeft),
|
|
..
|
|
} => {
|
|
lexer.next()?;
|
|
Ok(Self::FunctionCall(FunctionCall::parse(
|
|
lexer,
|
|
Some(Token::new(location, Lexeme::Identifier(identifier), length)),
|
|
)?))
|
|
}
|
|
_ => Ok(Self::Identifier(Identifier::new(
|
|
location,
|
|
identifier.inner,
|
|
))),
|
|
}
|
|
}
|
|
|
|
/// Get the list of missing deployable libraries.
|
|
pub fn get_missing_libraries(&self) -> HashSet<String> {
|
|
match self {
|
|
Self::FunctionCall(inner) => inner.get_missing_libraries(),
|
|
Self::Identifier(_) => HashSet::new(),
|
|
Self::Literal(_) => HashSet::new(),
|
|
}
|
|
}
|
|
|
|
/// Returns the statement location.
|
|
pub fn location(&self) -> Location {
|
|
match self {
|
|
Self::FunctionCall(inner) => inner.location,
|
|
Self::Identifier(inner) => inner.location,
|
|
Self::Literal(inner) => inner.location,
|
|
}
|
|
}
|
|
|
|
/// Converts the expression into an LLVM value.
|
|
pub fn into_llvm<'ctx, D>(
|
|
self,
|
|
context: &mut revive_llvm_context::PolkaVMContext<'ctx, D>,
|
|
) -> anyhow::Result<Option<revive_llvm_context::PolkaVMArgument<'ctx>>>
|
|
where
|
|
D: revive_llvm_context::PolkaVMDependency + Clone,
|
|
{
|
|
match self {
|
|
Self::Literal(literal) => literal
|
|
.clone()
|
|
.into_llvm(context)
|
|
.map_err(|error| {
|
|
anyhow::anyhow!(
|
|
"{} Invalid literal `{}`: {}",
|
|
literal.location,
|
|
literal.inner.to_string(),
|
|
error
|
|
)
|
|
})
|
|
.map(Some),
|
|
Self::Identifier(identifier) => {
|
|
let id = identifier.inner;
|
|
|
|
let pointer = context
|
|
.current_function()
|
|
.borrow()
|
|
.get_stack_pointer(&id)
|
|
.ok_or_else(|| {
|
|
anyhow::anyhow!("{} Undeclared variable `{}`", identifier.location, id)
|
|
})?;
|
|
|
|
let constant = context.current_function().borrow().yul().get_constant(&id);
|
|
|
|
let argument = revive_llvm_context::PolkaVMArgument::pointer(pointer, id);
|
|
|
|
Ok(Some(match constant {
|
|
Some(constant) => argument.with_constant(constant),
|
|
_ => argument,
|
|
}))
|
|
}
|
|
Self::FunctionCall(call) => Ok(call
|
|
.into_llvm(context)?
|
|
.map(revive_llvm_context::PolkaVMArgument::value)),
|
|
}
|
|
}
|
|
}
|