forked from M-Labs/artiq
1
0
Fork 0

Take alignment into account during attribute writeback (fixes #293).

This commit is contained in:
whitequark 2016-02-25 01:44:05 +00:00
parent 914bc9f360
commit a1dd909bc4
2 changed files with 10 additions and 2 deletions

View File

@ -443,7 +443,7 @@ class LLVMIRGenerator:
lldatalayout = llvm.create_target_data(self.llmodule.data_layout)
llrpcattrty = self.llcontext.get_identified_type("attr_desc")
llrpcattrty.elements = [lli32, llptr, llptr]
llrpcattrty.elements = [lli32, lli32, llptr, llptr]
lldescty = self.llcontext.get_identified_type("type_desc")
lldescty.elements = [llrpcattrty.as_pointer().as_pointer(), llptr.as_pointer()]
@ -459,7 +459,10 @@ class LLVMIRGenerator:
type_name = "instance.{}".format(typ.name)
def llrpcattr_of_attr(name, typ):
size = self.llty_of_type(typ).get_abi_size(lldatalayout, context=self.llcontext)
size = self.llty_of_type(typ). \
get_abi_size(lldatalayout, context=self.llcontext)
alignment = self.llty_of_type(typ). \
get_abi_alignment(lldatalayout, context=self.llcontext)
def rpc_tag_error(typ):
print(typ)
@ -476,6 +479,7 @@ class LLVMIRGenerator:
name="attr.{}.{}".format(type_name, name))
llrpcattr.initializer = ll.Constant(llrpcattrty, [
ll.Constant(lli32, size),
ll.Constant(lli32, alignment),
llrpctag,
self.llstr_of_str(name)
])

View File

@ -407,6 +407,7 @@ int recv_rpc(void *slot) {
struct attr_desc {
uint32_t size;
uint32_t alignment;
const char *tag;
const char *name;
};
@ -434,6 +435,9 @@ void attribute_writeback(void *utypes) {
while(*attrs) {
struct attr_desc *attr = *attrs++;
if(offset % attr->alignment != 0)
offset += attr->alignment - (offset % attr->alignment);
if(attr->tag) {
uintptr_t value = (uintptr_t)object + offset;
send_rpc(0, attr->tag, &object, &attr->name, value);