Displaying 2 results from an estimated 2 matches for "tblbase".
Did you mean:
  b_base
  
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
...+ i] = jamstate;
  }
 jambase = tblend;
 base[jamstate] = jambase;
 def[jamstate] = 0;
 tblend += numecs;
 ++numtemps;
 }
void mkentry( state, numchars, statenum, deflink, totaltrans )
register int *state;
int numchars, statenum, deflink, totaltrans;
 {
 register int minec, maxec, i, baseaddr;
 int tblbase, tbllast;
 if ( totaltrans == 0 )
  {
  if ( deflink == -32766 )
   base[statenum] = -32766;
  else
   base[statenum] = 0;
  def[statenum] = deflink;
  return;
  }
 for ( minec = 1; minec <= numchars; ++minec )
  {
  if ( state[minec] != -1 )
   if ( state[minec] != 0 || deflink != -32766 )...