search for: bracelevel

Displaying 2 results from an estimated 2 matches for "bracelevel".

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
...t yy_start_stack_ptr = 0; static int yy_start_stack_depth = 0; static int *yy_start_stack = 0; static void yy_push_state ( int new_state ); static void yy_pop_state ( void ); int flexscan() { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; static int bracelevel, didadef, indented_code; static int doing_rule_action = 0; static int option_sense; int doing_codeblock = 0; int i; unsigned char nmdef[2048], myesc(); if ( yy_init ) { yy_init = 0; if ( ! yy_start ) yy_start = 1; if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout;...