TweetFollow Us on Twitter

Debugging Pascal
Volume Number:2
Issue Number:9
Column Tag:Intermediate Mac'ing

Debugging with LightSpeed Pascal

By David E. Smith, Editor & Publisher

The Boston Expo this week promises to offer a world of new Mac products of particular interest to developers. Many of these products will revolutionize how software is done on the Mac, so it is time to take stock and review the software development process on the Mac.

Where to Begin

The first step in the product development cycle is to get information. This means getting a copy of Inside Macintosh by Addison Wesley, volumes 1-3 and soon volume 4. I prefer the hard bound all in one edition (great for dropping on bugs ). Next some Mac hardware is in order. A Mac Plus with a two meg upgrade from MacMemory is a must. A hard disk, scsi type, is helpful. The DataFrame 20 has been reported as a "safe" buy, reliable, few problems. A new round of 60 to 100 meg drives is also appearing in the $2500 range. Hardware and book in hand, it's time to reach for the check book and buy additional information. Apple's software supplements and technical notes are a must, from Apple's mailing facility. For referencing the ROM, there is TOM's Program's little ROM reference deck. Finally, don't forget the MacTutor subscription!

Utilities are important. No programmer should be without Fedit Plus, Mac Nosy 2.1, TMON or Heap Show. Both Fedit Plus and Mac Nosy 2.1 are new versions being shown at Boston. All four of these products are available from MacTutor as well as other technical software outlets. Heap Show is a very valuable little utility that allows you to analyze heap use in your program, find dangling handles and pointers, and help you prevent heap fragmentation. It is one of the most valuable of utilities yet is also the least known.

Now loaded with documentation from IM, supplements and back issues of MacTutor, the next step is finding out what it all means. For this, the only way to go is to sign up for Dave Wilson's Macintosh Programming Class. This is Apple's official introduction to Mac Programming and it is indispensible. I just finished the class and I really learned a lot about the Mac that I either didn't know or didn't understand correctly. Dave is a master teacher and well versed in the Mac hacker's world. Cost is not cheap at $1,000, but it's well worth the price if your part of a company project. Six months after you're well along in development, thanks to Dave Wilson, you can then sign up for Scott Kanaster's Mac College to get the bugs out of your project. But we're getting ahead of ourselves. First you must decide on a development system.

HFS Changes Development Environment

Under MFS, the Mac supported a number of traditional development systems. The Aztec C 1.06G is preferred by Unix programmers because it preserves much of the Unix flavor of software development within the Mac interface. Consulair C and TML Pascal both present a similar Mac User Interface for software development using the traditional Edit/Compile/Link process. Under MFS, this traditional approach worked fine. However, under HFS, this approach breaks down because development systems must devise various methods of finding include files and trap files now arranged in different directories. The real problem is that HFS really makes the traditional approach of edit, compile and link obsolete. It simply takes too much time to run a program, bomb a program, debug a program, edit, compile, link and try again, when dealing with such a highly interactive and dynamic environment as Macintosh. Servant may ease this problem when available, by bringing a user configurable integrated environment to seperate programs not originally designed to be integrated, making a kind of user constructable LightSpeed environment, with the added advantage that you select the tools to install.

Solving the HFS Problem

The new world of development systems now coming out for the Mac solve the HFS problem by creating a development environment, in which all the files necessary to support the program development cycle is known to the system. These new systems are MPW from Apple, which brings Object Pascal and MacApp in a strong Unix style environment with scripts; TML Pascal 2.0, which also supports Object Pascal and units; and the newest product, LightSpeed C & Pascal, which create a "Project" that bundles files together dramatically speeding up compile and link. Let's focus on LightSpeed Pascal as this product typlifies the new "environment" approach that the Mac interface encourages.

Integrated Tools Speeds Debugging

Mac programming is primarily a process of "discovering" what the Mac ROMS will let you do and how they let you do it. Because of this, re-running programs over and over to experiment is a primary debugging task. With traditional edit, compile and link systems, this process takes several minutes. Make five change and test cycles and you've used up the better part of an hour! With the concept of a "Project", all files are loaded and available, compilation is virtually instant as only the necessary compilation is done, everything else is pre-compiled. Finally, linking is automatic since the project knows both what to link, and what needs to be re-linked after a change. The editing and executing environment are the same, so you can both edit, and execute your program from the same shell, switching back and forth with a click of the mouse between your program's window and menus, and LightSpeed Pascal's windows and menus. Source is always available for editing and source code debugging is fully supported. The result is faster turn-around time in the edit, compile, execute, bomb, re-edit cycle. Instead of several minutes, new attempts are created and tested in seconds. An interactive environment that produces fully compiled double-clickable applications, DA's and drivers.

