summaryrefslogtreecommitdiffstats
path: root/llvm/tools
Commit message (Collapse)AuthorAgeFilesLines
* Fix unintentional use of operator bool.John McCall2012-05-021-1/+1
| | | | llvm-svn: 155978
* Remove redundant line (the memory manager is set above to the same objectEli Bendersky2012-04-291-1/+0
| | | | | | if !ForceInterpreteri). It has no effect (apart from a memory leak...) llvm-svn: 155792
* DumpSegment64Command() wasn't returning correct result. Caught by static ↵Evan Cheng2012-04-261-1/+1
| | | | | | analyzer. rdar://11329354 llvm-svn: 155669
* [CMake] Restructure how Clang, Polly and other external projects get included.Michael J. Spencer2012-04-261-17/+3
| | | | | | | | | | | | | | | | | | | While making lld build under the tools directory I decided to refactor how this works. There is now a macro, add_llvm_external_project, which takes the name of the expected subdirectory. This sets up two CMake options. * LLVM_EXTERNAL_${NAME}_SOURCE_DIR This is the path to the source. It defaults to ${CMAKE_CURRENT_SOURCE_DIR}/${name}. * LLVM_EXTERNAL_${NAME}_BUILD Enable and disable building the tool as part of LLVM. I chose LLVM_EXTERNAL_${NAME} as a prefix so they all show up together in the GUI. llvm-svn: 155654
* openbsd doesn't support soname, patch by Brad Smith!Chris Lattner2012-04-251-0/+3
| | | | llvm-svn: 155536
* Remove llvm-ld and llvm-stub (which is only used by llvm-ld).Michael J. Spencer2012-04-1912-1028/+3
| | | | | | | | | | | | | | | | llvm-ld is no longer useful and causes confusion and so it is being removed. * Does not work very well on Windows because it must call a gcc like driver to assemble and link. * Has lots of hard coded paths which are wrong on many systems. * Does not understand most of ld's options. * Can be partially replaced by llvm-link | opt | {llc | as, llc -filetype=obj} | ld, or fully replaced by Clang. I know of no production use of llvm-ld, and hacking use should be replaced by Clang's driver. llvm-svn: 155147
* Move the JIT flags from llc to lli. These flags showed up as part of movingNick Lewycky2012-04-182-26/+28
| | | | | | backend flags in TargetOptions.h into their own class in r145714. llvm-svn: 154993
* allow opt to take a -mtriple optionJoe Groff2012-04-171-0/+7
| | | | llvm-svn: 154959
* Add -disassemble support for -show-inst and -show-encode capability llvm-mc. ↵Richard Barton2012-04-163-174/+80
| | | | | | | | Also refactor so all MC paraphernalia are created once for all uses as much as possible. The test change is to account for the fact that the default disassembler behaviour has changed with regards to specifying the assembly syntax to use. llvm-svn: 154809
* Remove lto_codegen_set_whole_program_optimization. It is a work in progress,Rafael Espindola2012-04-164-12/+5
| | | | | | | | | so we don't want it to show up in the stable 3.1 interface. While at it, add a comment about why LTOCodeGenerator manually creates the internalize pass. llvm-svn: 154807
* Make member variables of AsmToken private. Remove unnecessary forward ↵Craig Topper2012-04-151-0/+1
| | | | | | declarations. Remove an unnecessary include. llvm-svn: 154775
* Do not convert between fp128 <-> ppc_fp128 since there is no legal cast ↵Nadav Rotem2012-04-151-9/+12
| | | | | | | | conversion between the two. Patch by nobled <nobled@dreamwidth.org> llvm-svn: 154772
* Fix the build under Debian GNU/Hurd.Sylvestre Ledru2012-04-111-2/+2
| | | | | | Thanks to Pino Toscano for the patch llvm-svn: 154500
* llvm-stress: stop abusing ConstantFP::get()Dylan Noblesmith2012-04-101-5/+29
| | | | | | | | | | | | | | | | ConstantFP::get(Type*, double) is unreliably host-specific: it can't handle a type like PPC128 on an x86 host. It even has a comment to that effect: "This should only be used for simple constant values like 2.0/1.0 etc, that are known-valid both as host double and as the target format." Instead, use APFloat. While we're at it, randomize the floating point value more thoroughly; it was previously limited to the range 0 to 2**19 - 1. PR12451. llvm-svn: 154446
* llvm-stress: don't make vectors of x86_mmx typeDylan Noblesmith2012-04-101-1/+7
| | | | | | | | | | | | LangRef.html says: "There are no arrays, vectors or constants of this type." This was hitting assertions when passing the -generate-x86-mmx option. PR12452. llvm-svn: 154445
* Revert the 'EnableInitializing' flag. There is debate on whether we should ↵Bill Wendling2012-04-091-11/+0
| | | | | | run that pass by default in LTO. llvm-svn: 154356
* Apply the scope restrictions after parsing the command line options. There ↵Bill Wendling2012-04-091-3/+3
| | | | | | may be some which are used in that function. llvm-svn: 154348
* s/lto_codegen_whole_program_optimization/lto_codegen_set_whole_program_optim ↵Bill Wendling2012-04-092-4/+4
| | | | | | ization/ llvm-svn: 154312
* Add a hook to turn on the internalize pass through the LTO interface.Bill Wendling2012-04-094-2/+13
| | | | llvm-svn: 154306
* Teach LLVM about a PIE option which, when enabled on top of PIC, makesChandler Carruth2012-04-081-0/+6
| | | | | | | | | | | | | | | | | | | | optimizations which are valid for position independent code being linked into a single executable, but not for such code being linked into a shared library. I discussed the design of this with Eric Christopher, and the decision was to support an optional bit rather than a completely separate relocation model. Fundamentally, this is still PIC relocation, its just that certain optimizations are only valid under a PIC relocation model when the resulting code won't be in a shared library. The simplest path to here is to expose a single bit option in the TargetOptions. If folks have different/better designs, I'm all ears. =] I've included the first optimization based upon this: changing TLS models to the *Exec models when PIE is enabled. This is the LLVM component of PR12380 and is all of the hard work. llvm-svn: 154294
* The internalize pass can be dangerous for LTO.Bill Wendling2012-04-051-2/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Consider the following program: $ cat main.c void foo(void) { } int main(int argc, char *argv[]) { foo(); return 0; } $ cat bundle.c extern void foo(void); void bar(void) { foo(); } $ clang -o main main.c $ clang -o bundle.so bundle.c -bundle -bundle_loader ./main $ nm -m bundle.so 0000000000000f40 (__TEXT,__text) external _bar (undefined) external _foo (from executable) (undefined) external dyld_stub_binder (from libSystem) $ clang -o main main.c -O4 $ clang -o bundle.so bundle.c -bundle -bundle_loader ./main Undefined symbols for architecture x86_64: "_foo", referenced from: _bar in bundle-elQN6d.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) The linker was told that the 'foo' in 'main' was 'internal' and had no uses, so it was dead stripped. Another situation is something like: define void @foo() { ret void } define void @bar() { call asm volatile "call _foo" ... ret void } The only use of 'foo' is inside of an inline ASM call. Since we don't look inside those for uses of functions, we don't specify this as a "use." Get around this by not invoking the 'internalize' pass by default. This is an admitted hack for LTO correctness. <rdar://problem/11185386> llvm-svn: 154124
* Set soname for FreeBSD as well.Anton Korobeynikov2012-04-031-2/+2
| | | | | | Patch by Bernard Cafarelli! llvm-svn: 153965
* Reformatting. No functionality change.Bill Wendling2012-04-031-18/+19
| | | | llvm-svn: 153928
* Add an option to turn off the expensive GVN load PRE part of GVN.Bill Wendling2012-04-021-1/+5
| | | | llvm-svn: 153902
* Hack the hack. If we have a situation where an ASM object is defined but isn'tBill Wendling2012-04-022-23/+17
| | | | | | | | | | reflected in the LLVM IR (as a declare or something), then treat it like a data object. N.B. This isn't 100% correct. The ASM parser should supply more information so that we know what type of object it is, and what attributes it should have. llvm-svn: 153870
* Make MCInstrInfo available to the MCInstPrinter. This will be used to remove ↵Craig Topper2012-04-024-7/+23
| | | | | | getInstructionName and the static data it contains since the same tables are already in MCInstrInfo. llvm-svn: 153860
* It could come about that we parse the inline ASM before we get a potentialBill Wendling2012-04-022-0/+27
| | | | | | | definition for it. In that case, we want to wait for the potential definition before we create a symbol for it. llvm-svn: 153859
* Move trivial functions into the class definition.Bill Wendling2012-03-312-10/+7
| | | | llvm-svn: 153810
* Trim headers.Bill Wendling2012-03-311-7/+0
| | | | llvm-svn: 153809
* Indent according to LLVM's style guide.Bill Wendling2012-03-311-130/+121
| | | | llvm-svn: 153808
* Cleanup whitespace and trim some of the #includes.Bill Wendling2012-03-314-60/+54
| | | | llvm-svn: 153807
* These strings aren't 'const char *' but 'char *'.Bill Wendling2012-03-312-2/+2
| | | | llvm-svn: 153805
* Cleanup whitespace.Bill Wendling2012-03-311-17/+17
| | | | llvm-svn: 153804
* Free the codegen options when deleting LTO code generator object.Bill Wendling2012-03-311-26/+21
| | | | llvm-svn: 153803
* Cleanup whitespace and remove unneeded 'extern' keyword on function definitions.Bill Wendling2012-03-311-11/+10
| | | | llvm-svn: 153802
* * Set the scope attributes for the ASM symbol we added to be the value passedBill Wendling2012-03-301-14/+18
| | | | | | | into the function. * Reorder some header files. llvm-svn: 153783
* Re-factored RuntimeDyLd:Danil Malyshev2012-03-301-16/+0
| | | | | | | | | | | | | | | 1. The main works will made in the RuntimeDyLdImpl with uses the ObjectFile class. RuntimeDyLdMachO and RuntimeDyLdELF now only parses relocations and resolve it. This is allows to make improvements of the RuntimeDyLd more easily. In addition the support for COFF can be easily added. 2. Added ARM relocations to RuntimeDyLdELF. 3. Added support for stub functions for the ARM, allowing to do a long branch. 4. Added support for external functions that are not loaded from the object files, but can be loaded from external libraries. Now MCJIT can correctly execute the code containing the printf, putc, and etc. 5. The sections emitted instead functions, thanks Jim Grosbach. MemoryManager.startFunctionBody() and MemoryManager.endFunctionBody() have been removed. 6. MCJITMemoryManager.allocateDataSection() and MCJITMemoryManager. allocateCodeSection() used JMM->allocateSpace() instead of JMM->allocateCodeSection() and JMM->allocateDataSection(), because I got an error: "Cannot allocate an allocated block!" with object file contains more than one code or data sections. llvm-svn: 153754
* Cleanup whitespace. Doxygenize comments. And indent to llvm coding standards.Bill Wendling2012-03-301-214/+119
| | | | llvm-svn: 153740
* Revert r153694. It was causing failures in the buildbots.Bill Wendling2012-03-291-0/+16
| | | | llvm-svn: 153701
* Re-factored RuntimeDyld.Danil Malyshev2012-03-291-16/+0
| | | | | | Added ExecutionEngine/MCJIT tests. llvm-svn: 153694
* Make some headway towards compiling all of LLVM.Bill Wendling2012-03-292-36/+55
| | | | | | | | | | | | | | | | | Module-level ASM may contain definitions of functions and globals. However, we were not telling the linker that these globals had definitions. As far as it was concerned, they were just declarations. Attempt to resolve this by inserting module-level ASM functions and globals into the '_symbol' set so that the linker will know that they have values. This gets us further towards our goal of compiling LLVM, but it still has problems when linking libLTO.dylib because of the `-dead_strip' flag that's passed to the linker. <rdar://problem/11124216> llvm-svn: 153638
* Cleanup whitespace.Bill Wendling2012-03-291-15/+12
| | | | llvm-svn: 153634
* Cache the end() iterator.Bill Wendling2012-03-291-3/+3
| | | | llvm-svn: 153632
* Cleanup some whitespaces.Bill Wendling2012-03-282-136/+132
| | | | llvm-svn: 153612
* Move getPointerToNamedFunction() from JIT/MCJIT to JITMemoryManager.Danil Malyshev2012-03-281-0/+6
| | | | llvm-svn: 153607
* Inline function into its one caller.Bill Wendling2012-03-281-7/+2
| | | | llvm-svn: 153598
* Reformat the LTOModule code to be more inline with LLVM's coding standards. AddBill Wendling2012-03-282-105/+170
| | | | | | a bunch of comments for the various functions. No intended functionality change. llvm-svn: 153595
* Some whitespace cleanup.Bill Wendling2012-03-281-19/+14
| | | | llvm-svn: 153567
* Include cctype for std::isprint.Benjamin Kramer2012-03-231-0/+1
| | | | | | This should unbreak the msvc build. llvm-svn: 153329
* Add soname to LLVM shared library on Linux. Probably the same stuff is ↵Anton Korobeynikov2012-03-231-0/+2
| | | | | | | | necessary for *BSD. Patch from Mageia! llvm-svn: 153324
OpenPOWER on IntegriCloud