diff options
author | ronny | 2003-06-17 12:04:58 +0000 |
---|---|---|
committer | ronny | 2003-06-17 12:04:58 +0000 |
commit | 6723122f5b1398471e741b28347fda8c9b1ee3a8 (patch) | |
tree | 6a56b92d6d771c0fa27944536b62e7feff74bba0 | |
parent | fixed bug with field indexes in StdGeneric (diff) |
removed unused functions
updated version (necessary because previous commit introduced incompatibilities)
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1348 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
-rw-r--r-- | backendC/CleanCompilerSources/backend.c | 94 | ||||
-rw-r--r-- | backendC/CleanCompilerSources/backend.h | 31 |
2 files changed, 37 insertions, 88 deletions
diff --git a/backendC/CleanCompilerSources/backend.c b/backendC/CleanCompilerSources/backend.c index 6491ce2..475aa18 100644 --- a/backendC/CleanCompilerSources/backend.c +++ b/backendC/CleanCompilerSources/backend.c @@ -2733,7 +2733,7 @@ BENoTypeVars (void) } /* BENoTypeVars */ BEFlatTypeP -BEFlatTypeX (BESymbolP symbol, BEAttribution attribution, BETypeVarListP arguments) +BEFlatType (BESymbolP symbol, BETypeVarListP arguments) { FlatType flatType; int i; @@ -2749,15 +2749,9 @@ BEFlatTypeX (BESymbolP symbol, BEAttribution attribution, BETypeVarListP argumen flatType->ft_cons_vars = NULL; /* used in PrintType */ - flatType->ft_attribute = (AttributeKind) attribution;; + flatType->ft_attribute = NoUniAttr; return (flatType); -} /* BEFlatTypeX */ - -BEFlatTypeP -BEFlatType (BESymbolP symbol, BETypeVarListP arguments) -{ - return BEFlatTypeX (symbol,NoUniAttr,arguments); } /* BEFlatType */ void @@ -2802,7 +2796,7 @@ BEAlgebraicType (BEFlatTypeP lhs, BEConstructorListP constructors) } /* BEAlgebraicType */ void -BERecordTypeX (int moduleIndex, BEFlatTypeP lhs, BETypeNodeP constructorType, int is_boxed_record, BEFieldListP fields) +BERecordType (int moduleIndex, BEFlatTypeP lhs, BETypeNodeP constructorType, BEFieldListP fields) { int nFields; Types type; @@ -2849,7 +2843,7 @@ BERecordTypeX (int moduleIndex, BEFlatTypeP lhs, BETypeNodeP constructorType, in sdef->sdef_type = type; sdef->sdef_arity = constructorType->type_node_arity; - sdef->sdef_boxed_record = is_boxed_record; + sdef->sdef_boxed_record = FALSE; // +++ change this { @@ -2868,12 +2862,6 @@ BERecordTypeX (int moduleIndex, BEFlatTypeP lhs, BETypeNodeP constructorType, in } /* BERecordType */ void -BERecordType (int moduleIndex, BEFlatTypeP lhs, BETypeNodeP constructorType, BEFieldListP fields) -{ - BERecordTypeX (moduleIndex,lhs,constructorType,0,fields); -} - -void BEAbsType (BEFlatTypeP lhs) { AbsTypes absType; @@ -3301,7 +3289,7 @@ BEGenerateCode (CleanString outputFile) } /* BEGenerateCode */ void -BEExportType (int dclTypeIndex, int iclTypeIndex) +BEExportType (int isDictionary, int typeIndex) { BEModuleP dclModule, iclModule; SymbolP typeSymbol; @@ -3309,8 +3297,8 @@ BEExportType (int dclTypeIndex, int iclTypeIndex) iclModule = &gBEState.be_modules [main_dcl_module_n]; - Assert ((unsigned int) iclTypeIndex < iclModule->bem_nTypes); - typeSymbol = iclModule->bem_types [iclTypeIndex]; + Assert ((unsigned int) typeIndex < iclModule->bem_nTypes); + typeSymbol = iclModule->bem_types [typeIndex]; Assert (typeSymbol->symb_kind == definition); iclDef = typeSymbol->symb_def; @@ -3318,13 +3306,12 @@ BEExportType (int dclTypeIndex, int iclTypeIndex) dclModule = &gBEState.be_icl.beicl_dcl_module; - /* +++ remove -1 hack */ - if (dclTypeIndex == -1) + if (isDictionary) dclDef = iclDef; else { - Assert ((unsigned int) dclTypeIndex < dclModule->bem_nTypes); - typeSymbol = dclModule->bem_types [dclTypeIndex]; + Assert ((unsigned int) typeIndex < dclModule->bem_nTypes); + typeSymbol = dclModule->bem_types [typeIndex]; Assert (typeSymbol->symb_kind == definition); dclDef = typeSymbol->symb_def; } @@ -3337,50 +3324,22 @@ BEExportType (int dclTypeIndex, int iclTypeIndex) } /* BEExportType */ void -BESwapTypes (int frm, int to) +BEExportConstructor (int constructorIndex) { - BEModuleP module; - SymbolP save; - - module = &gBEState.be_modules [main_dcl_module_n]; - - Assert ((unsigned int) frm < module->bem_nTypes); - Assert ((unsigned int) to < module->bem_nTypes); - - save = module->bem_types [frm]; - module->bem_types [frm] = module->bem_types [to]; - module->bem_types [to] = save; -} /* BESwapTypes */ - -void -BEExportConstructor (int dclConstructorIndex, int iclConstructorIndex) -{ - BEModuleP dclModule, iclModule; + BEModuleP iclModule; SymbolP constructorSymbol; SymbDefP iclDef, dclDef; iclModule = &gBEState.be_modules [main_dcl_module_n]; - Assert ((unsigned int) iclConstructorIndex < iclModule->bem_nConstructors); - constructorSymbol = iclModule->bem_constructors [iclConstructorIndex]; + Assert ((unsigned int) constructorIndex < iclModule->bem_nConstructors); + constructorSymbol = iclModule->bem_constructors [constructorIndex]; Assert (constructorSymbol->symb_kind == definition); iclDef = constructorSymbol->symb_def; iclDef->sdef_exported = True; - if (0) - { - dclModule = &gBEState.be_icl.beicl_dcl_module; - - Assert ((unsigned int) dclConstructorIndex < dclModule->bem_nConstructors); - constructorSymbol = dclModule->bem_constructors [dclConstructorIndex]; - Assert (constructorSymbol->symb_kind == definition); - dclDef = constructorSymbol->symb_def; - - Assert (strcmp (iclDef->sdef_ident->ident_name, dclDef->sdef_ident->ident_name) == 0); - } - else - dclDef = iclDef; + dclDef = iclDef; iclDef->sdef_dcl_icl = dclDef; dclDef->sdef_dcl_icl = iclDef; @@ -3389,7 +3348,7 @@ BEExportConstructor (int dclConstructorIndex, int iclConstructorIndex) } /* BEExportConstructor */ void -BEExportField (int dclFieldIndex, int iclFieldIndex) +BEExportField (int isDictionaryField, int fieldIndex) { BEModuleP dclModule, iclModule; SymbolP fieldSymbol; @@ -3397,22 +3356,21 @@ BEExportField (int dclFieldIndex, int iclFieldIndex) iclModule = &gBEState.be_modules [main_dcl_module_n]; - Assert ((unsigned int) iclFieldIndex < iclModule->bem_nFields); - fieldSymbol = &iclModule->bem_fields [iclFieldIndex]; + Assert ((unsigned int) fieldIndex < iclModule->bem_nFields); + fieldSymbol = &iclModule->bem_fields [fieldIndex]; Assert (fieldSymbol->symb_kind == definition); iclDef = fieldSymbol->symb_def; iclDef->sdef_exported = True; - /* +++ remove -1 hack */ - if (dclFieldIndex == -1) + if (isDictionaryField) dclDef = iclDef; else { dclModule = &gBEState.be_icl.beicl_dcl_module; - Assert ((unsigned int) dclFieldIndex < dclModule->bem_nFields); - fieldSymbol = &dclModule->bem_fields [dclFieldIndex]; + Assert ((unsigned int) fieldIndex < dclModule->bem_nFields); + fieldSymbol = &dclModule->bem_fields [fieldIndex]; Assert (fieldSymbol->symb_kind == definition); dclDef = fieldSymbol->symb_def; } @@ -3426,7 +3384,7 @@ BEExportField (int dclFieldIndex, int iclFieldIndex) } /* BEExportField */ void -BEExportFunction (int dclFunctionIndex, int iclFunctionIndex) +BEExportFunction (int functionIndex) { BEModuleP dclModule, iclModule; SymbolP functionSymbol; @@ -3434,8 +3392,8 @@ BEExportFunction (int dclFunctionIndex, int iclFunctionIndex) iclModule = &gBEState.be_modules [main_dcl_module_n]; - Assert ((unsigned int) iclFunctionIndex < iclModule->bem_nFunctions); - functionSymbol = &iclModule->bem_functions [iclFunctionIndex]; + Assert ((unsigned int) functionIndex < iclModule->bem_nFunctions); + functionSymbol = &iclModule->bem_functions [functionIndex]; Assert (functionSymbol->symb_kind == definition); iclDef = functionSymbol->symb_def; @@ -3443,8 +3401,8 @@ BEExportFunction (int dclFunctionIndex, int iclFunctionIndex) dclModule = &gBEState.be_icl.beicl_dcl_module; - Assert ((unsigned int) dclFunctionIndex < dclModule->bem_nFunctions); - functionSymbol = &dclModule->bem_functions [dclFunctionIndex]; + Assert ((unsigned int) functionIndex < dclModule->bem_nFunctions); + functionSymbol = &dclModule->bem_functions [functionIndex]; Assert (functionSymbol->symb_kind == definition); dclDef = functionSymbol->symb_def; diff --git a/backendC/CleanCompilerSources/backend.h b/backendC/CleanCompilerSources/backend.h index 6971c7d..ed839e9 100644 --- a/backendC/CleanCompilerSources/backend.h +++ b/backendC/CleanCompilerSources/backend.h @@ -1,15 +1,15 @@ /* version info */ // increment this for every release -# define kBEVersionCurrent 0x02010801 +# define kBEVersionCurrent 0x02030407 // change this to the same value as kBEVersionCurrent if the new release is // not upward compatible (for example when a function is added) -# define kBEVersionOldestDefinition 0x02000213 +# define kBEVersionOldestDefinition 0x02030407 // change this to the same value as kBEVersionCurrent if the new release is // not downward compatible (for example when a function is removed) -# define kBEVersionOldestImplementation 0x02010801 +# define kBEVersionOldestImplementation 0x02030407 # define kBEDebug 1 @@ -430,18 +430,12 @@ Clean (BENoTypes :: BackEnd -> (BETypeP, BackEnd)) BEFlatTypeP BEFlatType (BESymbolP symbol, BETypeVarListP arguments); Clean (BEFlatType :: BESymbolP BETypeVarListP BackEnd -> (BEFlatTypeP, BackEnd)) -BEFlatTypeP BEFlatTypeX (BESymbolP symbol, BEAttribution attribution, BETypeVarListP arguments); -Clean (BEFlatTypeX :: BESymbolP BEAttribution BETypeVarListP BackEnd -> (BEFlatTypeP, BackEnd)) - void BEAlgebraicType (BEFlatTypeP lhs, BEConstructorListP constructors); Clean (BEAlgebraicType:: BEFlatTypeP BEConstructorListP BackEnd -> BackEnd) void BERecordType (int moduleIndex, BEFlatTypeP lhs, BETypeNodeP constructorType, BEFieldListP fields); Clean (BERecordType :: Int BEFlatTypeP BETypeNodeP BEFieldListP BackEnd -> BackEnd) -void BERecordTypeX (int moduleIndex, BEFlatTypeP lhs, BETypeNodeP constructorType, int is_boxed_record, BEFieldListP fields); -Clean (BERecordTypeX :: Int BEFlatTypeP BETypeNodeP Int BEFieldListP BackEnd -> BackEnd) - void BEAbsType (BEFlatTypeP lhs); Clean (BEAbsType :: BEFlatTypeP BackEnd -> BackEnd) @@ -529,20 +523,17 @@ Clean (BEDefineRules :: BEImpRuleP BackEnd -> BackEnd) int BEGenerateCode (CleanString outputFile); Clean (BEGenerateCode :: String BackEnd -> (Bool, BackEnd)) -void BEExportType (int dclTypeIndex, int iclTypeIndex); -Clean (BEExportType :: Int Int BackEnd -> BackEnd) - -void BESwapTypes (int frm, int to); -Clean (BESwapTypes :: Int Int BackEnd -> BackEnd) +void BEExportType (int isDictionary, int typeIndex); +Clean (BEExportType :: Bool Int BackEnd -> BackEnd) -void BEExportConstructor (int dclConstructorIndex, int iclConstructorIndex); -Clean (BEExportConstructor :: Int Int BackEnd -> BackEnd) +void BEExportConstructor (int constructorIndex); +Clean (BEExportConstructor :: Int BackEnd -> BackEnd) -void BEExportField (int dclTypeIndex, int iclTypeIndex); -Clean (BEExportField :: Int Int BackEnd -> BackEnd) +void BEExportField (int isDictionaryField, int fieldIndex); +Clean (BEExportField :: Bool Int BackEnd -> BackEnd) -void BEExportFunction (int dclFunctionIndex, int iclFunctionIndex); -Clean (BEExportFunction :: Int Int BackEnd -> BackEnd) +void BEExportFunction (int functionIndex); +Clean (BEExportFunction :: Int BackEnd -> BackEnd) void BEDefineImportedObjsAndLibs (BEStringListP objs, BEStringListP libs); Clean (BEDefineImportedObjsAndLibs :: BEStringListP BEStringListP BackEnd -> BackEnd) |