comparison gen/classes.cpp @ 1047:6bb04dbee21f

Some calling convention work for x86-64: - Implement x86-64 extern(C), hopefully correctly. - Tried to be a bit smarter about extern(D) while I was there. Interestingly, this code seems to be generating more efficient code than gcc and llvm-gcc in some edge cases, like returning a `{ [7 x i8] }` loaded from a stack slot from an extern(C) function. (gcc generates 7 1-byte loads, while this code generates a 4-byte, a 2-byte and a 1-byte load) I also added some changes to make sure structs being returned from functions or passed in as parameters are stored in memory where the rest of the backend seems to expect them to be. These should be removed when support for first-class aggregates improves.
author Frits van Bommel <fvbommel wxs.nl>
date Fri, 06 Mar 2009 16:00:47 +0100
parents 8c73ff5f69e0
children 83ef1e7cde70
comparison
equal deleted inserted replaced
1046:cc6489f32519 1047:6bb04dbee21f
955 } 955 }
956 956
957 // call constructor 957 // call constructor
958 if (newexp->member) 958 if (newexp->member)
959 { 959 {
960 Logger::println("Calling constructor");
960 assert(newexp->arguments != NULL); 961 assert(newexp->arguments != NULL);
961 DtoForceDeclareDsymbol(newexp->member); 962 DtoForceDeclareDsymbol(newexp->member);
962 DFuncValue dfn(newexp->member, newexp->member->ir.irFunc->func, mem); 963 DFuncValue dfn(newexp->member, newexp->member->ir.irFunc->func, mem);
963 return DtoCallFunction(newexp->loc, tc, &dfn, newexp->arguments); 964 return DtoCallFunction(newexp->loc, tc, &dfn, newexp->arguments);
964 } 965 }