]> git.sur5r.net Git - cc65/blobdiff - src/ca65/filetab.c
Reverted r5835 because of Olivers changes to the asm includes.
[cc65] / src / ca65 / filetab.c
index bcc51ad650e1da35469b77afe046c61f96fa100a..82e20ee70ecf1576123fb31a06d34cde673e4264 100644 (file)
@@ -6,8 +6,8 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000-2003 Ullrich von Bassewitz                                       */
-/*               Römerstrasse 52                                             */
+/* (C) 2000-2008 Ullrich von Bassewitz                                       */
+/*               Roemerstrasse 52                                            */
 /*               D-70794 Filderstadt                                         */
 /* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
@@ -33,7 +33,9 @@
 
 
 
+#include <stdio.h>
 #include <string.h>
+#include <errno.h>
 
 /* common */
 #include "check.h"
@@ -44,6 +46,7 @@
 /* ca65 */
 #include "error.h"
 #include "filetab.h"
+#include "global.h"
 #include "objfile.h"
 #include "spool.h"
 
 
 
 
-static unsigned GenHash (const void* Index);
-/* Generate the hash over an index. */
+static unsigned HT_GenHash (const void* Key);
+/* Generate the hash over a key. */
 
-static const void* GetIndex (void* Entry);
-/* Given a pointer to the user entry data, return a pointer to the index */
-
-static HashNode* GetHashNode (void* Entry);
-/* Given a pointer to the user entry data, return a pointer to the hash node */
+static const void* HT_GetKey (const void* Entry);
+/* Given a pointer to the user entry data, return a pointer to the key. */
 
-static int Compare (const void* Index1, const void* Index2);
-/* Compare two indices for equality */
+static int HT_Compare (const void* Key1, const void* Key2);
+/* Compare two keys. The function must return a value less than zero if
+ * Key1 is smaller than Key2, zero if both are equal, and a value greater
+ * than zero if Key1 is greater then Key2.
+ */
 
 
 
@@ -84,7 +87,8 @@ typedef struct FileEntry FileEntry;
 struct FileEntry {
     HashNode            Node;
     unsigned            Name;           /* File name */
-    unsigned           Index;          /* Index of entry */
+    unsigned           Index;          /* Index of entry */
+    FileType            Type;           /* Type of file */
     unsigned long      Size;           /* Size of file */
     unsigned long      MTime;          /* Time of last modification */
 };
@@ -94,10 +98,9 @@ static Collection FileTab = STATIC_COLLECTION_INITIALIZER;
 
 /* Hash table functions */
 static const HashFunctions HashFunc = {
-    GenHash,
-    GetIndex,
-    GetHashNode,
-    Compare
+    HT_GenHash,
+    HT_GetKey,
+    HT_Compare
 };
 
 /* Hash table, hashed by name */
