- initial import

git-svn-id: http://moon:8086/svn/mips@1 a8ebac50-d88d-4704-bea3-6648445a41b3
This commit is contained in:
2014-07-20 15:01:37 +00:00
commit 26291bca3d
1549 changed files with 3997969 additions and 0 deletions
+496
View File
@@ -0,0 +1,496 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <time.h>
#include <sys/times.h>
#include <sys/time.h>
#include "libsys.h"
#include "gpio.h"
#include "mips_gfx.h"
#define PIC_NX 800
#define PIC_NY 600
gpio_if_t gpio_if;
box_t box;
gfx_t gfx;
UINT32 color_cycle[12] = {0x000000FF, 0x00808080, 0x0000FFFF, 0x00808080, 0x0000FF00, 0x00808080, 0x00FFFF00, 0x00808080, 0x00FF0000, 0x00808080, 0x00FF00FF, 0x00808080};
volatile UINT32 _g_blitter_rdy;
volatile UINT32 _g_blit_count;
void ISR_blitter_FIN(void)
{
UINT32 volatile *pVGA_src0 = (UINT32*)SYS_VGA_BLIT_SRC0_ADDR;
UINT32 volatile *pVGA_dst = (UINT32*)SYS_VGA_BLIT_DST_ADDR;
UINT32 volatile *pVGA_dimx_src0 = (UINT32*)SYS_VGA_BLIT_SRC0_DIMX;
UINT32 volatile *pVGA_dimx_dst = (UINT32*)SYS_VGA_BLIT_DST_DIMX;
UINT32 volatile *pVGA_nx = (UINT32*)SYS_VGA_BLIT_NX;
UINT32 volatile *pVGA_ny = (UINT32*)SYS_VGA_BLIT_NY;
UINT32 volatile *pVGA_ctrl = (UINT32*)SYS_VGA_CTRL;
UINT32 volatile *pVGA_moffs_0 = (UINT32*)SYS_VGA_FB_FRONT;
UINT32 volatile *pVGA_const_color = (UINT32*)SYS_VGA_BLIT_COLOR;
UINT32 volatile *pGPIO = (UINT32*)SYS_GPIO_0_DATA;
static UINT32 color;
// Ack
if(_g_blit_count)
{
do
{
*pVGA_ctrl |= SYS_VGA_BIT_BLIT_REQ | SYS_VGA_BIT_BLIT_FIN_ACK;
*pVGA_const_color = color;
color = ~color;
_g_blit_count--;
} while (!(*pVGA_ctrl & SYS_VGA_BIT_BLIT_BSY) & _g_blit_count);
}
else
{
while (*pVGA_ctrl & SYS_VGA_BIT_BLIT_ACTIVE);
*pVGA_ctrl |= SYS_VGA_BIT_BLIT_FIN_ACK;
_g_blitter_rdy = 1;
}
// fprintf(stderr, "ISR_blitter_FIN(): _g_blit_count=%d\n", _g_blit_count);
}
void ISR_blitter_EMPTY(void)
{
UINT32 volatile *pVGA_src0 = (UINT32*)SYS_VGA_BLIT_SRC0_ADDR;
UINT32 volatile *pVGA_dst = (UINT32*)SYS_VGA_BLIT_DST_ADDR;
UINT32 volatile *pVGA_dimx_src0 = (UINT32*)SYS_VGA_BLIT_SRC0_DIMX;
UINT32 volatile *pVGA_dimx_dst = (UINT32*)SYS_VGA_BLIT_DST_DIMX;
UINT32 volatile *pVGA_nx = (UINT32*)SYS_VGA_BLIT_NX;
UINT32 volatile *pVGA_ny = (UINT32*)SYS_VGA_BLIT_NY;
UINT32 volatile *pVGA_ctrl = (UINT32*)SYS_VGA_CTRL;
UINT32 volatile *pVGA_moffs_0 = (UINT32*)SYS_VGA_FB_FRONT;
UINT32 volatile *pVGA_const_color = (UINT32*)SYS_VGA_BLIT_COLOR;
UINT32 volatile *pGPIO = (UINT32*)SYS_GPIO_0_DATA;
static UINT32 color;
// Ack
if(_g_blit_count)
{
do
{
*pVGA_ctrl |= SYS_VGA_BIT_BLIT_REQ | SYS_VGA_BIT_BLIT_EMPTY_ACK;
*pVGA_const_color = color;
color = ~color;
_g_blit_count--;
} while (!(*pVGA_ctrl & SYS_VGA_BIT_BLIT_BSY) & _g_blit_count);
}
else
{
while (*pVGA_ctrl & SYS_VGA_BIT_BLIT_ACTIVE);
*pVGA_ctrl |= SYS_VGA_BIT_BLIT_EMPTY_ACK;
_g_blitter_rdy = 1;
}
// fprintf(stderr, "ISR_blitter_EMPTY(): _g_blit_count=%d\n", _g_blit_count);
}
void BlitWaitStillActive(void);
void BlitConstColor(UINT32 fb_addr, UINT32 dim_x, UINT32 pos_x, UINT32 pos_y, UINT32 size_x, UINT32 size_y, UINT32 color);
void Blit(UINT32 fb_addr, UINT32 dim_x, UINT32 pos_x_src, UINT32 pos_y_src, UINT32 pos_x_dst, UINT32 pos_y_dst, UINT32 size_x, UINT32 size_y);
// -------------------------------------------------------------
void LoadPic(UINT64 *pScreen, UINT32 screen_nx, UINT32 screen_ny, UINT32 *pImage, UINT32 image_nx, UINT32 image_ny, UINT32 image_scale_x, UINT32 image_scale_y)
{
UINT32 off_x, off_y;
UINT32 i, j, black;
UINT32 *pScr, *pImg;
off_x = (screen_nx-(image_scale_x*image_nx))/2;
off_y = (screen_ny-(image_scale_y*image_ny))/2;
black = 0;
pScr = (UINT32*)pScreen;
for (i=0; i < screen_nx*screen_ny; i += 8)
{
__gfx_block_set_8(pScr, 0);
pScr += 8;
}
if (!pImage)
return;
pScr = ((UINT32*)pScreen) + screen_nx*off_y + off_x;
pImg = pImage;
for (i=0; i < image_ny*image_nx; i += 8)
{
__gfx_block_copy_8(pScr, pImg);
pScr += 8;
pImg += 8;
}
/*
UINT32 off_x, off_y;
UINT32 i;
UINT32 *pScr;
off_x = (screen_nx-(image_scale_x*image_nx))/2;
off_y = (screen_ny-(image_scale_y*image_ny))/2;
memset(pScreen, 0, screen_nx*screen_ny*sizeof(UINT32));
pScr = ((UINT32*)pScreen) + screen_nx*off_y + off_x;
for (i=0; i < image_ny; i++)
{
memcpy(pScr, &pImage[i*image_nx], image_nx*sizeof(UINT32));
pScr += screen_nx;
}
*/
}
int main (void)
{
int result, i, j, cnt, size, num_runs;
UINT32 volatile *pUART_baud = (UINT32*)SYS_UART_BAUD;
UINT32 volatile *pUART_stat = (UINT32*)SYS_UART_STAT;
UINT32 volatile *pGPIO = (UINT32*)SYS_GPIO_0_DATA;
UINT32 volatile *pReg_usec = (UINT32*)SYS_TIMER_USEC;
UINT32 volatile *pReg_sec = (UINT32*)SYS_TIMER_SEC;
UINT32 volatile *pSSRAM = (UINT32*)SYS_SSRAM_IO;
UINT32 volatile *pTim_ctrl = (UINT32*)SYS_ITIM_CTRL;
UINT32 volatile *pTim_stat = (UINT32*)SYS_ITIM_STAT;
UINT32 volatile *pTim0_cnt = (UINT32*)SYS_ITIM0_CNT;
UINT32 volatile *pTim0_cmp = (UINT32*)SYS_ITIM0_CMP;
UINT32 volatile *pTim1_cnt = (UINT32*)SYS_ITIM1_CNT;
UINT32 volatile *pTim1_cmp = (UINT32*)SYS_ITIM1_CMP;
UINT32 volatile *pVGA_cgcol = (UINT32*)SYS_VGA_CGCOL;
UINT32 volatile *pFlashPicture = (UINT32*)(SYS_FLASH_MEM + 0x00600000);
UINT32 volatile *pVGA_src0 = (UINT32*)SYS_VGA_BLIT_SRC0_ADDR;
UINT32 volatile *pVGA_dst = (UINT32*)SYS_VGA_BLIT_DST_ADDR;
UINT32 volatile *pVGA_dimx_src0 = (UINT32*)SYS_VGA_BLIT_SRC0_DIMX;
UINT32 volatile *pVGA_dimx_dst = (UINT32*)SYS_VGA_BLIT_DST_DIMX;
UINT32 volatile *pVGA_nx = (UINT32*)SYS_VGA_BLIT_NX;
UINT32 volatile *pVGA_ny = (UINT32*)SYS_VGA_BLIT_NY;
UINT32 volatile *pVGA_ctrl = (UINT32*)SYS_VGA_CTRL;
UINT32 volatile *pVGA_moffs_0 = (UINT32*)SYS_VGA_FB_FRONT;
UINT32 volatile *pVGA_const_color = (UINT32*)SYS_VGA_BLIT_COLOR;
UINT32 screen_res_x, screen_res_y, screen_fps;
UINT32 pos, posx, posy, xoff, yoff, color;
UINT64 *pBuf64_0, *pBuf64_1;
time_t curr_date;
struct tm *pDate, date;
UINT32 start, end;
char sel[80];
struct timeval time_sec;
Screen_clr();
gpio_init(&gpio_if, SYS_GPIO_0_BASE);
*pVGA_cgcol = 0x00FFFFFF;
setbuf(stdout, NULL);
gpio_write(&gpio_if, GPIO_0_MDIO_RST, GPIO_0_ALIGN_MDIO, GPIO_DATA_OFFSET, 1);
sleep(100);
gpio_write(&gpio_if, GPIO_0_MDIO_RST, GPIO_0_ALIGN_MDIO, GPIO_DATA_OFFSET, 0);
printf("\n");
interrupt_enable(5);
GFX_init(&gfx);
num_runs = 5000*512;
size = 1;
while(1)
{
fprintf(stdout, "----------------------------------------------------\n");
fprintf(stdout, "Size = %d\n", size);
fprintf(stdout, "----------------------------------------------------\n");
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*pVGA_ctrl &= ~SYS_VGA_BIT_BLIT_FIN_INTEN;
*pVGA_ctrl &= ~SYS_VGA_BIT_BLIT_EMPTY_INTEN;
box_create(&box, size, size);
start = clock();
for (i=0; i < num_runs/(8*size); i++)
{
GFX_box_draw_direct(&gfx, &box, 5, 5, color_cycle[i%12]);
}
end = clock();
fprintf(stdout, "Software draw: Fillrate %f rect/s\n", (float)i/((float)(end-start)/CLOCKS_PER_SEC));
sleep(500);
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*pVGA_dimx_src0 = 800;
*pVGA_dimx_dst = 800;
*pVGA_nx = box.w;
*pVGA_ny = box.h;
*pVGA_ctrl |= SYS_VGA_BIT_BLIT_OP_CONSTCOL;
*pVGA_dst = (UINT32)*pVGA_moffs_0 + 4*(5 + 800*5);// + 4*((UINT32)rand()%800 + 800*((UINT32)rand()%600));
color = 0;
start = clock();
for (i=0; i < num_runs/size; i++)
{
// Blitter test
while (*pVGA_ctrl & SYS_VGA_BIT_BLIT_BSY);
*pVGA_ctrl |= SYS_VGA_BIT_BLIT_REQ;
*pVGA_const_color = color;
color = ~color;
}
BlitWaitStillActive();
end = clock();
fprintf(stdout, "Hardware draw (polling): Fillrate %f rect/s\n", (float)i/((float)(end-start)/CLOCKS_PER_SEC));
sleep(500);
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
interrupt_register(5, (void*)ISR_blitter_FIN);
interrupt_enable(5);
_g_blit_count = num_runs/size;
_g_blitter_rdy = 0;
while (*pVGA_ctrl & SYS_VGA_BIT_BLIT_FIN_ACK)
{
*pVGA_ctrl |= SYS_VGA_BIT_BLIT_FIN_ACK;
}
*pVGA_ctrl |= SYS_VGA_BIT_BLIT_FIN_INTEN;
*pVGA_ctrl |= SYS_VGA_BIT_BLIT_FIN_ACK;
start = clock();
while (!_g_blitter_rdy);
end = clock();
fprintf(stdout, "Hardware draw (interrupt, single): Fillrate %f rect/s\n", (float)i/((float)(end-start)/CLOCKS_PER_SEC));
sleep(500);
interrupt_disable(5);
*pVGA_ctrl &= ~SYS_VGA_BIT_BLIT_FIN_INTEN;
*pVGA_ctrl &= ~SYS_VGA_BIT_BLIT_EMPTY_INTEN;
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
interrupt_register(5, (void*)ISR_blitter_EMPTY);
interrupt_enable(5);
_g_blit_count = num_runs/size;
_g_blitter_rdy = 0;
while (*pVGA_ctrl & SYS_VGA_BIT_BLIT_EMPTY_ACK)
{
*pVGA_ctrl |= SYS_VGA_BIT_BLIT_EMPTY_ACK;
}
*pVGA_ctrl |= SYS_VGA_BIT_BLIT_EMPTY_INTEN;
*pVGA_ctrl |= SYS_VGA_BIT_BLIT_EMPTY_ACK;
start = clock();
while (!_g_blitter_rdy);
end = clock();
fprintf(stdout, "Hardware draw (interrupt, multi): Fillrate %f rect/s\n", (float)i/((float)(end-start)/CLOCKS_PER_SEC));
sleep(500);
interrupt_disable(5);
*pVGA_ctrl &= ~SYS_VGA_BIT_BLIT_FIN_INTEN;
*pVGA_ctrl &= ~SYS_VGA_BIT_BLIT_EMPTY_INTEN;
// GFX_set_background(&gfx, pFlashPicture, 800, 600, 1, 1);
posx = posy = 0;
GFX_show(&gfx);
color = 0;
for (i=0; i < 32; i++)
{
GFX_frame(&gfx, GFX_FRAME_SYNC);
color = ~color;
box_create(&box, 64-2*i, 64-2*i);
xoff = 100;
yoff = 0;
GFX_box_draw_direct(&gfx, &box, xoff+i, yoff+i, color);
BlitConstColor((UINT32)*pVGA_moffs_0, 800, xoff+100+i, yoff+i, box.w, box.h, color);
BlitConstColor((UINT32)*pVGA_moffs_0, 800, xoff+201+i, yoff+i, box.w, box.h, color);
Blit((UINT32)*pVGA_moffs_0, 800, xoff+i, yoff+i, xoff+300+i, yoff+i, box.w, box.h);
Blit((UINT32)*pVGA_moffs_0, 800, xoff+i, yoff+i, xoff+401+i, yoff+i, box.w, box.h);
box_create(&box, 63-2*i, 63-2*i);
xoff = 100;
yoff = 100;
GFX_box_draw_direct(&gfx, &box, xoff+i, yoff+i, color);
BlitConstColor((UINT32)*pVGA_moffs_0, 800, xoff+100+i, yoff+i, box.w, box.h, color);
BlitConstColor((UINT32)*pVGA_moffs_0, 800, xoff+201+i, yoff+i, box.w, box.h, color);
Blit((UINT32)*pVGA_moffs_0, 800, xoff+i, yoff+i, xoff+300+i, yoff+i, box.w, box.h);
Blit((UINT32)*pVGA_moffs_0, 800, xoff+i, yoff+i, xoff+401+i, yoff+i, box.w, box.h);
xoff = 100;
yoff = 200;
box_create(&box, 65-2*i, 65-2*i);
GFX_box_draw_direct(&gfx, &box, xoff+i, yoff+i, color);
BlitConstColor((UINT32)*pVGA_moffs_0, 800, xoff+100+i, yoff+i, box.w, box.h, color);
BlitConstColor((UINT32)*pVGA_moffs_0, 800, xoff+201+i, yoff+i, box.w, box.h, color);
Blit((UINT32)*pVGA_moffs_0, 800, xoff+i, yoff+i, xoff+300+i, yoff+i, box.w, box.h);
Blit((UINT32)*pVGA_moffs_0, 800, xoff+i, yoff+i, xoff+401+i, yoff+i, box.w, box.h);
}
GFX_frame(&gfx, GFX_FRAME_SYNC);
xoff = 0;
yoff = 300;
box_create(&box, 1, 64);
for (i=0; i < 64; i++)
{
color = color_cycle[i%12];
GFX_box_draw_direct(&gfx, &box, xoff+i, yoff, color);
}
Blit((UINT32)*pVGA_moffs_0, 800, xoff, yoff, xoff, yoff+65, 64, 64);
Blit((UINT32)*pVGA_moffs_0, 800, xoff, yoff, xoff+1, yoff+65+65, 64, 64);
xoff = 81;
yoff = 300;
box_create(&box, 1, 64);
for (i=0; i < 64; i++)
{
color = color_cycle[i%12];
GFX_box_draw_direct(&gfx, &box, xoff+i, yoff, color);
}
Blit((UINT32)*pVGA_moffs_0, 800, xoff, yoff, xoff, yoff+65, 64, 64);
Blit((UINT32)*pVGA_moffs_0, 800, xoff, yoff, xoff+1, yoff+65+65, 64, 64);
xoff = 160;
yoff = 300;
box_create(&box, 1, 63);
for (i=0; i < 63; i++)
{
color = color_cycle[i%12];
GFX_box_draw_direct(&gfx, &box, xoff+i, yoff, color);
}
Blit((UINT32)*pVGA_moffs_0, 800, xoff, yoff, xoff, yoff+64, 63, 63);
Blit((UINT32)*pVGA_moffs_0, 800, xoff, yoff, xoff+1, yoff+64+64, 63, 63);
xoff = 241;
yoff = 300;
box_create(&box, 1, 63);
for (i=0; i < 63; i++)
{
color = color_cycle[i%12];
GFX_box_draw_direct(&gfx, &box, xoff+i, yoff, color);
}
Blit((UINT32)*pVGA_moffs_0, 800, xoff, yoff, xoff, yoff+64, 63, 63);
Blit((UINT32)*pVGA_moffs_0, 800, xoff, yoff, xoff+1, yoff+64+64, 63, 63);
xoff = 320;
yoff = 300;
box_create(&box, 1, 65);
for (i=0; i < 65; i++)
{
color = color_cycle[i%12];
GFX_box_draw_direct(&gfx, &box, xoff+i, yoff, color);
}
Blit((UINT32)*pVGA_moffs_0, 800, xoff, yoff, xoff, yoff+66, 65, 65);
Blit((UINT32)*pVGA_moffs_0, 800, xoff, yoff, xoff+1, yoff+66+66, 65, 65);
xoff = 401;
yoff = 300;
box_create(&box, 1, 65);
for (i=0; i < 65; i++)
{
color = color_cycle[i%12];
GFX_box_draw_direct(&gfx, &box, xoff+i, yoff, color);
}
Blit((UINT32)*pVGA_moffs_0, 800, xoff, yoff, xoff, yoff+66, 65, 65);
Blit((UINT32)*pVGA_moffs_0, 800, xoff, yoff, xoff+1, yoff+66+66, 65, 65);
xoff = 10;
yoff = 500;
box_create(&box, 64, 1);
BlitConstColor((UINT32)*pVGA_moffs_0, 800, xoff, yoff, box.w, box.h, 0xFFFFFFFF);
BlitConstColor((UINT32)*pVGA_moffs_0, 800, xoff+1, yoff+2, box.w, box.h, 0xFFFFFFFF);
xoff = 80;
yoff = 500;
box_create(&box, 1, 64);
BlitConstColor((UINT32)*pVGA_moffs_0, 800, xoff, yoff, box.w, box.h, 0xFFFFFFFF);
BlitConstColor((UINT32)*pVGA_moffs_0, 800, xoff+10, yoff, box.w, box.h, 0xFFFFFFFF);
BlitConstColor((UINT32)*pVGA_moffs_0, 800, xoff+21, yoff, box.w, box.h, 0xFFFFFFFF);
size++;
if (size > 256)
size = 1;
}
}
void BlitConstColor(UINT32 fb_addr, UINT32 dim_x, UINT32 pos_x, UINT32 pos_y, UINT32 size_x, UINT32 size_y, UINT32 color)
{
UINT32 volatile *pVGA_src0 = (UINT32*)SYS_VGA_BLIT_SRC0_ADDR;
UINT32 volatile *pVGA_dst = (UINT32*)SYS_VGA_BLIT_DST_ADDR;
UINT32 volatile *pVGA_dimx_src0 = (UINT32*)SYS_VGA_BLIT_SRC0_DIMX;
UINT32 volatile *pVGA_dimx_dst = (UINT32*)SYS_VGA_BLIT_DST_DIMX;
UINT32 volatile *pVGA_nx = (UINT32*)SYS_VGA_BLIT_NX;
UINT32 volatile *pVGA_ny = (UINT32*)SYS_VGA_BLIT_NY;
UINT32 volatile *pVGA_ctrl = (UINT32*)SYS_VGA_CTRL;
UINT32 volatile *pVGA_moffs_0 = (UINT32*)SYS_VGA_FB_FRONT;
UINT32 volatile *pVGA_const_color = (UINT32*)SYS_VGA_BLIT_COLOR;
// fprintf(stdout, "BlitConstColor to (%d,%d), size (%d,%d) ...", pos_x, pos_y, size_x, size_y);
*pVGA_const_color = color;
*pVGA_dst = fb_addr + 4*(pos_x + pos_y*dim_x);
*pVGA_dimx_dst = dim_x;
*pVGA_nx = size_x - 0;
*pVGA_ny = size_y - 0;
while (*pVGA_ctrl & SYS_VGA_BIT_BLIT_BSY);
*pVGA_ctrl |= (SYS_VGA_BIT_BLIT_REQ | SYS_VGA_BIT_BLIT_OP_CONSTCOL);
// fprintf(stdout, "done\n");
}
void Blit(UINT32 fb_addr, UINT32 dim_x, UINT32 pos_x_src, UINT32 pos_y_src, UINT32 pos_x_dst, UINT32 pos_y_dst, UINT32 size_x, UINT32 size_y)
{
UINT32 volatile *pVGA_src0 = (UINT32*)SYS_VGA_BLIT_SRC0_ADDR;
UINT32 volatile *pVGA_dst = (UINT32*)SYS_VGA_BLIT_DST_ADDR;
UINT32 volatile *pVGA_dimx_src0 = (UINT32*)SYS_VGA_BLIT_SRC0_DIMX;
UINT32 volatile *pVGA_dimx_dst = (UINT32*)SYS_VGA_BLIT_DST_DIMX;
UINT32 volatile *pVGA_nx = (UINT32*)SYS_VGA_BLIT_NX;
UINT32 volatile *pVGA_ny = (UINT32*)SYS_VGA_BLIT_NY;
UINT32 volatile *pVGA_ctrl = (UINT32*)SYS_VGA_CTRL;
UINT32 volatile *pVGA_moffs_0 = (UINT32*)SYS_VGA_FB_FRONT;
UINT32 volatile *pVGA_const_color = (UINT32*)SYS_VGA_BLIT_COLOR;
// fprintf(stdout, "Blit from (%d,%d) to (%d,%d), size (%d,%d) ...", pos_x_src, pos_y_src, pos_x_dst, pos_y_dst, size_x, size_y);
*pVGA_src0 = fb_addr + 4*(pos_x_src + pos_y_src*dim_x);
*pVGA_dimx_src0 = dim_x;
*pVGA_dst = fb_addr + 4*(pos_x_dst + pos_y_dst*dim_x);
*pVGA_dimx_dst = dim_x;
*pVGA_nx = size_x - 0;
*pVGA_ny = size_y - 0;
while (*pVGA_ctrl & SYS_VGA_BIT_BLIT_BSY);
*pVGA_ctrl &= ~SYS_VGA_BIT_BLIT_OP_CONSTCOL;
*pVGA_ctrl |= SYS_VGA_BIT_BLIT_REQ;
// fprintf(stdout, "done\n");
}
void BlitWaitStillActive(void)
{
UINT32 volatile *pVGA_ctrl = (UINT32*)SYS_VGA_CTRL;
while (*pVGA_ctrl & SYS_VGA_BIT_BLIT_ACTIVE);
}