Pass target triple string in to TargetMachine constructor.
authorDaniel Dunbar <daniel@zuster.org>
Mon, 3 Aug 2009 04:03:51 +0000 (04:03 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 3 Aug 2009 04:03:51 +0000 (04:03 +0000)
commit3c2d4bf97fa96fe171883cd80e4ea93fc43563e6
tree736e1e2b833b3475c24a0569a546870cf25dd5fb
parent0c794b87253bcd597f87960632f8654a151f37ec
Pass target triple string in to TargetMachine constructor.

This is not just a matter of passing in the target triple from the module;
currently backends are making decisions based on the build and host
architecture. The goal is to migrate to making these decisions based off of the
triple (in conjunction with the feature string). Thus most clients pass in the
target triple, or the host triple if that is empty.

This has one important change in the way behavior of the JIT and llc.

For the JIT, it was previously selecting the Target based on the host
(naturally), but it was setting the target machine features based on the triple
from the module. Now it is setting the target machine features based on the
triple of the host.

For LLC, -march was previously only used to select the target, the target
machine features were initialized from the module's triple (which may have been
empty). Now the target triple is taken from the module, or the host's triple is
used if that is empty. Then the triple is adjusted to match -march.

The take away is that -march for llc is now used in conjunction with the host
triple to initialize the subtarget. If users want more deterministic behavior
from llc, they should use -mtriple, or set the triple in the input module.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77946 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/ADT/Triple.h
include/llvm/Target/TargetRegistry.h
lib/ExecutionEngine/JIT/TargetSelect.cpp
lib/Support/Triple.cpp
lib/Target/CBackend/CBackend.cpp
test/CodeGen/Mips/2008-08-08-bswap.ll
test/CodeGen/X86/fastcall-correct-mangling.ll
test/CodeGen/X86/memset-2.ll
tools/llc/llc.cpp
tools/lto/LTOCodeGenerator.cpp
tools/lto/LTOModule.cpp