fix the sparc codegen to not depend on the sparc asmprinter.
[oota-llvm.git] / lib / VMCore /
2009-06-18 Owen AndersonSimplify.
2009-06-18 Owen AndersonSimplify.
2009-06-18 Owen AndersonAdd a SmartScopedLock, and use it to simplify code.
2009-06-18 Owen AndersonSimplify with SmartRWMutex.
2009-06-18 Owen AndersonSimplify by using no-op-when-not-multithreaded locks.
2009-06-18 Owen AndersonSimplify using mutexes that become no-ops when not...
2009-06-18 Owen AndersonSimplify a lot of code by using a R/W mutex that become...
2009-06-18 Owen AndersonUse SmartMutex to simplify.
2009-06-18 Owen AndersonMove Threading.[h|cpp] from Support to System.
2009-06-18 Owen AndersonFix the double checked locking in this file too.
2009-06-18 Owen AndersonAs pointed out by Duncan, I accidentally dropped the...
2009-06-18 Nick LewyckyAdd braces to clarify if/else structure and remove...
2009-06-17 Owen AndersonReapply r73647 in a non-broken form.
2009-06-17 Owen AndersonUse double-checked locking for this lazy initialization.
2009-06-17 Owen AndersonProtect the GC table in Function.cpp
2009-06-17 Owen AndersonUse atomic increment here.
2009-06-17 Owen AndersonThread-safe (and ManagedStatic-ized) LeakDetector!
2009-06-17 Owen AndersonGuard mutation of the timing info global.
2009-06-17 Owen AndersonWe need to use double-checked locking for lazy initiali...
2009-06-17 Owen AndersonFactor out some common code.
2009-06-17 Owen AndersonAdd an RAII ScopedWriter, which allows one to acquire...
2009-06-17 Owen AndersonSimplify the locking on the Constants tables, and make...
2009-06-17 Owen AndersonType safety for Constants.cpp! Some of this is tempora...
2009-06-17 Owen AndersonProtect the ValueHandle table.
2009-06-17 Owen AndersonWe need to guard reads of the AbstractTypeUsers list...
2009-06-17 Owen AndersonType safety for TypeSymbolTable!
2009-06-17 Owen AndersonAdd locking around the accessors for AbstractTypeUsers.
2009-06-16 Owen AndersonUse a reader-writer lock to guard large portions of...
2009-06-16 Anton KorobeynikovAddress review comments: add 3 ARM calling conventions.
2009-06-15 Dan GohmanUse Type::isIntOrIntVector and Type::isFPOrFPVector.
2009-06-15 Dan GohmanSupport vector casts in more places, fixing a variety...
2009-06-14 Dan GohmanFix old-style type names in comments.
2009-06-12 Dan GohmanGive Instruction::isSameOperationAs a corresponding...
2009-06-11 Duncan SandsCosmetic changes to parameter attribute verification.
2009-06-10 Jay FoadImplement and use new method Function::hasAddressTaken().
2009-06-07 Nick LewyckyCreate FunctionType::isValidArgumentType to go along...
2009-06-07 Nick LewyckyRemove cyclic MDNode detection. Any attempt to create...
2009-06-05 Devang PatelAdd new function attribute - noimplicitfloat
2009-06-05 Dan GohmanFix a copy+pasto in an assertion string that Jay Foad...
2009-06-05 Dan GohmanUpdate the Verifier to be aware of the difference betwe...
2009-06-04 Dan GohmanSplit the Add, Sub, and Mul instruction opcodes into...
2009-06-04 Devang PatelAdd new function attribute - noredzone.
2009-05-30 Nick LewyckyGive embedded metadata its own type instead of relying...
2009-05-30 Bill WendlingUntabification.
2009-05-29 Duncan SandsDan noticed that the verifier wasn't thoroughly checkin...
2009-05-25 Nick LewyckyAudit the type constructors. Previously it was possible...
2009-05-22 Duncan SandsAlways verify dominfo if expensive checking is enabled.
2009-05-22 Torok EdwinRevert this. There's no way to verifiy indirect calls...
2009-05-22 Torok EdwinVerify that calling conventions match function prototype.
2009-05-22 Dan GohmanUpdate an assertion string to new-style type names.
2009-05-21 Eli FriedmanFix some incorrect logic in DominanceFrontier::splitBlo...
2009-05-21 Duncan SandsAdd a getAlignOf helper for getting the ABI alignment...
2009-05-21 Jay FoadUse v.data() instead of &v[0] when SmallVector v might...
2009-05-18 Dan GohmanRevert r72025. It is possible for clients to convert...
2009-05-18 Dan GohmanAdd assertions to CastInst::getCastOpcode to catch...
2009-05-10 Bill WendlingNeeded #includes. Thanks Fritz van Bommel!
2009-05-10 Nick LewyckyMake MDNode use CallbackVH. Also change MDNode to store...
2009-05-06 Duncan SandsOCaml parameter attribute bindings from PR2752.
2009-05-06 Duncan SandsAllow readonly functions to unwind exceptions. Teach
2009-05-05 Evan ChengQuotes should be printed before private prefix; some...
2009-05-04 Mike StumpRestore minor deletion.
2009-05-02 Dan GohmanApply Jeffrey Yasskin's CallbackVH patch, with minor...
2009-04-26 Sanjiv GuptaAny size of integral indices are allowed in gep for...
2009-04-25 Chris LattnerAllow aliasee to be a GEP or bitcast instead of just...
2009-04-24 Sanjiv GuptaAllow i16 type indices to gep.
2009-04-20 Dan GohmanIt's not necessary for PrintModulePass to flush the...
2009-04-20 Dan GohmanDon't discard an AssemblyAnnotationWriter when writing...
2009-04-20 Dan GohmanImplement operator<<(raw_ostream &OS, const Type &T).
2009-04-15 Nick LewyckyLimit the number of times we're willing to chase pointe...
2009-04-13 Chris LattnerAdd a new "available_externally" linkage type. This...
2009-04-10 Chris LattnerAdd a new Type::getPointerTo method, which is shorthand for
2009-04-08 Chris Lattnerdisable this code for now, re-breaking PR2975, but...
2009-04-07 Torok Edwinfix style.
2009-04-07 Torok EdwinAnother attempt at fixing PR2975.
2009-04-06 Torok Edwinrevert r68457, its crashing in make check.
2009-04-06 Torok Edwinfix (part of) memory leak on shutdown. See PR2975.
2009-04-04 Nick LewyckyRemove bogus include.
2009-04-04 Nick LewyckyAdd support for embedded metadata to LLVM. This introdu...
2009-04-01 Devang PatelClean up pass manager cache after each run.
2009-03-31 Chris LattnerAdd two new classes: WeakVH and AssertingVH. These...
2009-03-30 Anton KorobeynikovFix infinite looping
2009-03-30 Anton KorobeynikovProperly propagate Kind.
2009-03-29 Anton KorobeynikovExtend the relocation tracker handler, so we can filter...
2009-03-27 Gabor Greif"ghostify" the ilist<Function> sentinel
2009-03-23 Dale JohannesenFix internal representation of fp80 to be the
2009-03-23 Dan GohmanNow that errs() is properly non-buffered, there's no...
2009-03-21 Chris Lattneradd a fastpath to ConstantExpr::getBitCast to handle...
2009-03-19 Nick LewyckyFix a couple glaring whitespace issues. This file isn...
2009-03-17 Gabor Greiftypo
2009-03-15 Nick LewyckySimplify. "Broken" is always true here.
2009-03-15 Nick LewyckyRemove obviously redundant call.
2009-03-14 Dan GohmanApply a patch by Micah Villmow to fix AsmParser to...
2009-03-13 Bill WendlingRevert r66920. It was causing failures in the self...
2009-03-13 Gabor GreifSecond installment of "BasicBlock operands to the back"
2009-03-12 Gabor GreifRearrange operands of the BranchInst, to be able to
2009-03-11 Duncan SandsIt makes no sense to have a ODR version of common
2009-03-11 Duncan SandsRemove the one-definition-rule version of extern_weak
2009-03-10 Dan GohmanUse WriteAsOperand instead of manually decorating the...
2009-03-09 Chris Lattnermake GlobalValue::removeDeadConstantUsers() const.
2009-03-09 Chris Lattnerfix Analysis/BasicAA/2004-12-08-BasicAACrash.ll by...
next