stargeek
PHP news website logo.
home    PHP scripts    articles    seo tools    links    search    contact    shop    realtors


IBM Releases New C/C++ Compiler For OS X







IBM Releases New C/C++ Compiler For OS X

IBM Releases New C/C++ Compiler For OS X 01/16/2004 11:04 AM

(PC Pro via MyAppleMenu)




This is a GrokNews Entry: (what is grok?)





Similar Items

IBM Releases New C/C++ Compiler For OS X

Grok Headline matches for IBM Releases New C/C++ Compiler For OS X

The ASN.1 Compiler


The ASN.1 Compiler 06/03/2004 12:50 AM
Free ASN.1 compiler released

My First C Compiler


My First C Compiler 01/09/2004 09:56 PM

I accidentally googled into this short page on History of PC based C-compilers which made me think about my first C compiler: Aztec C on Apple II.  I was among the first wave of programmers who cut their teeth on PCs instead of minicomputers and state-of-the-art in PC software has risen high enough to make programming in assembly tedious.

So I just bought a copy of wonderfully thin K&R book which took only an hour to read and started writing in C.  I really liked it but I wasn't comfortable with the idea of using it for production code yet because size and speed still reign supreme then.  But it was fine for writing tools.

I think the first program I wrote with Aztec C was a double-hires image editor because that was when Apple IIc was about to be released and there were no tools to edit double-hires images.  It was sweet not having to worry about registers and being able to write almost English like code (well, it does when compared to assembly code).

Oh boy, time sure flies.


GNU D Compiler for Mac OS X


GNU D Compiler for Mac OS X 04/13/2005 05:53 AM
GDC 0.11

TPL Compiler 1.0.5


TPL Compiler 1.0.5 12/17/2003 08:28 AM
A tool which compiles phpBB-style templates to Python modules.

JAL compiler


JAL compiler 05/14/2004 01:51 AM
2004-04-30

Decaf compiler 1.0.1


Decaf compiler 1.0.1 04/14/2004 07:55 PM
A scanner/parser/checker/MIPS code generator.

4tH compiler 3.4a (Development)


4tH compiler 3.4a (Development) 11/05/2003 06:26 AM
A Forth bytecode compiler with a little difference.

A C Compiler For The HP49g+


A C Compiler For The HP49g+ 08/22/2004 08:17 AM
Slashdot Aug 22 2004 12:31PM GMT

4tH compiler 3.4c (Development)


4tH compiler 3.4c (Development) 01/11/2004 01:34 PM
A Forth bytecode compiler with a little difference.

4tH compiler 3.3e (Development)


4tH compiler 3.3e (Development) 11/01/2003 05:14 AM
A Forth bytecode compiler with a little difference.

4tH compiler 3.3d2 (Development)


4tH compiler 3.3d2 (Development) 03/14/2003 12:59 PM
A Forth bytecode compiler with a little difference.

ObjectBox o:XML Compiler 1.0.0


ObjectBox o:XML Compiler 1.0.0 05/01/2004 10:35 AM
An o:XML compiler and interpretor.

PHP 5 Released; PHP Compiler, Too


PHP 5 Released; PHP Compiler, Too 07/13/2004 06:41 PM

Tiny C Compiler 0.9.20


Tiny C Compiler 0.9.20 12/03/2003 06:06 PM
The smallest Linux C compiler.

freeBASIC Compiler


freeBASIC Compiler 12/31/2004 04:24 AM
FreeBASIC v0.09b released

4tH compiler 3.4b (Development)


4tH compiler 3.4b (Development) 12/06/2003 06:11 AM
A Forth bytecode compiler with a little difference.

Intel C++ Compiler 8.0


Intel C++ Compiler 8.0 12/11/2003 08:31 AM
A C/C++ compiler/debugger optimized for maximum performance on Intel processors.

S Formulas Compiler


S Formulas Compiler 12/08/2003 02:24 PM
pre1.0 is stable

GDS Compiler 9.5.0 (Default branch)


GDS Compiler 9.5.0 (Default branch) 03/30/2005 06:14 PM
Aimed at micro-electronic design, GDS Compiler allows you to easily develop any GDSII generators (memory, MEMS, devices) of any macrocell for which parametrization can provide flexibility, security, and productivity. Front end views and netlist for LVS are generated automatically.
Changes:
This release provides extensively reworked internal netlisting capabilities to support ultra-rapid processing of ever-larger designs, interactive debugging and a development interface with support for step-by-step debugging with integrated netlist capabilites, as well as automated array generation in output GDSII.

