diff options
author | Devang Patel <dpatel@apple.com> | 2009-06-04 22:05:33 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-06-04 22:05:33 +0000 |
commit | d18e31ae17390d9c6f6cf93d18badf962452031d (patch) | |
tree | bf18aac26483ba94dfa71c81dc2f5d2fb2bbe517 /tools/llc | |
parent | 4c9369df57a52cec5e1fc735e61a979766288074 (diff) | |
download | external_llvm-d18e31ae17390d9c6f6cf93d18badf962452031d.zip external_llvm-d18e31ae17390d9c6f6cf93d18badf962452031d.tar.gz external_llvm-d18e31ae17390d9c6f6cf93d18badf962452031d.tar.bz2 |
Add new function attribute - noredzone.
Update code generator to use this attribute and remove DisableRedZone target option.
Update llc to set this attribute when -disable-red-zone command line option is used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72894 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llc')
-rw-r--r-- | tools/llc/llc.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index 4808f0e..a247472 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -100,6 +100,11 @@ cl::opt<bool> NoVerify("disable-verify", cl::Hidden, cl::desc("Do not verify input module")); +static cl::opt<bool> +DisableRedZone("disable-red-zone", + cl::desc("Do not emit code that uses the red zone."), + cl::init(false)); + // GetFileNameRoot - Helper function to get the basename of a filename. static inline std::string GetFileNameRoot(const std::string &InputFilename) { @@ -336,8 +341,11 @@ int main(int argc, char **argv) { // Run our queue of passes all at once now, efficiently. // TODO: this could lazily stream functions out of the module. for (Module::iterator I = mod.begin(), E = mod.end(); I != E; ++I) - if (!I->isDeclaration()) + if (!I->isDeclaration()) { + if (DisableRedZone) + I->addFnAttr(Attribute::NoRedZone); Passes.run(*I); + } Passes.doFinalization(); } |