no more need for tgsi_exec_machine_run2(), remove dead code
authorBrian <brian.paul@tungstengraphics.com>
Tue, 2 Oct 2007 17:49:43 +0000 (11:49 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Tue, 2 Oct 2007 17:49:43 +0000 (11:49 -0600)
src/mesa/pipe/tgsi/exec/tgsi_exec.c
src/mesa/pipe/tgsi/exec/tgsi_exec.h

index 1c515a26e3358262cc3380c07ef62f4b65f76ff9..6b33914c156d85f6413ade0650cb6d572a43580d 100644 (file)
@@ -250,15 +250,6 @@ tgsi_exec_prepare(
    tgsi_parse_free (&parse);
 }
 
-void
-tgsi_exec_machine_run(
-   struct tgsi_exec_machine *mach )
-{
-#if 0
-   tgsi_exec_prepare( mach );
-#endif
-   tgsi_exec_machine_run2( mach );
-}
 
 static void
 micro_abs(
@@ -2261,27 +2252,11 @@ exec_instruction(
 
 
 void
-tgsi_exec_machine_run2(
-                       struct tgsi_exec_machine *mach )
+tgsi_exec_machine_run( struct tgsi_exec_machine *mach )
 {
-#if 0 && MESA
-   GET_CURRENT_CONTEXT(ctx);
-   GLuint i;
-#endif
-
 #if XXX_SSE
    mach->Temps[TEMP_KILMASK_I].xyzw[TEMP_KILMASK_C].u[0] = 0;
 #else
-#if 0
-   struct tgsi_parse_context parse;
-   GLuint k;
-#endif
-
-#if 0
-   if (!mach->Instructions) {
-      expand_program(mach);
-   }
-#endif
 
    mach->Temps[TEMP_KILMASK_I].xyzw[TEMP_KILMASK_C].u[0] = 0;
    mach->Temps[TEMP_OUTPUT_I].xyzw[TEMP_OUTPUT_C].u[0] = 0;
@@ -2292,29 +2267,6 @@ tgsi_exec_machine_run2(
    }
 
 
-#if 0
-   k = tgsi_parse_init( &parse, mach->Tokens );
-   if (k != TGSI_PARSE_OK) {
-      printf("Problem parsing!\n");
-      return;
-   }
-   while( !tgsi_parse_end_of_tokens( &parse ) ) {
-      tgsi_parse_token( &parse );
-      switch( parse.FullToken.Token.Type ) {
-      case TGSI_TOKEN_TYPE_DECLARATION:
-         exec_declaration( mach, &parse.FullToken.FullDeclaration );
-         break;
-      case TGSI_TOKEN_TYPE_IMMEDIATE:
-         break;
-      case TGSI_TOKEN_TYPE_INSTRUCTION:
-         exec_instruction( mach, &parse.FullToken.FullInstruction, labels, &parse.Position );
-         break;
-      default:
-         assert( 0 );
-      }
-   }
-   tgsi_parse_free (&parse);
-#else
    {
       uint i;
       int pc;
@@ -2328,13 +2280,7 @@ tgsi_exec_machine_run2(
       while (pc != 99 && pc < mach->NumInstructions) {
          exec_instruction( mach, mach->Instructions + pc, &pc );
       }
-
-#if 0
-      free(mach->Declarations);
-      free(mach->Instructions);
-#endif
    }
-#endif
 
 #endif
 
index 2b493ff68219a7dfd764c7292a82c9a187813217..cf298b7c655b5dde26932fa175f059962a873ad3 100644 (file)
@@ -174,10 +174,6 @@ void
 tgsi_exec_machine_run(
    struct tgsi_exec_machine *mach );
 
-void
-tgsi_exec_machine_run2(
-   struct tgsi_exec_machine *mach );
-
 #if defined __cplusplus
 } // extern "C"
 #endif // defined __cplusplus