π
<-

Bientôt un compilateur C en ligne pour TI-83 Prem CE / 84+CE

Nouveautés, projets, mises à jour.

Re: Bientôt un compilateur C en ligne pour TI-83 Prem CE / 8

Unread postby elfprince13 » 01 Feb 2016, 17:08

(sorry for the English...)

It appears that the LinkCmd used by Project Builder does not correctly define the top of the heap -

I was testing a new "safeMalloc" routine to help diagnose the errors we came across in my scanline renderer, and found it was impossible to trigger the error condition (system malloc returning null). Mateo was able to compile offline and found that everything worked as expected on his system.

Code: Select all
void* safeMalloc(size_t bytes){
    void *const mem = malloc(bytes);
    if(!mem){
        _OS(cleanUp() );
        asm("LD A,E_Memory");
        asm("LD (errNo),A");
        asm("JP _JErrorNo");
    }
    return mem;
}


elsewhere:
Code: Select all
uint8_t *j = safeMalloc(700000);
        if(!j) print("GOT NULL",0,0);
        else print("HUGE MALLOC",0,0);
        _OS(GetKey());
User avatar
elfprince13
Niveau 0: MI (Membre Inactif)
Niveau 0: MI (Membre Inactif)
Level up: 80%
 
Posts: 2
Joined: 25 Jan 2016, 21:15
Location: New England
Gender: Not specified
Calculator(s):
MyCalcs profile

Re: Bientôt un compilateur C en ligne pour TI-83 Prem CE / 8

Unread postby Lionel Debroux » 01 Feb 2016, 17:33

