Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

compilers101 · Compilers 101

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 277 - 306 of 1492   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
277 Graham Toal
graham_toal Send Email
Mar 4, 2004
5:41 am
I just bounced a post that was an obvious "please do my homework for me" request. I have let the last few posts like this slip through, but from now on I will...
278 rickclark58 Send Email Mar 24, 2004
4:34 pm
Hey all, Some of you may have seen this already (a search of the archive didn't turn up any references), but I thought it might be worth mentioning since there...
279 rickclark58 Send Email Mar 24, 2004
11:26 pm
I came across an interesting site that has some good information on stack and register based programming languages: ...
280 Graham Toal
graham_toal Send Email
Mar 25, 2004
6:11 am
Thanks for the link. I had a look at that parser. It's quite nice. ... However it has the same mistake as yacc. No context-sensitive tokenising. Means that...
281 sarbayo Send Email May 9, 2004
3:57 am
Hey guys, For a couple of years now I've been working on byte code compilers and ... With what I now know, I thought it was time for me to put together a ...
282 Graham Toal
graham_toal Send Email
May 9, 2004
4:52 am
... the ... amount ... or ... With a little effort it compiles fine on Linux. Got any basic source files we can throw at it to try it out? Reminiscent of some...
283 sarbayo Send Email May 9, 2004
10:24 am
Hey guys, ... source files we can throw at it to try it out? Yes, the Bxbasm.zip contains a file Bxbasm.rtf, which contains about 50 cut-n-paste examples to...
284 sarbayo Send Email May 10, 2004
8:46 pm
Hey Guys, I have uploaded the Bxbasm source files in: sources.zip. See the: Readme.txt. Steve...
285 sarbayo Send Email May 11, 2004
4:26 am
I forgot to mention, that this file now also contains the command language description as well as about 50 sample programs that will generate ASM code from the...
286 sarbayo Send Email May 11, 2004
4:31 am
Graham, Just curious, What modifications did you have to make to get it to compile under Linux ?? I have not tried that yet. I'd like to make a Linux version...
287 Graham Toal
graham_toal Send Email
May 13, 2004
2:51 am
... Linux ?? ... Trivial. Here's a script you can execute that will fix the files and compile and test it. However it does run with errors: Copyright:...
288 Graham Toal
graham_toal Send Email
May 13, 2004
3:10 am
I have a heap debugging package that sometimes helps on code like this. Unfortunately with the data corruption it wasn't able to pinpoint the source line...
289 Graham Toal
graham_toal Send Email
May 13, 2004
3:15 am
PS I forgot this: #total allocations:1289 #total re-allocations:30 #total frees:1183 #total allocated never freed:304 #average size of allocations:38.7 #map#...
290 ed_davis2 Send Email May 14, 2004
2:00 pm
I've written several simple one-pass compilers, with the code generation phase intermixed with the parsing phase, e.g., generate code as soon as possible. But,...
291 Paul Cockshott
wpc@... Send Email
May 14, 2004
2:08 pm
Build the ast. Walk over once to build symbol table Walk over again to do code generation. ... From: ed_davis2 [mailto:ed_davis2@...] Sent: Fri 5/14/2004...
292 Steve
sarbayo Send Email
May 14, 2004
5:41 pm
Hey guys, When I first started learning about compilers I ran across some discussion in a compiler forum that discussed single-pass versus multi-pass...
293 Graham Toal
graham_toal Send Email
May 15, 2004
5:03 pm
... That's not quite the whole story. The principle driver was whether you had to read the source file twice. With card jobs this was a major hassle. Even...
294 Steve
sarbayo Send Email
May 15, 2004
5:22 pm
Bxbasm compiler: update 1.051 Hey Guys, I have uploaded an update for Bxbasm (Native Code Compiler). The compiler update and source-code can be downloaded...
295 Graham Toal
graham_toal Send Email
May 15, 2004
5:26 pm
... There is no advantage from the point of view of having data available from some point later in the compilation (except perhaps in C with old-style partial...
296 Steve
sarbayo Send Email
May 15, 2004
5:39 pm
Hey Graham, Thanks for your detailed clarfication. It makes a lot of sense. For further clarfication, I was not quoting from my exprience or any special...
297 Graham Toal
graham_toal Send Email
May 15, 2004
5:56 pm
... We have lots of opinions here. Some conflicting. Sometimes depending on the time of day you even get conflicting opinions from the same person ;-) By all...
298 Graham Toal
graham_toal Send Email
May 15, 2004
6:12 pm
... I'd lose that bet :-/ ISO C: struct { int x; struct { int y, z; } nested; } i = { .nested.y = 5, 6, .x = 1, 2 }; Found that one reading about CIL:...
299 Steve
sarbayo Send Email
May 15, 2004
7:12 pm
Thanks Graham, and thanks for the link. I'll certainly give it a visit. I have monitored some of the discussion here, over the past few months and I always...
300 Graham Toal
graham_toal Send Email
May 16, 2004
2:51 am
... Try this: http://www.gtoal.com/compilers101/trie/test.c Graham...
301 ed_davis2 Send Email May 18, 2004
9:52 pm
... Ok, here goes: The data is a list of 47,000 unique words. The search word list is 94,000 unique words, which includes the above words. So, there should be...
302 Graham Toal
graham_toal Send Email
May 19, 2004
4:11 pm
I can't remember in that code whether I do a malloc for each node, or allocate one big array at the start. If the former, the speed will be dominated by the...
303 ed_davis2 Send Email May 20, 2004
12:14 am
I've created a simple compiler that generates code for a stack based VM. I've also implemented some extended instructions, such as: inc offset, constant which...
304 Rainer Thonnes
rainer@... Send Email
May 20, 2004
9:39 am
... What you could do is widen the records you use to describe nodes of your AST, to include addition of constants. So whereas A+B would be represented as a...
305 Paul Cockshott
wpc@... Send Email
May 20, 2004
12:17 pm
I do this by using java classes for the ast and have a Boolean predicate method in the super class to which all node classes belong and that predicate is...
306 Graham Toal
graham_toal Send Email
May 20, 2004
12:44 pm
... The pattern matching is basically the test you already have but generalised to look for type_of(op) == const instead of op == add To make this easier you...
Messages 277 - 306 of 1492   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help