Code Monkey home page Code Monkey logo

Comments (3)

palmer-dabbelt avatar palmer-dabbelt commented on July 20, 2024

Thanks for going through the documentation, it's great to make sure the LLVM and GCC stuff match before people start really using our stuff. Looks like we're 64-bit aligned for uint64_t on rv32g. @sorear, can you document it?

palmer gamma02 ~ $ cat doublealign.c 
#include <stdint.h>

struct aligntest {
	uint32_t a;
	uint64_t b;
	uint32_t c;
};

void func(void *);

extern struct aligntest aligntest;

int main() {
	func(&aligntest.a);
	func(&aligntest.b);
	func(&aligntest.c);
	return 0;
};
	
	
palmer gamma02 ~ $ riscv64-unknown-linux-gnu-gcc doublealign.c -march=rv32g -mabi=ilp32 -O3 -S -o -
	.file	"doublealign.c"
	.option nopic
	.section	.text.startup,"ax",@progbits
	.align	2
	.globl	main
	.type	main, @function
main:
	lui	a0,%hi(aligntest)
	add	sp,sp,-16
	add	a0,a0,%lo(aligntest)
	sw	ra,12(sp)
	call	func
	lui	a0,%hi(aligntest+8)
	add	a0,a0,%lo(aligntest+8)
	call	func
	lui	a0,%hi(aligntest+16)
	add	a0,a0,%lo(aligntest+16)
	call	func
	lw	ra,12(sp)
	li	a0,0
	add	sp,sp,16
	jr	ra
	.size	main, .-main
	.ident	"GCC: (GNU) 6.1.0"

from riscv-elf-psabi-doc.

asb avatar asb commented on July 20, 2024

Thanks Palmer, it was actually double fp I was referring to, though I would guess these are 64-bit aligned on RV32 as well (can't ssh into my machine with riscv-gcc to verify right now).

from riscv-elf-psabi-doc.

palmer-dabbelt avatar palmer-dabbelt commented on July 20, 2024

doubles would definitely want to be 64-bit aligned, since there's a fld instruction even on RV32D.

from riscv-elf-psabi-doc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.