scopeStack.h
Description du code
scopeStack.h est un fichier du projet Compilateur LSD010.Ce fichier est situé dans /var/www/bin/sniplets/lsd010/.
Projet Compilateur LSD010 :
Compilateur LSD010 développé dans le cadre du cours de syntaxe et sémantiqueref 1
Code source ou contenu du fichier
Code c (scopeStack.h) (65 lignes)
/* * scopeStack.h : Exposed items to manage a stack of scopes * for a declaration symbol and his re-declarations * Part of the compiler project for LSD10 language * Gaudry Stéphane * More information on http://www.gaudry.be/langages-lex-yacc-intro.html * ********************************************************** */ #ifndef SCOPE_STACK_H #define SCOPE_STACK_H #include "common.h" /** * Stack of scopes for a declaration symbol and his re-declarations * @todo: This exposes the internal data representations, must be hidden */ typedef struct ScopeStackStruct { /** * AST node of the variable or function declaration */ struct astNode *declarationNode; VariableUsage usage; struct astNode *functionNode; struct ScopeStackStruct *parentPtr; }ScopeStack; /** * Builds a scope stack instance */ ScopeStack *createScopeStack(); /** * Free resources of the scope stack */ void finalizeScopeStack(ScopeStack **scopeStack); /** * Adds an inner scope into the stack (enter into a new subscope from the current scope) * @param scopeStack current scope where the new scope is defined * @param scopeId id of the subscope * @param declarationNode declaration of the symbol for this scope * * Pre-condition: scopeStack argument not null */ void pushScopesStack(ScopeStack **scopeStack, int scopeId, AstNode *declarationNode); /** * Removes a scope from the stack (exit a scope and return to the parent scope) * @param scopeStack current scope to remove (this pointer will address the parent scope after) * @returns current declaration node from the AST * Pre-condition: scopeStack argument not null */ AstNode *popScopeStack(ScopeStack **scopeStack); /** * Sets scopeDepth for a given ScopeStack item (Not for all of the stack) * @param scopeStack ScopeStack where to set the depth * @param scopeDepth depth value to set * Pre-condition: scopeStack argument not null */ void setScopesStackDepth(ScopeStack *scopeStack, int scopeDepth); /** * Returns the depth of a scopeStack, or ERROR_INT on error * @param scopeStack ScopeStack where to find the depth */ int getScopeDepth(ScopeStack *scopeStack); #endif
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Pas de sous-répertoires. | |||
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1732215243 21/11/2024 19:54:03 |
Warnung
Ce code présente une manière possible d'implémenter un compilateur, et certains choix peuvent être discutés.Cependant, il peut donner des pistes pour démarrer, ou approcher certains concepts, et je tenterais par la suite de mettre à jour le code.
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 07/03/2010, zuletzt geändert 28/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/langages-lsd10-source-rf-project/source//scopeStack.h.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
- ↑a,b LSD010 : Langage Simple et Didactique Il existe une un certain nombre d'interprétations de l'acronyme LSD (Langage Symbolique Didactique, Langage Sans Difficulté, Langage Simple et Didactique). LSD010 est la version 2010 de la suite LSD80, LSD_02, LSD03, LSD04, LSD05, LSD06, LSD07, LSD08, et LSD09.
Referenzen
- IHDCB332 - Théorie des langages : Syntaxe et sémantique : PY Schobbens,
Syntaxe et sémantique
(January 2010)
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.