codes/2 functor (used by format).

This commit is contained in:
Vitor Santos Costa 2010-07-19 14:48:42 +01:00
parent 5347581f84
commit 6ebc31f2d8
4 changed files with 10 additions and 0 deletions

View File

@ -48,6 +48,7 @@
AtomCleanCall = Yap_FullLookupAtom("$clean_call"); AtomCleanCall = Yap_FullLookupAtom("$clean_call");
AtomColomn = Yap_LookupAtom(":"); AtomColomn = Yap_LookupAtom(":");
AtomCodeSpace = Yap_LookupAtom("code_space"); AtomCodeSpace = Yap_LookupAtom("code_space");
AtomCodes = Yap_LookupAtom("codes");
AtomComma = Yap_LookupAtom(","); AtomComma = Yap_LookupAtom(",");
AtomCompound = Yap_LookupAtom("compound"); AtomCompound = Yap_LookupAtom("compound");
AtomConsistencyError = Yap_LookupAtom("consistency_error"); AtomConsistencyError = Yap_LookupAtom("consistency_error");
@ -326,6 +327,7 @@
FunctorChangeModule = Yap_MkFunctor(AtomChangeModule,1); FunctorChangeModule = Yap_MkFunctor(AtomChangeModule,1);
FunctorCleanCall = Yap_MkFunctor(AtomCleanCall,2); FunctorCleanCall = Yap_MkFunctor(AtomCleanCall,2);
FunctorClist = Yap_MkFunctor(AtomWhen,4); FunctorClist = Yap_MkFunctor(AtomWhen,4);
FunctorCodes = Yap_MkFunctor(AtomCodes,2);
FunctorComma = Yap_MkFunctor(AtomComma,2); FunctorComma = Yap_MkFunctor(AtomComma,2);
FunctorContext2 = Yap_MkFunctor(AtomContext,2); FunctorContext2 = Yap_MkFunctor(AtomContext,2);
FunctorConsistencyError = Yap_MkFunctor(AtomConsistencyError,1); FunctorConsistencyError = Yap_MkFunctor(AtomConsistencyError,1);

View File

@ -48,6 +48,7 @@
AtomCleanCall = AtomAdjust(AtomCleanCall); AtomCleanCall = AtomAdjust(AtomCleanCall);
AtomColomn = AtomAdjust(AtomColomn); AtomColomn = AtomAdjust(AtomColomn);
AtomCodeSpace = AtomAdjust(AtomCodeSpace); AtomCodeSpace = AtomAdjust(AtomCodeSpace);
AtomCodes = AtomAdjust(AtomCodes);
AtomComma = AtomAdjust(AtomComma); AtomComma = AtomAdjust(AtomComma);
AtomCompound = AtomAdjust(AtomCompound); AtomCompound = AtomAdjust(AtomCompound);
AtomConsistencyError = AtomAdjust(AtomConsistencyError); AtomConsistencyError = AtomAdjust(AtomConsistencyError);
@ -326,6 +327,7 @@
FunctorChangeModule = FuncAdjust(FunctorChangeModule); FunctorChangeModule = FuncAdjust(FunctorChangeModule);
FunctorCleanCall = FuncAdjust(FunctorCleanCall); FunctorCleanCall = FuncAdjust(FunctorCleanCall);
FunctorClist = FuncAdjust(FunctorClist); FunctorClist = FuncAdjust(FunctorClist);
FunctorCodes = FuncAdjust(FunctorCodes);
FunctorComma = FuncAdjust(FunctorComma); FunctorComma = FuncAdjust(FunctorComma);
FunctorContext2 = FuncAdjust(FunctorContext2); FunctorContext2 = FuncAdjust(FunctorContext2);
FunctorConsistencyError = FuncAdjust(FunctorConsistencyError); FunctorConsistencyError = FuncAdjust(FunctorConsistencyError);

View File

@ -94,6 +94,8 @@
#define AtomColomn Yap_heap_regs->AtomColomn_ #define AtomColomn Yap_heap_regs->AtomColomn_
Atom AtomCodeSpace_; Atom AtomCodeSpace_;
#define AtomCodeSpace Yap_heap_regs->AtomCodeSpace_ #define AtomCodeSpace Yap_heap_regs->AtomCodeSpace_
Atom AtomCodes_;
#define AtomCodes Yap_heap_regs->AtomCodes_
Atom AtomComma_; Atom AtomComma_;
#define AtomComma Yap_heap_regs->AtomComma_ #define AtomComma Yap_heap_regs->AtomComma_
Atom AtomCompound_; Atom AtomCompound_;
@ -650,6 +652,8 @@
#define FunctorCleanCall Yap_heap_regs->FunctorCleanCall_ #define FunctorCleanCall Yap_heap_regs->FunctorCleanCall_
Functor FunctorClist_; Functor FunctorClist_;
#define FunctorClist Yap_heap_regs->FunctorClist_ #define FunctorClist Yap_heap_regs->FunctorClist_
Functor FunctorCodes_;
#define FunctorCodes Yap_heap_regs->FunctorCodes_
Functor FunctorComma_; Functor FunctorComma_;
#define FunctorComma Yap_heap_regs->FunctorComma_ #define FunctorComma Yap_heap_regs->FunctorComma_
Functor FunctorContext2_; Functor FunctorContext2_;

View File

@ -53,6 +53,7 @@ A CharacterCode N "character_code"
A CleanCall F "$clean_call" A CleanCall F "$clean_call"
A Colomn N ":" A Colomn N ":"
A CodeSpace N "code_space" A CodeSpace N "code_space"
A Codes N "codes"
A Comma N "," A Comma N ","
A Compound N "compound" A Compound N "compound"
A ConsistencyError N "consistency_error" A ConsistencyError N "consistency_error"
@ -331,6 +332,7 @@ F Catch Catch 3
F ChangeModule ChangeModule 1 F ChangeModule ChangeModule 1
F CleanCall CleanCall 2 F CleanCall CleanCall 2
F Clist When 4 F Clist When 4
F Codes Codes 2
F Comma Comma 2 F Comma Comma 2
F Context2 Context 2 F Context2 Context 2
F ConsistencyError ConsistencyError 1 F ConsistencyError ConsistencyError 1