summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/Interpreter
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove support for interactive (step finish next) instructions.Brian Gaeke2003-09-054-186/+44
| | | | | | | | | Remove printCurrentInstruction, printStackFrame and infoValue (only used interactively) and other unused methods of Interpreter. Fold UserInput.cpp containing only callMainFunction() into Interpreter.cpp. Remove unused Profile flag. llvm-svn: 8359
* Remove support for breakpoints (not used).Brian Gaeke2003-09-043-47/+8
| | | | | | Remove some dead code and whitespace. llvm-svn: 8346
* Interpreter cleanups:Brian Gaeke2003-09-044-317/+30
| | | | | | | | | | | | Get rid of support for DebugMode (make it always off). Mung some comments. Get rid of interpreter's PROFILE_STRUCTURE_FIELDS and PerformExitStuff which have been disabled forever. Get rid of -abort-on-exception (make it always on). Get rid of user interaction stuff (debug mode innards). Simplify Interpreter's callMainFunction(). llvm-svn: 8344
* ExecutionEngine.cpp: Move execution engine creation stuff into a newBrian Gaeke2003-09-032-6/+9
| | | | | | | | | | | | | | | | | | static method here. Remove some extra blank lines. ExecutionEngine.h: Add its prototype. lli.cpp: Call it. Make creation method for each type of EE into a static method of its own subclass. Interpreter/Interpreter.cpp: ExecutionEngine::createInterpreter --> Interpreter::create Interpreter/Interpreter.h: Likewise. JIT/JIT.cpp: ExecutionEngine::createJIT --> VM::create JIT/VM.h: Likewise. llvm-svn: 8343
* Targets now configure themselves based on the source module, not on theChris Lattner2003-08-242-10/+28
| | | | | | ad-hoc "Config" flags llvm-svn: 8134
* Add preliminary support for "any" pointersize/endianness. This will needChris Lattner2003-08-241-1/+2
| | | | | | to change soon though. llvm-svn: 8123
* The JIT now passes the environment pointer to the main() function when itJohn Criswell2003-08-212-2/+4
| | | | | | | starts a program. This allows the GNU env program to compile and JIT under LLVM. llvm-svn: 8022
* Spell `necessary' correctly.Misha Brukman2003-08-181-1/+1
| | | | llvm-svn: 7944
* Deconstify parameter to getPointerToFunction().Brian Gaeke2003-08-131-1/+1
| | | | llvm-svn: 7822
* Remove redundant const qualifierChris Lattner2003-07-231-3/+3
| | | | llvm-svn: 7254
* Merged in autoconf branch. This provides configuration via the autoconfJohn Criswell2003-06-301-3/+3
| | | | | | system. llvm-svn: 7014
* Include <cmath> instead of <math.h>Brian Gaeke2003-06-231-10/+1
| | | | | | Remove isnan; it's too unportable to handle cleanly at this point. llvm-svn: 6866
* Use std::isnan instead of isnan. Brought back to you from theBrian Gaeke2003-06-171-1/+1
| | | | | | future, by the reconciliation of the C++ and C99 standards. Someday. llvm-svn: 6751
* Add support for atexit function, remove support for __main functionChris Lattner2003-05-145-14/+37
| | | | llvm-svn: 6194
* Make sure that globals are emitted AFTER the passmanager is set up for the JIT,Chris Lattner2003-05-121-0/+1
| | | | | | because the globals may refer to functions that need to be compiled! llvm-svn: 6105
* switch main LLI core execution to use an InstVisitor instead of a switch ↵Chris Lattner2003-05-102-67/+61
| | | | | | statement llvm-svn: 6081
* Fix testcase: SingleSource/UnitTests/2003-05-02-DependantPHI.cChris Lattner2003-05-102-34/+55
| | | | llvm-svn: 6074
* Implement varargs support for LLI!Chris Lattner2003-05-082-73/+56
| | | | llvm-svn: 6043
* A large number of simple changes:Chris Lattner2003-05-087-178/+95
| | | | | | | * s/Method/Function * Kill some obsolete (external) functions that used to be to support tracing llvm-svn: 6041
* Add support for recording arguments passed through the ... of a varargs functionChris Lattner2003-05-082-10/+17
| | | | llvm-svn: 6040
* Remove two fields from TargetData which are target specific.Chris Lattner2003-04-261-1/+0
| | | | llvm-svn: 5963
* Only do the %ld -> %lld promotion when running a 64 bit bytecode on a 32 bit ↵Chris Lattner2003-04-251-1/+2
| | | | | | host llvm-svn: 5942
* Add __strdupChris Lattner2003-04-251-0/+7
| | | | llvm-svn: 5941
* MAke sure that LLI properly configures align_of(double)Chris Lattner2003-04-251-0/+1
| | | | llvm-svn: 5938
* Fix problem where we would read 64 bits worth of pointer information, even ↵Chris Lattner2003-04-251-10/+10
| | | | | | on 32 bit targets! llvm-svn: 5930
* Add memcpyChris Lattner2003-04-231-0/+7
| | | | llvm-svn: 5887
* Fix a problem with setcc instructions and pointersChris Lattner2003-04-231-6/+15
| | | | llvm-svn: 5886
* Implement a bunch of new external functionsChris Lattner2003-04-231-0/+54
| | | | llvm-svn: 5885
* Implement &|^ on bool valuesChris Lattner2003-04-231-0/+3
| | | | llvm-svn: 5884
* Add support for _IO_getc function used on linuxChris Lattner2003-04-231-0/+6
| | | | llvm-svn: 5883
* Kill using declarationsChris Lattner2003-04-221-96/+101
| | | | | | Kill code for invalid operations on pointers llvm-svn: 5856
* Implement cast to boolChris Lattner2003-04-221-0/+2
| | | | llvm-svn: 5855
* Get rid of extraneous arguments to implementation functionsChris Lattner2003-04-221-31/+31
| | | | llvm-svn: 5852
* Add support to LLI for switch instructionChris Lattner2003-04-221-0/+22
| | | | llvm-svn: 5851
* Fix wierd idiomChris Lattner2003-04-211-1/+1
| | | | llvm-svn: 5831
* fprintf CAN take exactly 2 argsChris Lattner2003-04-211-1/+1
| | | | llvm-svn: 5830
* Implement scanf and fix sscanf to actually endian swap the results correctlyChris Lattner2003-03-311-2/+97
| | | | llvm-svn: 5763
* Fix typeoChris Lattner2003-02-251-1/+1
| | | | llvm-svn: 5624
* * Wrap at 80 columnsChris Lattner2003-01-131-49/+47
| | | | | | | * Fix a ton of warnings * Implement puts llvm-svn: 5254
* Handle value promotion properly to work with tracing betterChris Lattner2003-01-131-1/+21
| | | | llvm-svn: 5253
* Initial checkin of new LLI with JIT compilerChris Lattner2002-12-242-0/+60
| | | | llvm-svn: 5126
* Substantial changes to refactor LLI to incorporate both the Jello JIT andChris Lattner2002-12-236-354/+62
| | | | | | the traditional LLI interpreter llvm-svn: 5125
* Add support for isnanChris Lattner2002-12-201-0/+9
| | | | llvm-svn: 5111
* Namespacify moreChris Lattner2002-12-081-10/+10
| | | | llvm-svn: 4956
* Add support to count the number of dynamic instructions executed by LLIChris Lattner2002-12-081-0/+8
| | | | llvm-svn: 4955
* - Eliminated the deferred symbol table stuff in Module & Function, it reallyChris Lattner2002-11-202-15/+11
| | | | | | wasn't an optimization and it was causing lots of bugs. llvm-svn: 4779
* Implement feofChris Lattner2002-11-081-0/+10
| | | | llvm-svn: 4627
* Implement freopen for burgChris Lattner2002-11-071-2/+11
| | | | llvm-svn: 4606
* Make command line arguments setup be endian correct!!Chris Lattner2002-11-073-20/+24
| | | | llvm-svn: 4605
* Implement fprintfChris Lattner2002-11-061-0/+16
| | | | llvm-svn: 4585
OpenPOWER on IntegriCloud