English-only speakers are no issue here :)
Adriweb's pretty busy, I'll try to have a look at the definition of the top of the heap tonight.
Membre de la TI-Chess Team.
Co-mainteneur de GCC4TI (documentation en ligne de GCC4TI), TIEmu et TILP.
User avatar
Lionel DebrouxSuper Modo
Niveau 14: CI (Calculateur de l'Infini)
Niveau 14: CI (Calculateur de l'Infini)
Level up: 11.3%
 
Posts: 6863
Joined: 23 Dec 2009, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Class: -
GitHub: debrouxl

Re: Bientôt un compilateur C en ligne pour TI-83 Prem CE / 8

Unread postby Lionel Debroux » 01 Feb 2016, 20:12

AFAICS, the LinkCmd file on the server matches the latest version in the CE-Programming/toolchain repository, as it should, given that Adriweb integrated the latest version of the toolchain several days ago.

Code: Select all
range bss $D031F6 : $D13FD6

define __low_bss = base of bss
define __len_bss = length of bss

define __heaptop = (highaddr of bss)
define __heapbot = (top of bss)+1


If the heap grows up, and bottom of the heap ends up being higher than the top of the heap, then there can be, uh, issues... but that shouldn't occur here, right ?
Membre de la TI-Chess Team.
Co-mainteneur de GCC4TI (documentation en ligne de GCC4TI), TIEmu et TILP.
User avatar
Lionel DebrouxSuper Modo
Niveau 14: CI (Calculateur de l'Infini)
Niveau 14: CI (Calculateur de l'Infini)
Level up: 11.3%
 
Posts: 6863
Joined: 23 Dec 2009, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Class: -
GitHub: debrouxl

Re: Bientôt un compilateur C en ligne pour TI-83 Prem CE / 8

Unread postby elfprince13 » 01 Feb 2016, 20:48

I officially have no idea what's going on here. This morning I was seeing the "HUGE MALLOC" codepath, and no error message. This afternoon I recompiled and got the expected results, and thought "How nice, Lionel already fixed the LinkCmd". I don't know why this would be.
User avatar
elfprince13
Niveau 0: MI (Membre Inactif)
Niveau 0: MI (Membre Inactif)
Level up: 80%
 
Posts: 2
Joined: 25 Jan 2016, 21:15
Location: New England
Gender: Not specified
Calculator(s):
MyCalcs profile

Re: Bientôt un compilateur C en ligne pour TI-83 Prem CE / 8

Unread postby Adriweb » 02 Feb 2016, 00:53

No idea what happened... but if it's good now, Okay I guess?
Edit: You don't need the _OS wrapper on cleanUp() but you would need it before your JP to the error screen (or at least restore IY manually)

Anyway, I just updated the toolchain again with the appropriate changes from https://github.com/CE-Programming/toolc ... 8c046e4f33
(You should probably try again with that, elfprince13)

MyCalcs: Help the community's calculator documentations by filling out your calculators info!
MyCalcs: Aidez la communauté à documenter les calculatrices en donnant des infos sur vos calculatrices !
Inspired-Lua.org: All about TI-Nspire Lua programming (tutorials, wiki/docs...)
My calculator programs
Mes programmes pour calculatrices
User avatar
AdriwebAdmin
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 78.9%
 
Posts: 14737
Images: 1119
Joined: 01 Jun 2007, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Twitter: adriweb
GitHub: adriweb

Re: Bientôt un compilateur C en ligne pour TI-83 Prem CE / 8

Unread postby Ti64CLi++ » 13 Feb 2016, 10:38

Existe-t-il une liste des fonctions reconnus par le compilateur?
Si non, je pense que cela pourrait être pratique, ou alors intégrer un pseudo-catalogue des fonctions dans le compilateur lui-même, comme un peu Code::Blocks, lorsque l'on écrit le début d'un mot, il affiche automatiquement les fonctions qui commencent par ces caractères. Je sais, je dis ça mais c'est pas moi qui le fait, je sais, mais c'est juste pour donner une idée de ce qu'il faudrait améliorer ;)
Image
User avatar
Ti64CLi++Modo
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 32.5%
 
Posts: 3446
Images: 75
Joined: 04 Jul 2014, 14:40
Location: Clermont-Ferrand 63
Gender: Male
Calculator(s):
MyCalcs profile
Class: ENS Rennes
GitHub: Ti64CLi

Re: Bientôt un compilateur C en ligne pour TI-83 Prem CE / 8

Unread postby Lionel Debroux » 13 Feb 2016, 10:54

La complétion automatique est un grand classique dans les IDE, et fait donc partie de la wish list étendue, mais c'est moins prioritaire que d'autres choses :)
Membre de la TI-Chess Team.
Co-mainteneur de GCC4TI (documentation en ligne de GCC4TI), TIEmu et TILP.
User avatar
Lionel DebrouxSuper Modo
Niveau 14: CI (Calculateur de l'Infini)
Niveau 14: CI (Calculateur de l'Infini)
Level up: 11.3%
 
Posts: 6863
Joined: 23 Dec 2009, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Class: -
GitHub: debrouxl

Re: Bientôt un compilateur C en ligne pour TI-83 Prem CE / 8

Unread postby Ti64CLi++ » 13 Feb 2016, 10:57

Ok, je disais juste cela comme ça, au cas où. Mais puisque ce sera intégré... :)
Image
User avatar
Ti64CLi++Modo
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 32.5%
 
Posts: 3446
Images: 75
Joined: 04 Jul 2014, 14:40
Location: Clermont-Ferrand 63
Gender: Male
Calculator(s):
MyCalcs profile
Class: ENS Rennes
GitHub: Ti64CLi

Re: Bientôt un compilateur C en ligne pour TI-83 Prem CE / 8

Unread postby Lionel Debroux » 13 Feb 2016, 11:05

Pour l'instant, il faudrait surtout qu'on fasse la revue de code (ça, c'est partiellement à moi de la faire...), et quelques améliorations supplémentaires, pour publier le code. Mais Adriweb est totalement sur-booké, en partie à cause du temps qu'il a passé sur le PB, d'ailleurs :)

On a dit depuis le début qu'on publierait le code source, parce que c'est la seule façon de faire qui soit constructive pour la communauté, et c'est toujours le but visé, bien entendu. Aux chiottes le vendor lock-in de certains et leurs applications monolithiques et fermées.
Membre de la TI-Chess Team.
Co-mainteneur de GCC4TI (documentation en ligne de GCC4TI), TIEmu et TILP.
User avatar
Lionel DebrouxSuper Modo
Niveau 14: CI (Calculateur de l'Infini)
Niveau 14: CI (Calculateur de l'Infini)
Level up: 11.3%
 
Posts: 6863
Joined: 23 Dec 2009, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Class: -
GitHub: debrouxl

Re: Bientôt un compilateur C en ligne pour TI-83 Prem CE / 8

Unread postby Ti64CLi++ » 13 Feb 2016, 11:08

C'était quoi le PB?

Et aucun rapport mais c'est quoi la TI Chess Team?
Image
User avatar
Ti64CLi++Modo
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 32.5%
 
Posts: 3446
Images: 75
Joined: 04 Jul 2014, 14:40
Location: Clermont-Ferrand 63
Gender: Male
Calculator(s):
MyCalcs profile
Class: ENS Rennes
GitHub: Ti64CLi

PreviousNext

Return to Actualités

Who is online

Users browsing this forum: ClaudeBot [spider] and 4 guests

-
Search
-
Social TI-Planet
-
Featured topics
Comparaisons des meilleurs prix pour acheter sa calculatrice !
"1 calculatrice pour tous", le programme solidaire de Texas Instruments. Reçois gratuitement et sans aucune obligation d'achat, 5 calculatrices couleur programmables en Python à donner aux élèves les plus nécessiteux de ton lycée. Tu peux recevoir au choix 5 TI-82 Advanced Edition Python ou bien 5 TI-83 Premium CE Edition Python.
Enseignant(e), reçois gratuitement 1 exemplaire de test de la TI-82 Advanced Edition Python. À demander d'ici le 31 décembre 2024.
Aidez la communauté à documenter les révisions matérielles en listant vos calculatrices graphiques !
1234
-
Donations / Premium
For more contests, prizes, reviews, helping us pay the server and domains...
Donate
Discover the the advantages of a donor account !
JoinRejoignez the donors and/or premium!les donateurs et/ou premium !


Partner and ad
Notre partenaire Jarrety Calculatrices à acheter chez Calcuso
-
Stats.
684 utilisateurs:
>649 invités
>26 membres
>9 robots
Record simultané (sur 6 mois):
6892 utilisateurs (le 07/06/2017)
-
Other interesting websites
Texas Instruments Education
Global | France
 (English / Français)
Banque de programmes TI
ticalc.org
 (English)
La communauté TI-82
tout82.free.fr
 (Français)