- ecb7ab9 make sure to initialize indent_level by Chris Lattner · 15 years ago
- 3f15253 add some support for blockaddress. This isn't really enough to be useful, by Chris Lattner · 15 years ago
- e89c673 eliminate a mutable global variable, use raw_ostream::indent instead of by Chris Lattner · 15 years ago
- a53c009 un-indent a huge amount of code out of an anonymous namespace. by Chris Lattner · 15 years ago
- 7546557 Create new accessors to get arguments for call/invoke instructions. It breaks by Bill Wendling · 15 years ago
- f4c88c7 Properly set thread-local flag on globals during cpp emission by Anton Korobeynikov · 15 years ago
- 62c0292 Remove the "WantsWholeFile" concept, as it's no longer needed. CBE by Dan Gohman · 15 years ago
- b105939 fix operand indexes when outputting InvokeInsts by Gabor Greif · 15 years ago
- fbf918b Revert 101465, it broke internal OpenGL testing. by Eric Christopher · 15 years ago
- b864136 reapply r101434 with a fix for self-hosting by Gabor Greif · 15 years ago
- ab05d8f back out r101423 and r101397, they break llvm-gcc self-host on darwin10 by Gabor Greif · 15 years ago
- 763153e reapply r101364, which has been backed out in r101368 with a fix by Gabor Greif · 15 years ago
- 52f155e back out r101364, as it trips the linux nightlybot on some clang C++ tests by Gabor Greif · 15 years ago
- d46fdb4 rotate CallInst operands, i.e. move callee to the back of the operand array by Gabor Greif · 15 years ago
- 8316f2d rename llvm::llvm_report_error -> llvm::report_fatal_error by Chris Lattner · 15 years ago
- fa74410 Add a flag to addPassesToEmit* to disable the Verifier pass run by Dan Gohman · 15 years ago
- fbf5d38 Use the module's context instead of the global context. by Nicolas Geoffray · 16 years ago
- e92dee1 Uniformize the names of type predicates: rather than having isFloatTy and by Duncan Sands · 16 years ago
- 7718073 Reintroduce the InlineHint function attribute. by Jakob Stoklund Olesen · 16 years ago
- 53f2498 eliminate FileModel::Model, just use CodeGenFileType. The client by Chris Lattner · 16 years ago
- 62de4e7 Kill ModuleProvider and ghost linkage by inverting the relationship between by Jeffrey Yasskin · 16 years ago
- a10c3c4 Remove the InlineHint attribute. There are no current or planned users. by Eric Christopher · 16 years ago
- a850594 fix an obvious bug found by clang++ and collapse a redundant if. by Chris Lattner · 16 years ago
- 4c3800f rename indbr -> indirectbr to appease the residents of #llvm. by Chris Lattner · 16 years ago
- 405a71a cppbackend support for indbr by Chris Lattner · 16 years ago
- f9a7a33 Remove FreeInst. by Victor Hernandez · 16 years ago
- 37f513d Remove MallocInst from LLVM Instructions. by Victor Hernandez · 16 years ago
- d809156 CppBackend: avoid printing unnecessary whitespace. by Benjamin Kramer · 16 years ago
- 5838baa Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson. by Sandeep Patel · 16 years ago
- 7fd6b0f Add an 'inline hint' attribute to represent source by Dale Johannesen · 16 years ago
- f537768 prune the #includes in raw_ostream.h by moving a by Chris Lattner · 16 years ago
- 7966fe8 Remove Streams.h from the targets. by Benjamin Kramer · 16 years ago
- c878b05 More cpp backend fixes. Now for FP stuff. by Anton Korobeynikov · 16 years ago
- f9dc207 Fixed error in CPPBackend from a contextification API change. by Reid Kleckner · 16 years ago
- 0f4101c Use the new API for creating an OpaqueType. by Nicolas Geoffray · 16 years ago
- db5b161 Update cpp generation with new LLVM API for primitive types. by Nicolas Geoffray · 16 years ago
- 7e6e633 Get the CPP backend into some semblance of working by updating for numerous LLVMContext changes, by Owen Anderson · 16 years ago
- 35b4707 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 16 years ago
- 048e415 Output the new StructType constructor, which takes the context of the by Nicolas Geoffray · 16 years ago
- 8726ea4 Remove an unnecessary flush in the CppBackend's output. by Dan Gohman · 16 years ago
- e6ad110 Remove now unused Module argument to createTargetMachine. by Daniel Dunbar · 16 years ago
- f5c2b85 Move most targets TargetMachine constructor to only taking a target triple. by Daniel Dunbar · 16 years ago
- c680b01 Add new helpers for registering targets. - Less boilerplate == good. by Daniel Dunbar · 16 years ago
- 936763a Simplify some uses of Value::getName() by Daniel Dunbar · 16 years ago
- 41a0785 Add plumbing for the `linker_private' linkage type. This type is meant for by Bill Wendling · 16 years ago
- 0b0441e Put Target definitions inside Target specific header, and llvm namespace. by Daniel Dunbar · 16 years ago
- bf79dcb Kill off <TARGET>MachineModule variables, and <TARGETASMPRINTER>ForceLink by Daniel Dunbar · 16 years ago
- fe5939f Reapply TargetRegistry refactoring commits. by Daniel Dunbar · 16 years ago
- 1721b8d Revert 75762, 75763, 75766..75769, 75772..75775, 75778, 75780, 75782 to repair broken LLVM-GCC build. by Stuart Hastings · 16 years ago
- 6fa4f57 Register Target's TargetMachine and AsmPrinter in the new registry. by Daniel Dunbar · 16 years ago
- 302008d by David Greene · 16 years ago
- bd448e3 llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Edwin Török · 16 years ago
- 675d562 assert(0) -> LLVM_UNREACHABLE. by Edwin Török · 16 years ago
- 8c2db38 Update for GlobalVariables ctor change. by Owen Anderson · 16 years ago
- 26cb025 Missed an exit during the conversion. by Edwin Török · 16 years ago
- aa1e3b9 Escape the name of the module since it comes from the file name and may include by Nick Lewycky · 16 years ago
- ebbc1c4 Provide InitializeAllTargets and InitializeNativeTarget functions in the by Bob Wilson · 16 years ago
- 1dc5ff4 Introduce new headers whose inclusion forces linking and by Douglas Gregor · 16 years ago
- 7ce405e Split the Add, Sub, and Mul instruction opcodes into separate by Dan Gohman · 16 years ago
- e2b5492 This patch brings the list of attributes in CPPBackend.cpp up to date with the by Jeffrey Yasskin · 16 years ago
- 7a969d8 Fix code emission for conditional branches. Patch by Collin Winter! by asl · 16 years ago
- b8179f1 'The attached patch fixes an issue where llc -march=cpp fails with by Chris Lattner · 16 years ago
- 8ccbae0 remove progname which is never set. PR4085 by Chris Lattner · 16 years ago
- 5ed22ac Instead of passing in an unsigned value for the optimization level, use an enum, by Bill Wendling · 16 years ago
- 58ed5d2 Second attempt: by Bill Wendling · 16 years ago
- f4d0c73 r70270 isn't ready yet. Back this out. Sorry for the noise. by Bill Wendling · 16 years ago
- 11a01bf Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want to by Bill Wendling · 16 years ago
- 6843344 Add a new "available_externally" linkage type. This is intended by Chris Lattner · 16 years ago
- 7c6a15e do not rely on callee being operand 0 by Gabor Greif · 16 years ago
- e7d7b0f Now that errs() is properly non-buffered, there's no need to by Dan Gohman · 16 years ago
- b95df79 It makes no sense to have a ODR version of common linkage, so remove it. by Duncan Sands · 16 years ago
- 565f65d Remove the one-definition-rule version of extern_weak by Duncan Sands · 16 years ago
- 19d161f Introduce new linkage types linkonce_odr, weak_odr, common_odr by Duncan Sands · 16 years ago
- a168fc9 Add the private linkage. by Rafael Espindola · 17 years ago
- ef328f3 make -march=cpp handle the nocapture attribute, make it assert if it by Chris Lattner · 17 years ago
- c812241 Update CPP backend for PrintModulePass API changes. by Dan Gohman · 17 years ago
- 4f01235 Adds extern "C" ints to the .cpp files that use RegisterTarget, as by Oscar Fuentes · 17 years ago
- 8e4bcaf Typo fix by Anton Korobeynikov · 17 years ago
- 1219855 The Index field of an AttributeWithIndex is of type unsigned, not uint16_t. by Nicolas Geoffray · 17 years ago
- 7820794 StoreInst does not produce any result thus it's useless to create new by Anton Korobeynikov · 17 years ago
- 669b9bf Fix command-line option printing to print two spaces where needed, by Dan Gohman · 17 years ago
- 6e547b4 Add a "loses information" return value to APFloat::convert by Dale Johannesen · 17 years ago
- 49cc7ce Rename APFloat::convertToAPInt to bitcastToAPInt to by Dale Johannesen · 17 years ago
- a8fbd77 Emit type-correct constant null. Also fix a typo. by Anton Korobeynikov · 17 years ago
- d222f86 Large mechanical patch. by Devang Patel · 17 years ago
- 93044ce s/ParamAttrsWithIndex/FnAttributeWithIndex/g by Devang Patel · 17 years ago
- e480dfa s/ParameterAttributes/Attributes/g by Devang Patel · 17 years ago
- 26f8c27 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 17 years ago
- 847b99b Use raw_ostream throughout the AsmPrinter. by Owen Anderson · 17 years ago
- bfcb1c5 Unbreak cpp backend: upgrade output due to change in APInt API by Anton Korobeynikov · 17 years ago
- 1aed599 Rename some GC classes so that their roll will hopefully be clearer. by Gordon Henriksen · 17 years ago
- 89b3658 Rework the routines that convert AP[S]Int into a string. Now, instead of by Chris Lattner · 17 years ago
- d33562d Remove <iostream> include. by Bill Wendling · 17 years ago
- 29c1ee6 CPPBackend support for extractvalue and insertvalue. by Dan Gohman · 17 years ago
- 93e80a4 Abort on an unrecognized opcode. by Dan Gohman · 17 years ago
- e9d7c55 Update the CPP backend for the ConstantFP::get API change. by Dan Gohman · 17 years ago
- a645dd3 API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legacy interfaces will be in place for some time. (Merge from use-diet branch.) by Gabor Greif · 17 years ago
- 49c4412 Add CommonLinkage; currently tentative definitions by Dale Johannesen · 17 years ago
- 58744b0 Fix typo in ParameterAttribute fields usage. Add an include by Nicolas Geoffray · 17 years ago
- 089efff Clean up the use of static and anonymous namespaces. This turned up by Dan Gohman · 17 years ago