search for: outfile_path

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

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
...iq, numdup, hshsave; int num_backing_up, bol_needed; FILE *backing_up_file; int end_of_buffer_state; char **input_files; int num_input_files; char *program_name = "flex"; static char *outfile_template = "lex.%s.%s"; static char *backing_name = "lex.backup"; static char outfile_path[2048]; static int outfile_created = 0; static char *skelname = ((void *)0); int main( argc, argv ) int argc; char **argv; { int i; if(--argc >0){ err = fopen( *++argv, "w" ); --argv; ++argc; } flexinit( argc, argv ); readin(); ntod()...