How it works

The key to LightSpeed Pascal is the project concept. A project is a window and a file that contains a list of all filenames associated with a particular program effort. It also contains compiler and linker information that allows only changed code to be re-compiled and linked dynamically. Since libraries and include files don't have to be re-loaded and compiled as they do on traditional systems, the project approach makes fast turn-around of the compile and link process.

We write a program within our project environment with the LightSpeed Pascal "system". This system includes a multi-file editor. Our editing window is always available, even while our program is running. A build command creates a final application for us that is a fully compiled stand alone program we can move to any disk. For MDS ".REL" files, we can convert them to our project library format with a converter utility, provided. The compiler is fully Lisa and TML Pascal compatible. We compiled last month's keyboard sleuth program without any problem. The system does not have an assembler, so assembly code still must be assembled using MDS or Consulair C systems, and then converted for loading into our project.

The Debugging Process

If your frustrated at trying to marry your development system with MacsBug and TMON, then you'll really appreciate the LightsBug debugging window. Debugging is the key to this system. The system automatically debugs your source code as you type, checking for syntax errors on entry. Instant compilation checks again for normal compilation errors. Finally, running the program again checks for run-time errors. At any time, if an error occurs, you can change the source, look at the debugger window, try some parameter values in the observe window, or change variable values in the instant window. To see what your program is doing, modify the source, set breakpoints and run again. Watch your window while you also watch the debug window! The debug window is automatically linked to the point where your program stopped, showing the heap trail, register values and your global variables. A single click on a global variable, and bang! The debugger shows you a hex and ascii memory dump at the location of the variable.

Figure 1 shows the many windows of LightSpeed Pascal. Our own program window is also available! The project window lists our library, source and include files. Compiler options are set for each file by clicking in the box next to the file name. We change the link order for our project by simply dragging the file name up or down in the project window. No more editing of a link file!

Our source code is shown in another window, and we can open a window for each of our source segments. The observe window allows us to monitor the value of a variable as our program executes. The Instant window allows us to execute program source code or trap calls instantly to observe their effects. If we get what we want, we can paste the line into our source window. Text and drawing have the same purpose they did under MacPascal, but even more important, our own toolbox created windows from our running program are available and clickable along with each of the other windows shown in figure 1.

In figure 2, we see how the observe window works. Here, we've placed a breakpoint at the putstring(s) statement in the source window. After running, our program is now stopped at the break, and the value of s is shown in bold in the observe window. Note that in the LightsBug window, we instantly have the base address of the variable s and can observe it's value in both hex and ascii.

In figure 3, we now change the value of s in the instant window. As we do this, the observe window shows the new value of S, and the LightsBug window shows the new hex and ascii values for s in memory.

In figure 5, we now wish to change the value that is assigned to s directly in memory where our source code lives. We do this by clicking edit and another little debug dialog box opens allowing us to enter a new value directly into memory. As we do this, the LightsBug window shows that what used to be "there!" is now "fere!". This also changes our source code and when we run the program, as figure 6 shows, the new source code value is shown being assigned to s during execution.

Figure 7 shows that our program window exists along with LightSpeed Pascal's windows and we can swtich back and forth by clicking on the spray can (for debugging!).

Finally a Decent Manual

For some reason, Mac development systems have shipped with manuals that assume you already know every language command by heart. Very few even have a simple language definition. If you don't already know C or Pascal, forget it! The LightSpeed manuals are very well done, very large and provide a clear description of the language syntax and commands much like normal manuals on other computers have traditionally done. It is a mystery to me why it has taken this long for decent manuals to be shipped with Mac development environments.

Reaction

