faustus@ic.Berkeley.EDU (Wayne A. Christopher) (12/04/87)
Sorry if this question has been asked before, but I haven't been reading this newsgroup for very long. Is there a C++ compiler available now that will compile directly into asm code, instead of into C? Alternatively, is there a good way to use dbx with C++ programs (i.e, using the c++ source instead of the c files)? Thanks, Wayne
jss@hector.UUCP (12/05/87)
In article <2097@ucbcad.berkeley.edu> faustus@ic.Berkeley.EDU.UUCP writes: >Sorry if this question has been asked before, but I haven't >been reading this newsgroup for very long. Is there a C++ >compiler available now that will compile directly into asm >code, instead of into C? Yes, the question has come up before. The answer is that there are some being worked on (there were papers on two at the recent USENIX C++ conference) but none is currently available. When I'm asked this question in person (as I frequently am) I give the above response and then ask the questioner why he or she cares. Almost always they think that there is some property such speed, robustness, quality or the like, that a "direct" compiler will have, that a cfront based compiler cannot have. This is almost always based on some misconception about compiler technology. While it is possible that a new compiler will be better in some way, it may also be worse. When the compilers become available we will have to see. Personally I am interested in such compilers because I work on programming languages and compilers. But for "real work" I would probably wait before I grabbed a new compiler. Cfront is not perfect, but it has been around a few years now, and is over the "teething" problems that almost always accompany new compilation systems. There is sometimes some confusion about the nature of cfront. It takes C++ code as input and emits C code as output, but it is not a preprocessor. I say that because if you tell me that you got an error message from the C compiler I can unequivocally assert that it is a bug in cfront or a bug in the C compiler. It should not happen any more than an error message from the assembler should appear during a normal C compilation. >Alternatively, is there a good way >to use dbx with C++ programs (i.e, using the c++ source instead >of the c files)? On our machines (BSD 4.3 on VAXen) dbx already refers to the original C++ source rather than the intermediate .c. I gather from the way the question is asked that on some machines it doesn't. I'm not sure how to diagnose the problem. The intermediate files should have #line directives in them. If they don't you have an old version of cfront or there is something wrong with the shell script. If they do and dbx doesn't understand them it is a problem with the C system. On the other hand perhaps I misunderstand your question and it really refers to "name mangling". If so there are a variety of approaches available right now. I use dbx with C++ programs all the time. This task is greatly eased by two tools. The first is my terminal which has windows and supports local editing. I can run nm, grab a name it prints and feed that back to dbx. The other tool is a program which adds "history" (like ksh history) to any line oriented interactive program like dbx. While these do not create a perfect working environment, they do make dbx usable. I have also heard of a tool (I'm not sure what its called or how to get it) that takes an a.out and "unmangles" the names of local variables in the dbx information. I'm sorry to be so long winded to answer such a short question, but it wasn't clear what the "real question" is. Jerry Schwarz Bell Labs
shapiro@inria.UUCP (Marc Shapiro) (12/11/87)
In article <2097@ucbcad.berkeley.edu>, faustus@ic.Berkeley.EDU (Wayne A. Christopher) writes: > [...]. Is there a C++ > compiler available now that will compile directly into asm > code, instead of into C? Alternatively, is there a good way > to use dbx with C++ programs (i.e, using the c++ source instead > of the c files)? The answer to both questions is yes. The Free Software Foundation (you know, the GNU Emacs people) will distribute (soon?) a modified version of their C compiler which does C++. Their debugger GDB (a dbx-lookalike) knows how to handle it. I haven't used either of these so I have no opinions to whether they are in any way adequate. Just passing useful information along.