@@ -111,15 +114,15 @@ static HashTable HashTab = STATIC_HASHTABLE_INITIALIZER (HASHTAB_COUNT, &HashFun
 
 
 
-static unsigned GenHash (const void* Index)
-/* Generate the hash over an index. */
+static unsigned HT_GenHash (const void* Key)
+/* Generate the hash over a key. */
 {
-    return (*(const unsigned*)Index & HASHTAB_MASK);
+    return (*(const unsigned*)Key & HASHTAB_MASK);
 }
 
 
 
-static const void* GetIndex (void* Entry)
+static const void* HT_GetKey (const void* Entry)
 /* Given a pointer to the user entry data, return a pointer to the index */
 {
     return &((FileEntry*) Entry)->Name;
@@ -127,18 +130,13 @@ static const void* GetIndex (void* Entry)
 
 
 
-static HashNode* GetHashNode (void* Entry)
-/* Given a pointer to the user entry data, return a pointer to the hash node */
-{
-    return &((FileEntry*) Entry)->Node;
-}
-
-
-
-static int Compare (const void* Index1, const void* Index2)
-/* Compare two indices for equality */
+static int HT_Compare (const void* Key1, const void* Key2)
+/* Compare two keys. The function must return a value less than zero if
+ * Key1 is smaller than Key2, zero if both are equal, and a value greater
+ * than zero if Key1 is greater then Key2.
+ */
 {
-    return (*(const unsigned*)Index1 == *(const unsigned*)Index2);
+    return (int)*(const unsigned*)Key1 - (int)*(const unsigned*)Key2;
 }
 
 
@@ -149,16 +147,18 @@ static int Compare (const void* Index1, const void* Index2)
 
 
 
-static FileEntry* NewFileEntry (unsigned Name, unsigned long Size, unsigned long MTime)
+static FileEntry* NewFileEntry (unsigned Name, FileType Type,
+                                unsigned long Size, unsigned long MTime)
 /* Create a new FileEntry, insert it into the tables and return it */
 {
     /* Allocate memory for the entry */
     FileEntry* F = xmalloc (sizeof (FileEntry));
 
     /* Initialize the fields */
-    InitHashNode (&F->Node, F);
+    InitHashNode (&F->Node);
     F->Name     = Name;
     F->Index   = CollCount (&FileTab) + 1;     /* First file has index #1 */
+    F->Type     = Type;
     F->Size    = Size;
     F->MTime   = MTime;
 
@@ -166,7 +166,7 @@ static FileEntry* NewFileEntry (unsigned Name, unsigned long Size, unsigned long
     CollAppend (&FileTab, F);
 
     /* Insert the entry into the hash table */
-    HT_Insert (&HashTab, &F->Node);
+    HT_Insert (&HashTab, F);
 
     /* Return the new entry */
     return F;
@@ -174,9 +174,11 @@ static FileEntry* NewFileEntry (unsigned Name, unsigned long Size, unsigned long
 
 
 
-const char* GetFileName (unsigned Name)
+const StrBuf* GetFileName (unsigned Name)
 /* Get the name of a file where the name index is known */
 {
+    static const StrBuf ErrorMsg = LIT_STRBUF_INITIALIZER ("(outside file scope)");
+
     const FileEntry* F;
 
     if (Name == 0) {
@@ -186,30 +188,30 @@ const char* GetFileName (unsigned Name)
         */
        if (CollCount (&FileTab) == 0) {
            /* No files defined until now */
-                   return "(outside file scope)";
+            return &ErrorMsg;
        } else {
             F = CollConstAt (&FileTab, 0);
        }
     } else {
         F = CollConstAt (&FileTab, Name-1);
     }
-    return GetString (F->Name);
+    return GetStrBuf (F->Name);
 }
 
 
 
-unsigned GetFileIndex (const char* Name)
+unsigned GetFileIndex (const StrBuf* Name)
 /* Return the file index for the given file name. */
 {
     /* Get the string pool index from the name */
-    unsigned NameIdx = GetStringId (Name);
+    unsigned NameIdx = GetStrBufId (Name);
 
     /* Search in the hash table for the name */
-    FileEntry* F = HT_FindEntry (&HashTab, &NameIdx);
+    const FileEntry* F = HT_Find (&HashTab, &NameIdx);
 
     /* If we don't have this index, print a diagnostic and use the main file */
     if (F == 0) {
-        Error (ERR_FILENAME_NOT_FOUND, Name);
+        Error ("File name `%m%p' not found in file table", Name);
         return 0;
     } else {
         return F->Index;
@@ -218,13 +220,14 @@ unsigned GetFileIndex (const char* Name)
 
 
 
-unsigned AddFile (const char* Name, unsigned long Size, unsigned long MTime)
+unsigned AddFile (const StrBuf* Name, FileType Type,
+                  unsigned long Size, unsigned long MTime)
 /* Add a new file to the list of input files. Return the index of the file in
  * the table.
  */
 {
     /* Create a new file entry and insert it into the tables */
-    FileEntry* F = NewFileEntry (GetStringId (Name), Size, MTime);
+    FileEntry* F = NewFileEntry (GetStrBufId (Name), Type, Size, MTime);
 
     /* Return the index */
     return F->Index;
@@ -250,7 +253,7 @@ void WriteFiles (void)
        /* Write the fields */
        ObjWriteVar (F->Name);
        ObjWrite32 (F->MTime);
-       ObjWrite32 (F->Size);
+               ObjWriteVar (F->Size);
     }
 
     /* Done writing files */
@@ -259,3 +262,79 @@ void WriteFiles (void)
 
 
 
+static void WriteDep (FILE* F, FileType Types)
+/* Helper function. Writes all file names that match Types to the output */
+{
+    unsigned I;
+
+    /* Loop over all files */
+    for (I = 0; I < CollCount (&FileTab); ++I) {
+
+        const StrBuf* Filename;
+
+       /* Get the next input file */
+               const FileEntry* E = (const FileEntry*) CollAt (&FileTab, I);
+
+        /* Ignore it if it is not of the correct type */
+        if ((E->Type & Types) == 0) {
+            continue;
+        }
+
+       /* If this is not the first file, add a space */
+               if (I > 0) {
+            fputc (' ', F);
+        }
+
+       /* Print the dependency */
+        Filename = GetStrBuf (E->Name);
+        fprintf (F, "%*s", SB_GetLen (Filename), SB_GetConstBuf (Filename));
+    }
+}
+
+
+
+static void CreateDepFile (const char* Name, FileType Types)
+/* Create a dependency file with the given name and place dependencies for
+ * all files with the given types there.
+ */
+{
+    /* Open the file */
+    FILE* F = fopen (Name, "w");
+    if (F == 0) {
+       Fatal ("Cannot open dependency file `%s': %s", Name, strerror (errno));
+    }
+
+    /* Print the output file followed by a tab char */
+    fprintf (F, "%s:\t", OutFile);
+
+    /* Write out the dependencies for the output file */
+    WriteDep (F, Types);
+    fputs ("\n\n", F);
+
+    /* Write out a phony dependency for the included files */
+    WriteDep (F, Types);
+    fputs (":\n\n", F);
+
+    /* Close the file, check for errors */
+    if (fclose (F) != 0) {
+       remove (Name);
+       Fatal ("Cannot write to dependeny file (disk full?)");
+    }
+}
+
+
+
+void CreateDependencies (void)
+/* Create dependency files requested by the user */
+{
+    if (SB_NotEmpty (&DepName)) {
+        CreateDepFile (SB_GetConstBuf (&DepName),
+                       FT_MAIN | FT_INCLUDE | FT_BINARY);
+    }
+    if (SB_NotEmpty (&FullDepName)) {
+        CreateDepFile (SB_GetConstBuf (&FullDepName),
+                       FT_MAIN | FT_INCLUDE | FT_BINARY | FT_DBGINFO);
+    }
+}
+
+