123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315 |
- #include "__run.h"
- ResultType setClass(INTER_FUNCTIONSIG) {
- Argument *call = NULL;
- LinkValue *tmp = NULL;
- Inherit *class_belong = NULL;
- VarList *belong_var = NULL;
- enum FunctionPtType pt_type_bak = inter->data.default_pt_type;
- setResultCore(result);
- call = getArgument(st->u.set_class.father, false, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- if (!run_continue(result))
- goto error_;
- class_belong = setFather(call);
- freeArgument(call, false);
- tmp = makeLinkValue(makeClassValue(copyVarList(var_list, false, inter), inter, class_belong), belong, inter);
- gc_addTmpLink(&tmp->gc_status);
- belong_var = tmp->value->object.var->next;
- tmp->value->object.var->next = var_list;
- freeResult(result);
- inter->data.default_pt_type = object_free_;
- functionSafeInterStatement(CALL_INTER_FUNCTIONSIG(st->u.set_class.st, tmp->value->object.var, result, tmp));
- inter->data.default_pt_type = pt_type_bak;
- tmp->value->object.var->next = belong_var;
- if (!run_continue(result))
- goto error_;
- freeResult(result);
- if (st->u.set_class.decoration != NULL){
- setDecoration(st->u.set_class.decoration, tmp, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- if (!run_continue(result))
- goto error_;
- gc_freeTmpLink(&tmp->gc_status);
- tmp = result->value;
- result->value = NULL;
- freeResult(result);
- }
- assCore(st->u.set_class.name, tmp, false, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- if (run_continue(result))
- setResult(result, inter, belong);
- gc_freeTmpLink(&tmp->gc_status);
- return result->type;
- error_:
- gc_freeTmpLink(&tmp->gc_status);
- setResultErrorSt(result, inter, NULL, NULL, st, belong, false);
- return result->type;
- }
- ResultType setFunction(INTER_FUNCTIONSIG) {
- LinkValue *tmp = NULL;
- Value *function_value = NULL;
- VarList *function_var = NULL;
- setResultCore(result);
- function_var = copyVarList(var_list, false, inter);
- function_value = makeVMFunctionValue(st->u.set_function.function, st->u.set_function.parameter, function_var, inter);
- tmp = makeLinkValue(function_value, belong, inter);
- gc_addTmpLink(&tmp->gc_status);
- if (st->u.set_function.decoration != NULL){
- setDecoration(st->u.set_function.decoration, tmp, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- if (!run_continue(result))
- goto error_;
- gc_freeTmpLink(&tmp->gc_status);
- tmp = result->value;
- result->value = NULL;
- freeResult(result);
- }
- assCore(st->u.set_function.name, tmp, false, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- if (!run_continue(result))
- goto error_;
- setResult(result, inter, belong);
- gc_freeTmpLink(&tmp->gc_status);
- return result->type;
- error_:
- gc_freeTmpLink(&tmp->gc_status);
- return result->type;
- }
- ResultType setLambda(INTER_FUNCTIONSIG) {
- Value *function_value = NULL;
- VarList *function_var = NULL;
- setResultCore(result);
- result->type = operation_return;
- function_var = copyVarList(var_list, false, inter);
- {
- Statement *resunt_st = makeReturnStatement(st->u.base_lambda.function, st->line, st->code_file);
- function_value = makeVMFunctionValue(resunt_st, st->u.base_lambda.parameter, function_var, inter);
- resunt_st->u.return_code.value = NULL;
- freeStatement(resunt_st);
- }
- result->value = makeLinkValue(function_value, belong, inter);
- gc_addTmpLink(&result->value->gc_status);
- return result->type;
- }
- ResultType elementSlice(INTER_FUNCTIONSIG) {
- LinkValue *element = NULL;
- LinkValue *_func_ = NULL;
- char *func_name = NULL;
- setResultCore(result);
- if (operationSafeInterStatement(CALL_INTER_FUNCTIONSIG(st->u.slice_.element, var_list, result, belong)))
- return result->type;
- element = result->value;
- result->value = NULL;
- freeResult(result);
- func_name = st->u.slice_.type == SliceType_down_ ? inter->data.object_down : inter->data.object_slice;
- _func_ = findAttributes(func_name, false, element, inter);
- if (_func_ != NULL){
- gc_addTmpLink(&_func_->gc_status);
- callBackCorePt(_func_, st->u.slice_.index, st->line, st->code_file, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- gc_freeTmpLink(&_func_->gc_status);
- }
- else
- setResultErrorSt(result, inter, "TypeException", "Don't find __down__/__slice__", st, belong, true);
- gc_freeTmpLink(&element->gc_status);
- return result->type;
- }
- ResultType callBack(INTER_FUNCTIONSIG) {
- LinkValue *function_value = NULL;
- setResultCore(result);
- if (operationSafeInterStatement(CALL_INTER_FUNCTIONSIG(st->u.call_function.function, var_list, result, belong)))
- return result->type;
- function_value = result->value;
- result->value = NULL;
- freeResult(result);
- callBackCorePt(function_value, st->u.call_function.parameter, st->line, st->code_file, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- gc_freeTmpLink(&function_value->gc_status);
- return result->type;
- }
- ResultType callBackCorePt(LinkValue *function_value, Parameter *pt, long line, char *file, INTER_FUNCTIONSIG_NOT_ST) {
- Argument *arg = NULL;
- setResultCore(result);
- gc_addTmpLink(&function_value->gc_status);
- arg = getArgument(pt, false, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- if (!run_continue(result))
- goto return_;
- freeResult(result);
- callBackCore(function_value, arg, line, file, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- return_:
- gc_freeTmpLink(&function_value->gc_status);
- freeArgument(arg, false);
- return result->type;
- }
- ResultType callBackCore(LinkValue *function_value, Argument *arg, long line, char *file, INTER_FUNCTIONSIG_NOT_ST){
- setResultCore(result);
- gc_addTmpLink(&function_value->gc_status);
- if (function_value->value->type == function && function_value->value->data.function.type == vm_function)
- callVMFunction(function_value, arg, line, file, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- else if (function_value->value->type == function && function_value->value->data.function.type == c_function)
- callCFunction(function_value, arg, line, file, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- else if (function_value->value->type == class)
- callClass(function_value, arg, line, file, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- else
- callObject(function_value, arg, line, file, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- setResultError(result, inter, NULL, NULL, line, file, belong, false);
- gc_freeTmpLink(&function_value->gc_status);
- return result->type;
- }
- ResultType callClass(LinkValue *class_value, Argument *arg, long int line, char *file, INTER_FUNCTIONSIG_NOT_ST) {
- LinkValue *_new_ = findAttributes(inter->data.object_new, false, class_value, inter);
- setResultCore(result);
- if (_new_ != NULL){
- gc_addTmpLink(&_new_->gc_status);
- callBackCore(_new_, arg, line, file, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- gc_freeTmpLink(&_new_->gc_status);
- }
- else
- setResultError(result, inter, "ClassException", "Don't find __new__", line, file, belong, true);
- return result->type;
- }
- ResultType callObject(LinkValue *object_value, Argument *arg, long int line, char *file, INTER_FUNCTIONSIG_NOT_ST) {
- LinkValue *_call_ = findAttributes(inter->data.object_call, false, object_value, inter);
- setResultCore(result);
- if (_call_ != NULL){
- gc_addTmpLink(&_call_->gc_status);
- callBackCore(_call_, arg, line, file, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- gc_freeTmpLink(&_call_->gc_status);
- }
- else
- setResultError(result, inter, "TypeException", "Object is not callable", line, file, belong, true);
- return result->type;
- }
- ResultType callCFunction(LinkValue *function_value, Argument *arg, long int line, char *file, INTER_FUNCTIONSIG_NOT_ST){
- VarList *function_var = NULL;
- OfficialFunction of = NULL;
- Argument *bak = arg;
- setResultCore(result);
- gc_addTmpLink(&function_value->gc_status);
- setFunctionArgument(&arg, function_value, line, file, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- if (!run_continue(result))
- goto return_;
- of = function_value->value->data.function.of;
- function_var = function_value->value->object.out_var;
- gc_freeze(inter, var_list, function_var, true);
- freeResult(result);
- of(CALL_OfficialFunction(arg, function_var, result, function_value->belong));
- gc_freeze(inter, var_list, function_var, false);
- freeFunctionArgument(arg, bak);
- return_:
- gc_freeTmpLink(&function_value->gc_status);
- return result->type;
- }
- ResultType callVMFunction(LinkValue *function_value, Argument *arg, long int line, char *file, INTER_FUNCTIONSIG_NOT_ST) {
- VarList *function_var = NULL;
- Statement *funtion_st = NULL;
- Argument *bak = arg;
- Parameter *func_pt = function_value->value->data.function.pt;
- bool yield_run = false;
- setResultCore(result);
- gc_addTmpLink(&function_value->gc_status);
- funtion_st = function_value->value->data.function.function;
- if ((yield_run = popStatementVarList(funtion_st, &function_var, function_value->value->object.out_var, inter)))
- funtion_st = funtion_st->info.node;
- gc_freeze(inter, var_list, function_var, true);
- setFunctionArgument(&arg, function_value, line, file, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- if (!run_continue(result))
- goto return_;
- freeResult(result);
- gc_addTmpLink(&function_var->hashtable->gc_status);
- setParameterCore(line, file, arg, func_pt, function_var, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, function_value->belong));
- freeFunctionArgument(arg, bak);
- gc_freeTmpLink(&function_var->hashtable->gc_status);
- if (!run_continue(result)) {
- gc_freeze(inter, var_list, function_var, false);
- funtion_st = function_value->value->data.function.function;
- if (yield_run)
- freeRunInfo(funtion_st);
- else
- popVarList(function_var);
- goto return_;
- }
- freeResult(result);
- functionSafeInterStatement(CALL_INTER_FUNCTIONSIG(funtion_st, function_var, result, function_value->belong));
- gc_freeze(inter, var_list, function_var, false);
- funtion_st = function_value->value->data.function.function;
- if (yield_run)
- if (result->type == yield_return){
- updateFunctionYield(funtion_st, result->node);
- result->type = operation_return;
- }
- else
- freeRunInfo(funtion_st);
- else
- if (result->type == yield_return){
- newFunctionYield(funtion_st, result->node, function_var, inter);
- result->type = operation_return;
- }
- else
- popVarList(function_var);
- return_:
- gc_freeTmpLink(&function_value->gc_status);
- return result->type;
- }
- ResultType setDecoration(DecorationStatement *ds, LinkValue *value, INTER_FUNCTIONSIG_NOT_ST) {
- LinkValue *decall = NULL;
- Parameter *pt = NULL;
- setResultCore(result);
- gc_addTmpLink(&value->gc_status);
- for (PASS; ds != NULL; ds = ds->next){
- freeResult(result);
- if (operationSafeInterStatement(CALL_INTER_FUNCTIONSIG(ds->decoration, var_list, result, belong)))
- break;
- pt = makeValueParameter(makeBaseLinkValueStatement(value, ds->decoration->line, ds->decoration->code_file));
- decall = result->value;
- result->value = NULL;
- freeResult(result);
- callBackCorePt(decall, pt, ds->decoration->line, ds->decoration->code_file, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- gc_freeTmpLink(&decall->gc_status);
- freeParameter(pt, true);
- if (!run_continue(result))
- break;
- gc_freeTmpLink(&value->gc_status);
- value = result->value;
- gc_addTmpLink(&value->gc_status);
- }
- gc_freeTmpLink(&value->gc_status);
- return result->type;
- }
|