Displaying 3 results from an estimated 3 matches for "yy_act".
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo.  (I am not 
allocating RBP to any virtual register, the instances of RBP in function 
foo are in the machine code when my register allocator starts.)
Function foo calls function bar.  Register RBP is not saved across the 
call, though it is live after the call.  Function bar includes a virtual 
register.  The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
...mrows; ++j )
   {
   for ( i = j; i < csize; i = i + numrows )
    {
    fprintf( err, "%4s = %-2d",
     readable_form( i ), ecgroup[i] );
    _IO_putc (' ', err);
    }
   _IO_putc ('\n', err);
   }
  }
 }
void gen_find_action()
 {
 if ( fullspd )
  indent_puts( "yy_act = yy_current_state[-1].yy_nxt;" );
 else if ( fulltbl )
  indent_puts( "yy_act = yy_accept[yy_current_state];" );
 else if ( reject )
  {
  indent_puts( "yy_current_state = *--yy_state_ptr;" );
  indent_puts( "yy_lp = yy_accept[yy_current_state];" );
  outn(
  &qu...
2011 Jun 02
48
[PATCH 0/9] libxl: disk configuration handling
This is v3 of my disk series.  What were previously patches 01-06 have
been applied.  These are the tested and updated remainder, addressing
the previous comments.
   1  Preparatory work.
 2-4  The new parser and its documentation.
 5-6  Replace old parsers with calls to the new one.
 7-8  Two features, one of them essential.
   9  Basic test suite for disk string parsing, as adhoc script.