aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/ReaderWrappers.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-18 05:54:18 +0000
committerChris Lattner <sabre@nondot.org>2003-10-18 05:54:18 +0000
commitcb7e2e2e0fa74ca8fb52201911082dab77f96c66 (patch)
tree5e48e96436e7782870b939dfd479dd107cb3e39e /lib/Bytecode/Reader/ReaderWrappers.cpp
parent99e7ab72c8909469141358552ece13d701d17274 (diff)
* New revised variable argument handling support
* More dense bytecode encoding for varargs calls (like printf) * Eliminated the extremely old bytecode format. rev #0 is now 1.0 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9220 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/ReaderWrappers.cpp')
-rw-r--r--lib/Bytecode/Reader/ReaderWrappers.cpp97
1 files changed, 89 insertions, 8 deletions
diff --git a/lib/Bytecode/Reader/ReaderWrappers.cpp b/lib/Bytecode/Reader/ReaderWrappers.cpp
index 82a06ea50f..28d43b4156 100644
--- a/lib/Bytecode/Reader/ReaderWrappers.cpp
+++ b/lib/Bytecode/Reader/ReaderWrappers.cpp
@@ -6,12 +6,18 @@
//===----------------------------------------------------------------------===//
#include "ReaderInternals.h"
+#include "llvm/Module.h"
+#include "llvm/Instructions.h"
#include "Support/StringExtras.h"
#include "Config/fcntl.h"
#include <sys/stat.h>
#include "Config/unistd.h"
#include "Config/sys/mman.h"
+//===----------------------------------------------------------------------===//
+// BytecodeFileReader - Read from an mmap'able file descriptor.
+//
+
namespace {
/// FDHandle - Simple handle class to make sure a file descriptor gets closed
/// when the object is destroyed.
@@ -73,7 +79,9 @@ BytecodeFileReader::~BytecodeFileReader() {
munmap((char*)Buffer, Length);
}
-////////////////////////////////////////////////////////////////////////////
+//===----------------------------------------------------------------------===//
+// BytecodeBufferReader - Read from a memory buffer
+//
namespace {
/// BytecodeBufferReader - parses a bytecode file from a buffer
@@ -123,7 +131,9 @@ BytecodeBufferReader::~BytecodeBufferReader() {
if (MustDelete) delete [] Buffer;
}
-////////////////////////////////////////////////////////////////////////////
+//===----------------------------------------------------------------------===//
+// BytecodeStdinReader - Read bytecode from Standard Input
+//
namespace {
/// BytecodeStdinReader - parses a bytecode file from stdin
@@ -160,18 +170,89 @@ BytecodeStdinReader::BytecodeStdinReader() {
ParseBytecode(FileBuf, FileData.size(), "<stdin>");
}
-/////////////////////////////////////////////////////////////////////////////
+//===----------------------------------------------------------------------===//
+// Varargs transmogrification code...
//
+
+// CheckVarargs - This is used to automatically translate old-style varargs to
+// new style varargs for backwards compatibility.
+static ModuleProvider *CheckVarargs(ModuleProvider *MP) {
+ Module *M = MP->getModule();
+
+ // Check to see if va_start takes arguments...
+ Function *F = M->getNamedFunction("llvm.va_start");
+ if (F == 0) return MP; // No varargs use, just return.
+
+ if (F->getFunctionType()->getNumParams() == 0)
+ return MP; // Modern varargs processing, just return.
+
+ // If we get to this point, we know that we have an old-style module.
+ // Materialize the whole thing to perform the rewriting.
+ MP->materializeModule();
+
+ // If the user is making use of obsolete varargs intrinsics, adjust them for
+ // the user.
+ if (Function *F = M->getNamedFunction("llvm.va_start")) {
+ assert(F->asize() == 1 && "Obsolete va_start takes 1 argument!");
+
+ const Type *RetTy = F->getFunctionType()->getParamType(0);
+ RetTy = cast<PointerType>(RetTy)->getElementType();
+ Function *NF = M->getOrInsertFunction("llvm.va_start", RetTy, 0);
+
+ for (Value::use_iterator I = F->use_begin(), E = F->use_end(); I != E; )
+ if (CallInst *CI = dyn_cast<CallInst>(*I++)) {
+ Value *V = new CallInst(NF, "", CI);
+ new StoreInst(V, CI->getOperand(1), CI);
+ CI->getParent()->getInstList().erase(CI);
+ }
+ F->setName("");
+ }
+
+ if (Function *F = M->getNamedFunction("llvm.va_end")) {
+ assert(F->asize() == 1 && "Obsolete va_end takes 1 argument!");
+ const Type *ArgTy = F->getFunctionType()->getParamType(0);
+ ArgTy = cast<PointerType>(ArgTy)->getElementType();
+ Function *NF = M->getOrInsertFunction("llvm.va_end", Type::VoidTy,
+ ArgTy, 0);
+
+ for (Value::use_iterator I = F->use_begin(), E = F->use_end(); I != E; )
+ if (CallInst *CI = dyn_cast<CallInst>(*I++)) {
+ Value *V = new LoadInst(CI->getOperand(1), "", CI);
+ new CallInst(NF, V, "", CI);
+ CI->getParent()->getInstList().erase(CI);
+ }
+ F->setName("");
+ }
+
+ if (Function *F = M->getNamedFunction("llvm.va_copy")) {
+ assert(F->asize() == 2 && "Obsolete va_copy takes 2 argument!");
+ const Type *ArgTy = F->getFunctionType()->getParamType(0);
+ ArgTy = cast<PointerType>(ArgTy)->getElementType();
+ Function *NF = M->getOrInsertFunction("llvm.va_copy", ArgTy,
+ ArgTy, 0);
+
+ for (Value::use_iterator I = F->use_begin(), E = F->use_end(); I != E; )
+ if (CallInst *CI = dyn_cast<CallInst>(*I++)) {
+ Value *V = new CallInst(NF, CI->getOperand(2), "", CI);
+ new StoreInst(V, CI->getOperand(1), CI);
+ CI->getParent()->getInstList().erase(CI);
+ }
+ F->setName("");
+ }
+ return MP;
+}
+
+
+//===----------------------------------------------------------------------===//
// Wrapper functions
-//
-/////////////////////////////////////////////////////////////////////////////
+//===----------------------------------------------------------------------===//
/// getBytecodeBufferModuleProvider - lazy function-at-a-time loading from a
/// buffer
ModuleProvider*
getBytecodeBufferModuleProvider(const unsigned char *Buffer, unsigned Length,
const std::string &ModuleID) {
- return new BytecodeBufferReader(Buffer, Length, ModuleID);
+ return CheckVarargs(new BytecodeBufferReader(Buffer, Length, ModuleID));
}
/// ParseBytecodeBuffer - Parse a given bytecode buffer
@@ -192,9 +273,9 @@ Module *ParseBytecodeBuffer(const unsigned char *Buffer, unsigned Length,
///
ModuleProvider *getBytecodeModuleProvider(const std::string &Filename) {
if (Filename != std::string("-")) // Read from a file...
- return new BytecodeFileReader(Filename);
+ return CheckVarargs(new BytecodeFileReader(Filename));
else // Read from stdin
- return new BytecodeStdinReader();
+ return CheckVarargs(new BytecodeStdinReader());
}
/// ParseBytecodeFile - Parse the given bytecode file