forked from M-Labs/nac3
1
0
Fork 0

Model::{sizeof -> size_of}

This commit is contained in:
lyken 2024-08-27 17:04:02 +08:00
parent dbcfc9538a
commit 7c7e1b3ab8
No known key found for this signature in database
GPG Key ID: 3BD5FC6AC8325DD8
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ pub trait Model<'ctx>: fmt::Debug + Clone + Copy {
fn get_type<G: CodeGenerator + ?Sized>(&self, generator: &G, ctx: &'ctx Context) -> Self::Type;
/// Get the number of bytes of the [`BasicType`] of this model.
fn sizeof<G: CodeGenerator + ?Sized>(
fn size_of<G: CodeGenerator + ?Sized>(
&self,
generator: &mut G,
ctx: &'ctx Context,

View File

@ -199,7 +199,7 @@ impl<'ctx, Item: Model<'ctx>> Instance<'ctx, Ptr<Item>> {
num_items: IntValue<'ctx>,
) {
// Force extend `num_items` and `itemsize` to `i64` so their types would match.
let itemsize = self.model.sizeof(generator, ctx.ctx);
let itemsize = self.model.size_of(generator, ctx.ctx);
let itemsize = Int(Int64).z_extend_or_truncate(generator, ctx, itemsize);
let num_items = Int(Int64).z_extend_or_truncate(generator, ctx, num_items);
let totalsize = itemsize.mul(ctx, num_items);