Optimizing Oberon-2 Compiler


Optimizing Oberon-2 Compiler 11/03/2003 11:13 AM
oo2c-2.0.15 released

4tH compiler 3.4e-pre1 (Development)


4tH compiler 3.4e-pre1 (Development) 08/02/2004 06:13 AM
A Forth bytecode compiler with a little difference.

Lfyre - the language and compiler


Lfyre - the language and compiler 01/03/2005 12:43 PM
Compiler starts being usable

PHP Compiler Cache Internals


PHP Compiler Cache Internals 10/29/2003 12:11 AM
The latest English issue of PHP Magazine has an interesting article about implementing a PHP Opcode Cache by George Schlossnagle, the author of APC.

If you're familiar with the English expression, don't throw the baby out with the bath water, then you will be amused to learn that that's exactly how the Zend Engine (PHP's compiler) works. It will compile the PHP into opcodes for a page request, and throw the opcodes away immediately after the code completes.

This may sound really wierd and inefficient, but of course Zeev and Andi would not have been able to start their own company, Zend, without a business plan that involved fixing this "stupidity". And you thought Microsoft was evil ;-)

Now it is perfectly normal when developing a platform to leave gaps for commercial vendors to fill. That creates a ecosystem where we have companies willing to pay to maintain and promote PHP. So this isn't meant to be an attack against Zend, but an acknowledgement of business realities.

This omission of the Zend Engine stimulated interest in several open source developers to create their own opcode caches. APC is one of the earliest open source opcode caches.

