- 4c71dfe Update gcc 4.3 warnings fix patch with recent head changes by Anton Korobeynikov · 17 years ago
- ae9f3a3 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 17 years ago
- 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
- afa3b6d Add some convenience methods for querying attributes, and use them. by Duncan Sands · 18 years ago
- 514ab34 Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize. by Duncan Sands · 18 years ago
- 724441e Fix an assertion abort on sparc. malloc(0) is allowed to return NULL. by Gabor Greif · 18 years ago
- 27725bf #ifdef out unsafe tracing code, which fixes PR1689 by Chris Lattner · 18 years ago
- 9132a2b rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned() by Chris Lattner · 18 years ago
- e770787 For PR1486: by Reid Spencer · 18 years ago
- 09d8c92 Print integer values as both decimal and hexadecimal for convenience by Reid Spencer · 18 years ago
- 52811bd Avoid a "loss of precision" error in gcc 4.1.3. by Reid Spencer · 18 years ago
- 951418b Implement printing of instruction result values when debug info is turned by Reid Spencer · 18 years ago
- e4b4394 Bitcast all the bits of a floating point value, not just one. The zero by Reid Spencer · 18 years ago
- 6bc6333 1. Don't swap byte order in scanf. It isn't necessary and leads to by Reid Spencer · 18 years ago
- b8e237b eliminate use of Instruction::getPrev(). Patch by Gabor Greif in 2005. by Chris Lattner · 18 years ago
- 4ccf462 Implement @sext and @zext parameter attribute handling properly instead of by Reid Spencer · 18 years ago
- 47992ea Don't use std::hex. by Bill Wendling · 18 years ago
- 3bae2e9 Don't use a cast. It causes an error on some platforms. by Bill Wendling · 18 years ago
- 5763105 Fix some thinko's in the last patch. PtrSize has to be in bits and we by Reid Spencer · 18 years ago
- 7553c34 Fix a bug in IntToPtr. Truncating to 64-bits only works if the integer by Reid Spencer · 18 years ago
- f953633 Radically simplify execution. This patch gets rid of all the special by Reid Spencer · 18 years ago
- e092936 Complete the APIntification of the interpreter. All asserts for > 64 bits by Reid Spencer · 18 years ago
- e1aa066 Implement APInt support for the binary operators. by Reid Spencer · 18 years ago
- 64f150f From Dan Gohman: by Chris Lattner · 18 years ago
- b1919e2 Privatize StructLayout::MemberOffsets, adding an accessor by Chris Lattner · 18 years ago
- 23cbb1c For PR1188: Compute BitMask correctly. by Reid Spencer · 19 years ago
- 832254e Changes to support making the shift instructions be true BinaryOperators. by Reid Spencer · 19 years ago
- 5cbf985 For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoid by Reid Spencer · 19 years ago
- 24d6da5 For PR970: by Reid Spencer · 19 years ago
- a42c7fd Implement the signed icmp instructions properly. To do this we introduce by Reid Spencer · 19 years ago
- c00a430 Implement bit-accurate sext instruction. by Reid Spencer · 19 years ago
- 65367b2 Use the new maskToBitWidth function to ensure that the results of by Reid Spencer · 19 years ago
- 547dcf2 Make shl instruction mask its result to the correct bitsize. This is by Reid Spencer · 19 years ago
- 23e2883 Two changes: by Reid Spencer · 19 years ago
- 42a7551 rename Type::isIntegral to Type::isInteger, eliminating the old Type::isInteger. by Chris Lattner · 19 years ago
- 0ee69bb eliminate calls to Type::isInteger, preferring isIntegral instead. by Chris Lattner · 19 years ago
- a54b7cb For PR1064: by Reid Spencer · 19 years ago
- 4fe16d6 Rename BoolTy as Int1Ty. Patch by Sheng Zhou. by Reid Spencer · 19 years ago
- e49661b For PR950: Convert signed integer types to signless ones. by Reid Spencer · 19 years ago
- e4d87aa For PR950: by Reid Spencer · 19 years ago
- cecf56b elimiante Statistic static ctors by Chris Lattner · 19 years ago
- e815619 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 19 years ago
- ac0b6ae Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 19 years ago
- 97af751 Unbreak VC++ build. by Jeff Cohen · 19 years ago
- 480f093 Removed #include <iostream> and replaced streams with llvm streams. by Bill Wendling · 19 years ago
- 3da59db For PR950: by Reid Spencer · 19 years ago
- d6c3422 Remove redundant <cmath>. by Jim Laskey · 19 years ago
- 3822ff5 For PR950: by Reid Spencer · 19 years ago
- 45430ac Remove a function prototype that is no longer needed (REM patch missed it) by Reid Spencer · 19 years ago
- 0a783f7 For PR950: Replace the REM instruction with UREM, SREM and FREM. by Reid Spencer · 19 years ago
- fa8a51e Remove unnecessary sign conversions made possible by last patch. by Reid Spencer · 19 years ago
- fe85526 Fix a bug in the interpreter where divides of unmatched signed operands by Reid Spencer · 19 years ago
- 1628cec For PR950: by Reid Spencer · 19 years ago
- b83eb64 For PR950: by Reid Spencer · 19 years ago
- 8c9191c The interpreter assumes that the caller of runFunction() must be lli, and by Jeff Cohen · 20 years ago
- 558bc88 core changes for varargs by Andrew Lenharth · 20 years ago
- d1c881a * Remove trailing whitespace * Convert tabs to spaces by Misha Brukman · 20 years ago
- e4d5c44 This mega patch converts us from using Function::a{iterator|begin|end} to by Chris Lattner · 20 years ago
- d564496 Silence VS warnings by Chris Lattner · 21 years ago
- ec7c1ab Add support for unreachable by Chris Lattner · 21 years ago
- 2da5c3d Convert code to compile with vc7.1. by Reid Spencer · 21 years ago
- 551ccae Changes For Bug 352 by Reid Spencer · 21 years ago
- ed6c073 Fixes for PR341 by Chris Lattner · 21 years ago
- 0a8e8e1 Fixes for PR341 by Chris Lattner · 21 years ago
- 3048373 Move the IntrinsicLowering header into the CodeGen directory, as per PR346 by Chris Lattner · 21 years ago
- f70c22b Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID() by Chris Lattner · 21 years ago
- b440dea Go back to the interpreter main loop after performing intrinsic lowering, by Brian Gaeke · 21 years ago
- 759d34f Add support for the select instruction by Chris Lattner · 21 years ago
- 317201d Rename the intrinsic enum values for llvm.va_* from Intrinsic::va_* to by Chris Lattner · 21 years ago
- 9d20b71 Represent va_list in interpreter as a (ec-stack-depth . var-arg-index) by Brian Gaeke · 21 years ago
- d8400d8 The Interpreter was failing the AtExit UnitTest. This fixes it. by Brian Gaeke · 21 years ago
- aeb2a1d rename the "exceptional" destination of an invoke instruction to the 'unwind' dest by Chris Lattner · 22 years ago
- 34562ba Don't pass anything to the IntrinsicLowering class that is not_intrinsic, by Brian Gaeke · 22 years ago
- f70e0c2 Clean up a lot of the code I added yesterday by exposing the IntrinsicLowering by Chris Lattner · 22 years ago
- 7301178 Pass around IntrinsicLowering instances as appropriate. by Chris Lattner · 22 years ago
- 2798cd0 Since we are using a gep_type_iterator, we apparently must get the type by Brian Gaeke · 22 years ago
- 63438cc Add support for --debug-only=interpreter, to print out instrs before by Brian Gaeke · 22 years ago
- 4af6de8 Do not depend on structure elements being of type UByteTy by Chris Lattner · 22 years ago
- 8da1748 Change LLI's internal representation of va_list to a pointer to the next by Brian Gaeke · 22 years ago
- d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
- c1a2be1 Implement vaarg instruction. This is not quite perfect: 2003-08-11-VaListArg by Brian Gaeke · 22 years ago
- dbde1ae popStackAndReturnValueToCaller() must advance instruction pointer to normal by Brian Gaeke · 22 years ago
- 9bf06b1 Add stub version of unwind support by Brian Gaeke · 22 years ago
- fea483d visitCallInst --> visitCallSite. by Brian Gaeke · 22 years ago
- ae2495a Make the operation of visitCallInst() only depend on the CallSite. by Brian Gaeke · 22 years ago
- 2cb474c Use CallSites for call sites, instead of CallInsts. A revolutionary concept. by Brian Gaeke · 22 years ago
- af955ba Refactor the return-from-function code into popStackAndReturnValueToCaller(). by Brian Gaeke · 22 years ago
- 502dda0 Be friendly to gcc 3.4... good compiler. Nice compiler. by Chris Lattner · 22 years ago
- 2fa8212 Use regular old malloc to emulate malloc/alloca instructions. by Brian Gaeke · 22 years ago
- 3636f4e Remove a comment which no longer applies. by Brian Gaeke · 22 years ago
- 03e43dc Reduce the number of #includes. by Brian Gaeke · 22 years ago
- b576c94 Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
- 4c66549 Interpret the new varargs intrinsics correctly by Chris Lattner · 22 years ago
- d5d96b9 Fix spelling. by Misha Brukman · 22 years ago
- 235b200 Never set any signal handlers. Never call setjmp(), longjmp() or strsignal(). by Brian Gaeke · 22 years ago
- 63bd613 Change FunctionInfo from being an annotation put on Functions to be by Chris Lattner · 22 years ago
- 29794cb Make getOperandValue and executeCastOperation methods of Interpreter. by Brian Gaeke · 22 years ago
- d5caf7c Remove printOperandInfo(), and simplify run(). by Brian Gaeke · 22 years ago
- 932539a Remove support for printing values from a module by name, only used by Brian Gaeke · 22 years ago
- 413ab66 Remove support for interactive (step finish next) instructions. by Brian Gaeke · 22 years ago