Code Monkey home page Code Monkey logo

Comments (8)

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

I'm not convinced we're doing something sane here -- it looks like we're 32-bit aligned unless the base type is 8 bits or the bit field width is larger than 32. I think we should at least be consistent about whether we align to bit field length or to the base type length.

@aswaterman @sorear Thoughts?

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

struct bf {
	uint32_t a: 1;
	uint32_t b;
	uint32_t c: 3;
	uint32_t d;
	uint64_t e: 1;
	uint32_t f;
	uint64_t g: 32;
	uint32_t h;
	uint64_t i: 64;
	uint32_t j;
	uint8_t k: 1;
	uint8_t l;
};

void func(uint64_t);
extern struct bf bf;

uint32_t main() {
	func(bf.a);
	func(bf.b);
	func(bf.c);
	func(bf.d);
	func(bf.e);
	func(bf.f);
	func(bf.g);
	func(bf.h);
	func(bf.i);
	func(bf.j);
	func(bf.k);
	func(bf.l);
}
palmer gamma02 ~ $ riscv64-unknown-linux-gnu-gcc test.c -O3 -S -o -
	.file	"test.c"
	.option nopic
	.section	.text.startup,"ax",@progbits
	.align	2
	.globl	main
	.type	main, @function
main:
	add	sp,sp,-16
	sd	s0,0(sp)
	lui	s0,%hi(bf)
	lbu	a0,%lo(bf)(s0)
	sd	ra,8(sp)
	add	s0,s0,%lo(bf)
	and	a0,a0,1
	call	func
	lwu	a0,4(s0)
	call	func
	lbu	a0,8(s0)
	and	a0,a0,7
	call	func
	lwu	a0,12(s0)
	call	func
	lbu	a0,16(s0)
	and	a0,a0,1
	call	func
	lwu	a0,20(s0)
	call	func
	lwu	a0,24(s0)
	call	func
	lwu	a0,28(s0)
	call	func
	ld	a0,32(s0)
	call	func
	lwu	a0,40(s0)
	call	func
	lbu	a0,44(s0)
	and	a0,a0,1
	call	func
	lbu	a0,45(s0)
	call	func
	ld	ra,8(sp)
	ld	s0,0(sp)
	add	sp,sp,16
	jr	ra
	.size	main, .-main
	.ident	"GCC: (GNU) 6.1.0"

from riscv-elf-psabi-doc.

aswaterman avatar aswaterman commented on July 20, 2024

It looks like rv64 matches aarch64 and x86-64 in this example, which is sane enough for me. I propose keeping as-is and documenting the behavior.

from riscv-elf-psabi-doc.

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

If it matches then we should keep it -- plus, that makes it easier to document. @sorear assuming you're OK with this, can you write it up?

from riscv-elf-psabi-doc.

asb avatar asb commented on July 20, 2024

Does anyone have time to document what GCC actually does for bit fields?

from riscv-elf-psabi-doc.

aswaterman avatar aswaterman commented on July 20, 2024

I'll take a stab at it

from riscv-elf-psabi-doc.

aswaterman avatar aswaterman commented on July 20, 2024

Not sure if this is everything, but it is a start:

Bitfields are packed in little-endian fashion. A bitfield that would span the alignment boundary of its integer type is padded to begin at the next alignment boundary. For example, struct { int x : 10; int y : 12; } is a 32-bit type with x in bits 9-0, y in bits 21-10, and bits 31-22 undefined. By contrast, struct { short x : 10; short y : 12; } is a 32-bit type with x in bits 9-0, y in bits 27-16, and bits 31-28 and 15-10 undefined.

from riscv-elf-psabi-doc.

jim-wilson avatar jim-wilson commented on July 20, 2024

from riscv-elf-psabi-doc.

aswaterman avatar aswaterman commented on July 20, 2024

Thanks, Jim. I'll make a PR.

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.