In my benchmarks (yes, you see me benchmark a lot, because that's the only way to understand the performance profile of PHP software without spending a lot of time examining source code) I noticed that the overhead of PHP opcode caches was less for small scripts. Obviously there is some copying of instructions from the cache in shared memory during script execution. The question was how much? How did it affect performance?

Now we have the answer. George says restoration of the opcode info for script execution "involves only a so-called shallow copy of the op_array. A shallow copy means that only the structure itself is copied, but none of the elements it contains pointers to."

This means that the actual opcodes are not actually copied, only the pointers to the structures that contain the opcodes. Apart from that, the function and class metadata and any static variables are restored, and the inheritance hierarchy is dynamically resolved.

So the overhead of the opcode cache is O(n), where n is the number of functions+classes+inheritance levels+properties+PHP files. It is not proportional to the number of lines of code - that would be as worrying as throwing the baby with the bath water.

Another excellent issue of PHP Magazine!


Next GCC compiler version imminent


Next GCC compiler version imminent 04/18/2005 06:16 PM
CNET News.com Apr 18 2005 9:45PM GMT

4tH compiler 3.4e-pre4 (Development)


4tH compiler 3.4e-pre4 (Development) 08/12/2004 06:03 AM
A Forth bytecode compiler with a little difference.

The Glasgow Haskell Compiler 6.2.2


The Glasgow Haskell Compiler 6.2.2 12/30/2004 06:55 AM
A compiler for Haskell 98

4tH compiler 3.4e-pre11 (Development)


4tH compiler 3.4e-pre11 (Development) 12/26/2004 08:40 AM
A Forth bytecode compiler with a little difference.

Javac Compiler Helper 0.2.2


Javac Compiler Helper 0.2.2 07/06/2004 06:45 AM
A wrapper for the javac standard compiler.

State Machine Compiler 2.2.0


State Machine Compiler 2.2.0 12/12/2003 10:09 PM
A state pattern generator for C++, Java, and Tcl.

SMC - The State Machine Compiler


SMC - The State Machine Compiler 05/31/2004 03:49 PM
SMC v. 3.0.0: Back to Basic

Pro Fortran Compiler Suite 9.0 available


Pro Fortran Compiler Suite 9.0 available 08/11/2004 10:36 PM
Absoft's Pro Fortran Compiler Suite 9.0 for Mac OS X is now available to commercial and government customers for US$899...

Javac Compiler Helper 0.1.0


Javac Compiler Helper 0.1.0 06/02/2004 05:10 PM
A wrapper for the javac standard compiler.

Javac Compiler Helper 0.1.6


Javac Compiler Helper 0.1.6 06/14/2004 06:05 PM
A wrapper for the javac standard compiler.

Jack C Compiler for Jackal 3.0


Jack C Compiler for Jackal 3.0 03/19/2005 02:38 AM
A new assembler

4tH compiler 3.4e-pre5 (Development)


4tH compiler 3.4e-pre5 (Development) 08/31/2004 06:01 AM
A Forth bytecode compiler with a little difference.

Phalanger: PHP .NET compiler revealed


Phalanger: PHP .NET compiler revealed 03/17/2005 03:01 AM
Tomas Matousek and Ladislav Prosek talk about their PHP .NET compiler, Phalanger. These guys don't work at Microsoft, Charles Torre ran into them at a recent CLR compiler lab held on Microsoft's main campus.

4tH compiler 3.4e-pre2 (Development)


4tH compiler 3.4e-pre2 (Development) 08/06/2004 04:06 AM
A Forth bytecode compiler with a little difference.

4tH compiler 3.4e-pre6 (Development)


4tH compiler 3.4e-pre6 (Development) 09/25/2004 05:37 AM
A Forth bytecode compiler with a little difference.

State Machine Compiler 3.1.0


State Machine Compiler 3.1.0 09/06/2004 11:14 AM
A state pattern generator for C++, Java, Tcl, and VB.net.
Grok Description matches for IBM Releases New C/C++ Compiler For OS X
GrokA matches for IBM Releases New C/C++ Compiler For OS X

IBM Releases New C/C++ Compiler For OS X

The following phrases have been identified by the grok system as matching this entry:

















Also check out:


Grok

Ipod Porn on the
Rise

Brief Abstract of
Wikipedia's
Mesothelioma Cancer
page

Get first aid
instructions in your
cell phone

IE is crap
JSPWiki gains
podcasting support

Apple + HP = iPod
Forever

Mac Users Vs. Mac
Whiners; A Schism In
Macland

iPod mini Color
Ranking According To
Amazon Customers

Xgrid -- A First
Look At Apple's New
Cluster Software

Dreamweaver MX 2004
For Mac OS X

Bringing Apple Back
Into The Race

Analysts Have Faith
In Apple

One-In-Six Xmas
iPods Sold In UK

Apple Pro Mouse
Cable Issue?

Apple Ripe For
Strong Quarter

Apple Computer
Becomes More
Entertaining

iPod In Demand
Booming Baritone Has
His Audiences
Swooning, But What
Sets His Heart
Singing Madly Is...
His Macintosh
Computer

Tablet Mac Coming
Your Way?

Apple Posts $63M
Profit

New Apple Store
Opens In Tucson Next
Week

iPhoto Takes A
Backseat To Music
Again

Apple CFO Sees Q2
Earnings Beating
Estimates

Apple Quality
Control Mars Bullish
Results

A Look At The iPod
mini

Marginalizing The
Mac And Its Users

IDC: Apple Macintosh
Market Share Under
2% Worldwide; Under
3% In United States
For 2003

'It's A Miracle That
It Sold Anything At
All. It Was Not A
Rational Buy.'

On The Road With An
iPod, A Way To Beat
The Battery Blues

Second Apple Store
Coming To Miami,
Florida?

Apple Offers
AppleWorks 6.2.9
Update

MacBU Comments On
Office 2004

Corel Ends Mac
Development

Apple Pro Mouse
Cable Issues

Is The War On File
Sharing Over?

Apple Releases
SoundTrack v1.2
Update

Apple Upgraded To
'Buy' At UBS

Apple Launches Logic
Pro 6, Logic Pro
Express

Apple Previews
Next-Generation
Audio Technology

A Grain Of Salt WIth
Your C|Net, Apple
Still Shines

Baldur's Gate II:
Throne Of Bhaal

Apple Has No Plans
For Super Bowl Ad

Apple To Be
Debt-Free Feb 16;
Sells Remaining
Stake In Akamai

Technology No Longer
A Dirty Word

Apple iLife
GarageBand

GarageBand
Simplifies Process
Of Making Music

What size Fries
Would youlike With
That

No New Hardware, But
Macworld Apps Hum

Analysts Divided On
Apple Stock

How Do You Like
Those Apples?

More On Apple Pro
Mouse Problems

iPod: Think
Different For Apple

Arctic front grips
US north-east

Iraq test looms for
Japan troops

Sudan 'closes
refugee camps'

what is grok?