History log of /llvm-project/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp (Results 101 – 125 of 181)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 4588542d 08-Jan-2005 Chris Lattner <sabre@nondot.org>

Silence warnings

llvm-svn: 19392


Revision tags: llvmorg-1.4.0
# 70e37278 29-Nov-2004 Reid Spencer <rspencer@reidspencer.com>

Use System/DynamicLibrary instead of Support/DynamicLinker

llvm-svn: 18357


# f9676539 27-Oct-2004 Reid Spencer <rspencer@reidspencer.com>

Changes to support rand48 tests

llvm-svn: 17284


# 7c16caa3 01-Sep-2004 Reid Spencer <rspencer@reidspencer.com>

Changes For Bug 352
Move include/Config and include/Support into include/llvm/Config,
include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
public header files must be under include/l

Changes For Bug 352
Move include/Config and include/Support into include/llvm/Config,
include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
public header files must be under include/llvm/.

llvm-svn: 16137

show more ...


Revision tags: llvmorg-1.3.0
# 6b727599 17-Jun-2004 Chris Lattner <sabre@nondot.org>

Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID()

llvm-svn: 14201


# 3b9474ec 16-Jun-2004 Brian Gaeke <gaeke@uiuc.edu>

Add int ferror(FILE *)

llvm-svn: 14194


# cb9ccac8 27-May-2004 Chris Lattner <sabre@nondot.org>

These #includes are long dead

llvm-svn: 13856


# 7b8a3b55 25-May-2004 Reid Spencer <rspencer@reidspencer.com>

Get rid of a wart: useless getFILE function is now a cast macro.

llvm-svn: 13747


# 2d7efbbb 01-May-2004 Brian Gaeke <gaeke@uiuc.edu>

Generalize the strlen size_t hack, for the benefit of the other external
functions with wrappers that either take or return size_ts.

llvm-svn: 13296


Revision tags: llvmorg-1.2.0
# c8c6c03d 28-Dec-2003 Chris Lattner <sabre@nondot.org>

Pass around IntrinsicLowering instances as appropriate.
Reimplement the Interpreters implementation of va_* to be more direct.

llvm-svn: 10627


Revision tags: llvmorg-1.1.0
# 18099661 14-Dec-2003 Chris Lattner <sabre@nondot.org>

Finegrainify namespacification

llvm-svn: 10465


# 13a2e54e 12-Dec-2003 Brian Gaeke <gaeke@uiuc.edu>

Dynamically get the right-sized member of a GenericValue to hold a size_t, and
use it to return the result of strlen.

llvm-svn: 10433


# d81ca471 13-Nov-2003 Brian Gaeke <gaeke@uiuc.edu>

Change LLI's internal representation of va_list to a pointer to the next
argument to be returned by va_arg. This allows va_lists to be passed
between different LLVM procedures (though it is unlikely

Change LLI's internal representation of va_list to a pointer to the next
argument to be returned by va_arg. This allows va_lists to be passed
between different LLVM procedures (though it is unlikely that an LLI
va_list would make sense to an external function, except by chance.)

llvm-svn: 9965

show more ...


# 960707c3 11-Nov-2003 Brian Gaeke <gaeke@uiuc.edu>

Put all LLVM code into the llvm namespace, as per bug 109.

llvm-svn: 9903


# 4e106f06 05-Nov-2003 Brian Gaeke <gaeke@uiuc.edu>

Abort when the user program calls abort, instead of printing a funny message and calling exit(1).

llvm-svn: 9716


# 37edb438 25-Oct-2003 Chris Lattner <sabre@nondot.org>

Unbreak the build

llvm-svn: 9502


Revision tags: llvmorg-1.0.0
# 482202a6 20-Oct-2003 John Criswell <criswell@uiuc.edu>

Added LLVM project notice to the top of every C++ source file.
Header files will be on the way.

llvm-svn: 9298


# fefd3beb 18-Oct-2003 Chris Lattner <sabre@nondot.org>

Interpret the new varargs intrinsics correctly

llvm-svn: 9222


# 1d2d8ec8 14-Oct-2003 Misha Brukman <brukman+llvm@gmail.com>

Order #includes as per the style guide.

llvm-svn: 9128


# cc31fddf 10-Oct-2003 Brian Gaeke <gaeke@uiuc.edu>

Don't include Config/stdio.h or <stdio.h>.

llvm-svn: 9031


# aa7d26c8 10-Oct-2003 Misha Brukman <brukman+llvm@gmail.com>

Fix spelling.

llvm-svn: 9021


# 6cc20dea 10-Oct-2003 Brian Gaeke <gaeke@uiuc.edu>

Rewrite head-of-file comment.
In lookupFunction():
Change to use "F" for Function argument instead of ancient "M".
Remove commented-out code.
Change to use GetAddressOfSymbol instead of dlsym.

ll

Rewrite head-of-file comment.
In lookupFunction():
Change to use "F" for Function argument instead of ancient "M".
Remove commented-out code.
Change to use GetAddressOfSymbol instead of dlsym.

llvm-svn: 9013

show more ...


# 93cb392a 09-Oct-2003 Chris Lattner <sabre@nondot.org>

Do not read past the end of the contained type list

llvm-svn: 8986


# a7669038 05-Sep-2003 Brian Gaeke <gaeke@uiuc.edu>

Make CreateArgv part of lli rather than part of ExecutionEngine.
Switch Interpreter and JIT's "run" methods to take a Function and a vector of
GenericValues.
Move (almost all of) the stuff that cons

Make CreateArgv part of lli rather than part of ExecutionEngine.
Switch Interpreter and JIT's "run" methods to take a Function and a vector of
GenericValues.
Move (almost all of) the stuff that constructs a canonical call to main()
into lli (new methods "callAsMain", "makeStringVector").
Nuke getCurrentExecutablePath(), enableTracing(), getCurrentFunction(),
isStopped(), and many dead decls from interpreter.
Add linux strdup() support to interpreter.
Make interpreter's atexit handler runner and JIT's runAtExitHandlers() look
more alike, in preparation for refactoring.
atexit() is spelled "atexit", not "at_exit".

llvm-svn: 8366

show more ...


# 47985409 24-Aug-2003 Chris Lattner <sabre@nondot.org>

Add preliminary support for "any" pointersize/endianness. This will need
to change soon though.

llvm-svn: 8123


12345678