CCS 3.0 - majeed1352 - Mar 30 3:27:00 2005
Hello all,
Where can I found and download the free trial CCS 3.0 ?

(You need to be a member of code-comp -- send a blank email to code-comp-subscribe@yahoogroups.com )
Re: CCS 3.0 - Bhooshan Iyer - Mar 30 13:16:00 2005
Majeed--
Am assuming you are asking about CCS for C6000. This is the link for
the currently available for Free Evaluation Tool for CCS. You need to
register yourself(free) to be able to download this.
(
https://focus-webapps.ti.com/general/docs/regapp/serveresourcesaction.tsp?regAppId=164&reso
urceId=310&actionPerformed=serveResource
)
--Bhooshan
Wed, 30 Mar 2005 07:27:35 -0000, majeed1352 <majeed1352@maje...> wrote:
> Hello all,
>
> Where can I found and download the free trial CCS 3.0 ?
>
>
> To
--
-------------------------------------------------------------------
"I've missed more than 9000 shots in my career.
I've lost almost 300 games. 26 times I've been trusted to take the
game winning shot and missed.
I've failed over and over again in my life.
And that is why I succeed."
-- Michael Jordan
--------------------------------------------------------------------

(You need to be a member of code-comp -- send a blank email to code-comp-subscribe@yahoogroups.com )
Re: CCS 3.0 - Bhooshan Iyer - Mar 30 13:21:00 2005
You could also try this direct link but am guessing this is not CCS3.0.
( http://www-s.ti.com/ti_me/data/downloads/sdfw23289104d/ccstudio_c6xfet.zip )
--Bhooshan
On Wed, 30 Mar 2005 22:46:21 +0530, Bhooshan Iyer
<bhooshaniyer@bhoo...> wrote:
> Majeed--
> Am assuming you are asking about CCS for C6000. This is the link for
> the currently available for Free Evaluation Tool for CCS. You need to
> register yourself(free) to be able to download this.
>
> (
https://focus-webapps.ti.com/general/docs/regapp/serveresourcesaction.tsp?regAppId=164&reso
urceId=310&actionPerformed=serveResource
> )
>
> --Bhooshan
> Wed, 30 Mar 2005 07:27:35 -0000, majeed1352 <majeed1352@maje...> wrote:
> >
> >
> > Hello all,
> >
> > Where can I found and download the free trial CCS 3.0 ?
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > To
>
> --
> -------------------------------------------------------------------
> "I've missed more than 9000 shots in my career.
> I've lost almost 300 games. 26 times I've been trusted to take the
> game winning shot and missed.
> I've failed over and over again in my life.
> And that is why I succeed."
> -- Michael Jordan
> --------------------------------------------------------------------
--
-------------------------------------------------------------------
"I've missed more than 9000 shots in my career.
I've lost almost 300 games. 26 times I've been trusted to take the
game winning shot and missed.
I've failed over and over again in my life.
And that is why I succeed."
-- Michael Jordan
--------------------------------------------------------------------

(You need to be a member of code-comp -- send a blank email to code-comp-subscribe@yahoogroups.com )
Type casting - Harsha H M - Apr 7 8:43:00 2005
Hi All
can any one pls tell me, that "type casting" is an over head in the CCS ???
specifically in CCS 3.0.
Regards
Harsha

(You need to be a member of code-comp -- send a blank email to code-comp-subscribe@yahoogroups.com )
Re: Type casting - Shrikanth Chandrashekar - Apr 8 0:37:00 2005
Harsha-
I suppose, with max. optimisation enabled, most casts
can be efficiently translated to low-level mnemonics.
(using reg_Lo,reg_hi, Mem_lo, mem_hi operations.)
The compiler should be able to do this for most
fixed-pt operations. (both 16 & 32bit). So, the
overhead (if at all present )as such would be minimal.
I am unsure about this in case of
a. floating pt operations &
b. when casts bigger than that of word-length of the
machine are handled.
regards,
Shrikanth
--- Harsha H M <harshahm@hars...> wrote:
---------------------------------
Hi All
can any one pls tell me, that "type casting" is an
over head in the CCS ???
specifically in CCS 3.0.
Regards
Harsha
To
__________________________________

(You need to be a member of code-comp -- send a blank email to code-comp-subscribe@yahoogroups.com )
RE: Type casting - Bell Mark ST-VS/ENG6 - Apr 27 9:30:00 2005
Harsha --
I tried a simple experiment by declaring three variables
unsigned int uint32;
unsigned int uint32_1;
unsigned char uchar;
I then looked at the assembly code for the following statements:
1) uint32 = (unsigned int)uchar -- char to 32 bit int
2) uint32 = uint32_1; -- 32 bit int to 32 bit int
Both generate 7 assembly instructions
MVK and MVKH to load the source into a register
1) generated a LDBU instruction (load byte)
2) generated a LDW instruction (load word)
Then, both generated a NOP, and a MVK and MVKH to load the destination into a register.
Finally, both generated a STW instruction.
I also tried
3) uint32 = uchar -- no explicit type conversion.
The results were identica as for 1).
Hope this helps !!
-----Original Message-----
From: Harsha H M [mailto:harshahm@hars...]
Sent: Thursday, April 07, 2005 8:43 AM
To: code-comp@code...
Subject: [code-comp] Type casting
Hi All
can any one pls tell me, that "type casting" is an over head in the CCS ???
specifically in CCS 3.0.
Regards
Harsha

(You need to be a member of code-comp -- send a blank email to code-comp-subscribe@yahoogroups.com )