- ee18173 Make ExecutionEngine::updateGlobalMapping return the old mapping. by Chris Lattner · 18 years ago
- cd4a6be Fix formatting. by Duncan Sands · 18 years ago
- a53414f Load the symbols first so that the interpreter constructor can find them when by Nick Lewycky · 18 years ago
- ca24fd9 Simplify code using convertFromZeroExtendedInteger with an APInt by Dan Gohman · 18 years ago
- 579f071 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 18 years ago
- 1dd86b1 Support vector constant zeros, thanks to Zack Rusin for the testcase. by Chris Lattner · 18 years ago
- 21ad494 Enable exception handling int JIT by Nicolas Geoffray · 18 years ago
- f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
- edf0788 Change the PointerType api for creating pointer types. The old functionality of PointerType::get() has become PointerType::getUnqual(), which returns a pointer in the generic address space. The new prototype of PointerType::get() requires both a type and an address space. by Christopher Lamb · 18 years ago
- 26d6539 These are more correctly called signaling NaNs. by Duncan Sands · 18 years ago
- 1202d1b Teach the interpreter to read and write memory in the by Duncan Sands · 18 years ago
- fde5567 Remove host endianness info from TargetData and by Duncan Sands · 18 years ago
- 5c65cb4 Fix PR1836: in the interpreter, read and write apints by Duncan Sands · 18 years ago
- dc351b9 simplify creation of the interpreter, make ExecutionEngine ctor protected, by Chris Lattner · 18 years ago
- ff30628 My compiler complains that "x always evaluates to true" in this call: by Duncan Sands · 18 years ago
- 44b8721 Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize. by Duncan Sands · 18 years ago
- fd6f325 add a mechanism for the JIT to invoke a function to lazily create functions as they are referenced. by Chris Lattner · 18 years ago
- edaf0b4 LoadLibraryPermanently doesn't throw. by Chris Lattner · 18 years ago
- b5163bb Add a convenience method for creating EE's. by Chris Lattner · 18 years ago
- 324fe89 Add removeModuleProvider() by Devang Patel · 18 years ago
- 5f00973 convertFromInteger, as originally written, expected sign-extended by Neil Booth · 18 years ago
- 9150652 Constant fold int-to-long-double conversions; by Dale Johannesen · 18 years ago
- 4230512 Change APFloat::convertFromInteger to take the incoming by Dale Johannesen · 18 years ago
- a1336cf Implement x86 long double in jit (not really complete, but common cases work) by Dale Johannesen · 18 years ago
- bed9dc4 Next round of APFloat changes. by Dale Johannesen · 18 years ago
- 2dc9f13 Fix a comment typo noticed by Sandro Magi. by Reid Spencer · 18 years ago
- b781886 Add comments to fallsthrough cases. Also, this fixes PR1492 by Anton Korobeynikov · 18 years ago
- 8c32c11 Check arguments & return types of main(). Abort in case of no match. by Anton Korobeynikov · 18 years ago
- 8ff9ff7 Compute the correct word number. by Zhou Sheng · 18 years ago
- 72ac14e Unbreak C++ build. by Jeff Cohen · 19 years ago
- 4fd528f Fix all of last night's JIT failures in Prolangs-C++ by finishing the by Reid Spencer · 19 years ago
- 4e42790 1. Make StoreValueToMemory a little more efficient by not requiring caller by Reid Spencer · 19 years ago
- 87aa65f Simplify things significantly because GenericValue now has a single integer by Reid Spencer · 19 years ago
- 603682a Deal with error handling better. by Reid Spencer · 19 years ago
- 00919f5 Avoid memory leakage by having caller construct the APInt for the by Reid Spencer · 19 years ago
- 815f8dd Implement loading and storing of APInt values from memory. by Reid Spencer · 19 years ago
- d84d35b For PR1195: by Reid Spencer · 19 years ago
- 4da5e17 From Dan Gohman: by Chris Lattner · 19 years ago
- c44bd78 eliminate use of TargetData::getIndexedOffset that takes a vector by Chris Lattner · 19 years ago
- c473d8e Privatize StructLayout::MemberOffsets, adding an accessor by Chris Lattner · 19 years ago
- 1241d6d For PR411: by Reid Spencer · 19 years ago
- 5301e7c For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoid by Reid Spencer · 19 years ago
- a94d394 For PR1043: by Reid Spencer · 19 years ago
- 726b68b Fix a regression in the last patch. When constructing a BitMask, be careful by Reid Spencer · 19 years ago
- 01f7e06 Make sure we truncate stored values to their bit width. by Reid Spencer · 19 years ago
- 7a9c62b For PR1064: by Reid Spencer · 19 years ago
- cddc9df Implement review feedback for the ConstantBool->ConstantInt merge. Chris by Reid Spencer · 19 years ago
- 542964f Rename BoolTy as Int1Ty. Patch by Sheng Zhou. by Reid Spencer · 19 years ago
- 75b871f For PR1043: by Zhou Sheng · 19 years ago
- 0d54e78 For PR950: Convert signed integer types to signless ones. by Reid Spencer · 19 years ago
- c346ecd remove static ctors from Statistic objects by Chris Lattner · 19 years ago
- f3baad3 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 19 years ago
- 700b873 Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 19 years ago
- 12c9494 Introducing external weak linkage. Darwin codegen should be added later. by Anton Korobeynikov · 19 years ago
- 5834fdb Removed #include <iostream> and replaced streams with llvm streams. by Bill Wendling · 19 years ago
- 6c38f0b For PR950: by Reid Spencer · 19 years ago
- 87aee74 init ivar by Chris Lattner · 19 years ago
- e0fc4df For PR950: by Reid Spencer · 19 years ago
- d61d39e Adding dllimport, dllexport and external weak linkage types. by Anton Korobeynikov · 19 years ago
- 0621cae initial changes to support JIT'ing from multiple module providers, implicitly by Chris Lattner · 19 years ago
- 6353938 LoadLibraryPermanently can theoretically throw an exception. Do not propagate by Chris Lattner · 19 years ago
- 6d8dd18 Move some methods out of line so that MutexGuard.h isn't needed in a public header. by Chris Lattner · 20 years ago
- 20a631f Refactor TargetMachine, pushing handling of TargetData into the target-specific subclasses. This has one caller-visible change: getTargetData() now returns a pointer instead of a reference. by Owen Anderson · 20 years ago
- 4ca2ea5 JumpTable support! What this represents is working asm and jit support for by Nate Begeman · 20 years ago
- fe36eae Fix JIT support for static ctors, which was apparently completely broken! by Chris Lattner · 20 years ago
- a011ba8 prune #includes by Chris Lattner · 20 years ago
- 0b2de9f remove the intrinsiclowering hook by Chris Lattner · 20 years ago
- 2d52c1b Eliminate the dependency of ExecutionEngine on the JIT/Interpreter libraries. by Chris Lattner · 20 years ago
- faae50b Add a helper method for running static ctors/dtors in the module. by Chris Lattner · 20 years ago
- 69e84901 Teach the interpreter to handle global variables that are added to a module after by Jeff Cohen · 20 years ago
- 69d6213 Fixed InitializeMemory to handle ConstantPacked. by Robert Bocchino · 20 years ago
- a551033 Fix a nasty bug that was causing miscompilation of global variables by Chris Lattner · 20 years ago
- 79876f5 For PR540: by Reid Spencer · 20 years ago
- 8ffb661 fix long lines by Chris Lattner · 20 years ago
- 646c0f0 Fix a really horrible problem that causes the JIT to miscompile any program by Chris Lattner · 20 years ago
- 835702a Remove trailing whitespace by Misha Brukman · 21 years ago
- 531f9e9 This mega patch converts us from using Function::a{iterator|begin|end} to by Chris Lattner · 21 years ago
- 7f32c4a Use const iterators where possible. Patch by Evan Jones! by Chris Lattner · 21 years ago
- 45a6a18 This is no longer needed. Global variables with undef initializers can be by Chris Lattner · 21 years ago
- df1f152 Silence VS warnings. by Chris Lattner · 21 years ago
- 70e3727 Use System/DynamicLibrary instead of Support/DynamicLinker by Reid Spencer · 21 years ago
- d215992 This is a horrible hack to work around libstdc++ bugs :( by Chris Lattner · 21 years ago
- d7a7a3f Fix the interpreter crash that Michael McCracken found by Chris Lattner · 21 years ago
- 61753bf Add support for undef by Chris Lattner · 21 years ago
- 7c16caa Changes For Bug 352 by Reid Spencer · 21 years ago
- b1cad0b Don't pass too many arguments into runFunction by Chris Lattner · 21 years ago
- 8324372 Stop using getValues(). by Alkis Evlogimenos · 21 years ago
- 6a0fd73 bug 122: by Reid Spencer · 21 years ago
- 60a7dd1 Fixes for PR341 by Chris Lattner · 21 years ago
- c4e6bb5 Make add constantexprs work with all types, fixing the regressions from last night by Chris Lattner · 21 years ago
- 6967cd5 Fix for bug 391. Improve exeception handling around bcreader invocations. by Reid Spencer · 21 years ago
- 4c96b08 Move the IntrinsicLowering header into the CodeGen directory by Chris Lattner · 21 years ago
- 6b72759 Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID() by Chris Lattner · 21 years ago
- cef00ec Remove long unused #includes by Chris Lattner · 21 years ago
- 5def7a57 Fix PR296: [execution engines] Unhandled cast constant expression by Chris Lattner · 22 years ago
- 834b127 Make the JIT zero out globals with memset instead of an element at a time. This by Chris Lattner · 22 years ago
- dc63173 Print out all globals as they are emitted, not just those emitted from by Chris Lattner · 22 years ago
- 93f7c40 Print an error message if we can't materialize the bytecode file by Chris Lattner · 22 years ago
- 748e857 Add new ExecutionEngine::getGlobalValueAtAddress method, which can efficiently by Chris Lattner · 22 years ago
- c8c6c03 Pass around IntrinsicLowering instances as appropriate. by Chris Lattner · 22 years ago