I personally think these products will revolutionize how software is done on the Mac. The time saved in testing and re-running programs under development is so tremendous that no one will settle for the large development time required of traditional edit, compile, and link systems. The Mac takes more time anyway in the learning curve of the ROM functions, so anything we can gain in the development cycle is extremely important. But most of all, LightSpeed Pascal will be very popular because no one will want to live without source level debugging with LightsBug if they don't have to. The debugging capabilities will cause people to stop and think if they really need all the overhead of MPW after all.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Top Mobile Game Discounts
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links... | Read more »
Price of Glory unleashes its 1.4 Alpha u...
As much as we all probably dislike Maths as a subject, we do have to hand it to geometry for giving us the good old Hexgrid, home of some of the best strategy games. One such example, Price of Glory, has dropped its 1.4 Alpha update, stocked full... | Read more »
The SLC 2025 kicks off this month to cro...
Ever since the Solo Leveling: Arise Championship 2025 was announced, I have been looking forward to it. The promotional clip they released a month or two back showed crowds going absolutely nuts for the previous competitions, so imagine the... | Read more »
Dive into some early Magicpunk fun as Cr...
Excellent news for fans of steampunk and magic; the Precursor Test for Magicpunk MMORPG Crystal of Atlan opens today. This rather fancy way of saying beta test will remain open until March 5th and is available for PC - boo - and Android devices -... | Read more »
Prepare to get your mind melted as Evang...
If you are a fan of sci-fi shooters and incredibly weird, mind-bending anime series, then you are in for a treat, as Goddess of Victory: Nikke is gearing up for its second collaboration with Evangelion. We were also treated to an upcoming... | Read more »
Square Enix gives with one hand and slap...
We have something of a mixed bag coming over from Square Enix HQ today. Two of their mobile games are revelling in life with new events keeping them alive, whilst another has been thrown onto the ever-growing discard pile Square is building. I... | Read more »
Let the world burn as you have some fest...
It is time to leave the world burning once again as you take a much-needed break from that whole “hero” lark and enjoy some celebrations in Genshin Impact. Version 5.4, Moonlight Amidst Dreams, will see you in Inazuma to attend the Mikawa Flower... | Read more »
Full Moon Over the Abyssal Sea lands on...
Aether Gazer has announced its latest major update, and it is one of the loveliest event names I have ever heard. Full Moon Over the Abyssal Sea is an amazing name, and it comes loaded with two side stories, a new S-grade Modifier, and some fancy... | Read more »
Open your own eatery for all the forest...
Very important question; when you read the title Zoo Restaurant, do you also immediately think of running a restaurant in which you cook Zoo animals as the course? I will just assume yes. Anyway, come June 23rd we will all be able to start up our... | Read more »
Crystal of Atlan opens registration for...
Nuverse was prominently featured in the last month for all the wrong reasons with the USA TikTok debacle, but now it is putting all that behind it and preparing for the Crystal of Atlan beta test. Taking place between February 18th and March 5th,... | Read more »

Price Scanner via MacPrices.net

AT&T is offering a 65% discount on the ne...
AT&T is offering the new iPhone 16e for up to 65% off their monthly finance fee with 36-months of service. No trade-in is required. Discount is applied via monthly bill credits over the 36 month... Read more
Use this code to get a free iPhone 13 at Visi...
For a limited time, use code SWEETDEAL to get a free 128GB iPhone 13 Visible, Verizon’s low-cost wireless cell service, Visible. Deal is valid when you purchase the Visible+ annual plan. Free... Read more
M4 Mac minis on sale for $50-$80 off MSRP at...
B&H Photo has M4 Mac minis in stock and on sale right now for $50 to $80 off Apple’s MSRP, each including free 1-2 day shipping to most US addresses: – M4 Mac mini (16GB/256GB): $549, $50 off... Read more
Buy an iPhone 16 at Boost Mobile and get one...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering one year of free Unlimited service with the purchase of any iPhone 16. Purchase the iPhone at standard MSRP, and then choose... Read more
Get an iPhone 15 for only $299 at Boost Mobil...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering the 128GB iPhone 15 for $299.99 including service with their Unlimited Premium plan (50GB of premium data, $60/month), or $20... Read more
Unreal Mobile is offering $100 off any new iP...
Unreal Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering a $100 discount on any new iPhone with service. This includes new iPhone 16 models as well as iPhone 15, 14, 13, and SE... Read more
Apple drops prices on clearance iPhone 14 mod...
With today’s introduction of the new iPhone 16e, Apple has discontinued the iPhone 14, 14 Pro, and SE. In response, Apple has dropped prices on unlocked, Certified Refurbished, iPhone 14 models to a... Read more
B&H has 16-inch M4 Max MacBook Pros on sa...
B&H Photo is offering a $360-$410 discount on new 16-inch MacBook Pros with M4 Max CPUs right now. B&H offers free 1-2 day shipping to most US addresses: – 16″ M4 Max MacBook Pro (36GB/1TB/... Read more
Amazon is offering a $100 discount on the M4...
Amazon has the M4 Pro Mac mini discounted $100 off MSRP right now. Shipping is free. Their price is the lowest currently available for this popular mini: – Mac mini M4 Pro (24GB/512GB): $1299, $100... Read more
B&H continues to offer $150-$220 discount...
B&H Photo has 14-inch M4 MacBook Pros on sale for $150-$220 off MSRP. B&H offers free 1-2 day shipping to most US addresses: – 14″ M4 MacBook Pro (16GB/512GB): $1449, $150 off MSRP – 14″ M4... Read more

Jobs Board

All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.