comparison dmd/mtype.h @ 217:0806379a5eca trunk

[svn r233] Added: -oq command line option for writing fully qualified object names. Added: started support for x86 80bit floating point. Changed: aggregates passed by value now use the llvm 'byval' parameter attribute, also lays ground work for using other attributes. Changed: eliminated a lot more std::vectorS, these showed up pretty much at the top when profiling! Changed: performed other misc. cleanups. Changed: halt expression now call the new llvm trap intrinsic instead of an assert(0). Changed: dstress suite now passes -O0 by default, this only eliminates unreferenced globals, which speeds up linking quite a bit.
author lindquist
date Thu, 05 Jun 2008 06:38:36 +0200
parents f66219e0d530
children aaade6ded589
comparison
equal deleted inserted replaced
216:3d022aa016ae 217:0806379a5eca
679 static char *argsTypesToChars(Arguments *args, int varargs); 679 static char *argsTypesToChars(Arguments *args, int varargs);
680 static void argsToCBuffer(OutBuffer *buf, HdrGenState *hgs, Arguments *arguments, int varargs); 680 static void argsToCBuffer(OutBuffer *buf, HdrGenState *hgs, Arguments *arguments, int varargs);
681 static void argsToDecoBuffer(OutBuffer *buf, Arguments *arguments); 681 static void argsToDecoBuffer(OutBuffer *buf, Arguments *arguments);
682 static size_t dim(Arguments *arguments); 682 static size_t dim(Arguments *arguments);
683 static Argument *getNth(Arguments *arguments, size_t nth, size_t *pn = NULL); 683 static Argument *getNth(Arguments *arguments, size_t nth, size_t *pn = NULL);
684
685 // LLVMDC
686 bool llvmByVal;
684 }; 687 };
685 688
686 extern int PTRSIZE; 689 extern int PTRSIZE;
687 extern int REALSIZE; 690 extern int REALSIZE;
688 extern int REALPAD; 691 extern int REALPAD;