As Mat said, those huge heaps could get problematic with Garbage Collection, but then with a large heap, you probably are using a multi-core machine, where you can use a collector that basically runs on a core of its own.
Otherwise -Xm accepts a unit of 'g' so you can write -Xmx100g
Manpage for java (on OS X ) says:
On Mac OS X platforms, the upper
limit for this value when running in
32-bit mode (-d32) is approximately
2100m minus overhead amounts, and
approximately 127t minus overhead
amounts when running in 64-bit mode
(-d64). On Solaris 7 and Solaris 8 SPARC
platforms, the upper limit for this
value is approximately 4000m
minus overhead amounts. On Solaris 2.6
and x86 platforms, the upper limit is
approximately 2000m minus
overhead amounts. On Linux platforms, the upper
limit is approximately 2000m minus
overhead amounts.