mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 05:31:06 +00:00
Initial checkin of new "Internalize" pass for GCCLD
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2362 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2e9175a085
commit
dbb1735673
15
include/llvm/Transforms/IPO/Internalize.h
Normal file
15
include/llvm/Transforms/IPO/Internalize.h
Normal file
@ -0,0 +1,15 @@
|
||||
//===-- Transforms/IPO/Internalize.h - Mark functions internal ---*- C++ -*--=//
|
||||
//
|
||||
// This pass loops over all of the functions in the input module, looking for a
|
||||
// main function. If a main function is found, all other functions are marked
|
||||
// as internal.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_TRANSFORM_IPO_INTERNALIZE_H
|
||||
#define LLVM_TRANSFORM_IPO_INTERNALIZE_H
|
||||
|
||||
class Pass;
|
||||
Pass *createInternalizePass();
|
||||
|
||||
#endif
|
38
lib/Transforms/IPO/Internalize.cpp
Normal file
38
lib/Transforms/IPO/Internalize.cpp
Normal file
@ -0,0 +1,38 @@
|
||||
//===-- Internalize.cpp - Mark functions internal -------------------------===//
|
||||
//
|
||||
// This pass loops over all of the functions in the input module, looking for a
|
||||
// main function. If a main function is found, all other functions are marked
|
||||
// as internal.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/Transforms/IPO/Internalize.h"
|
||||
#include "llvm/Pass.h"
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/Function.h"
|
||||
|
||||
class InternalizePass : public Pass {
|
||||
virtual bool run(Module *M) {
|
||||
bool FoundMain = false; // Look for a function named main...
|
||||
for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
|
||||
if ((*I)->getName() == "main") {
|
||||
FoundMain = true;
|
||||
break;
|
||||
}
|
||||
|
||||
if (!FoundMain) return false; // No main found, must be a library...
|
||||
|
||||
bool Changed = false;
|
||||
|
||||
// Found a main function, mark all functions not named main as internal.
|
||||
for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
|
||||
if ((*I)->getName() != "main") // Leave the main function external
|
||||
(*I)->setInternalLinkage(Changed = true);
|
||||
|
||||
return Changed;
|
||||
}
|
||||
};
|
||||
|
||||
Pass *createInternalizePass() {
|
||||
return new InternalizePass();
|
||||
}
|
Loading…
Reference in New Issue
Block a user