mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	bytecode reading. This code is crufty, the result of much hacking to get things working correctly. Cleanup patches will follow. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25682 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			266 lines
		
	
	
		
			8.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			266 lines
		
	
	
		
			8.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//===-- AutoUpgrade.cpp - Implement auto-upgrade helper functions ---------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file was developed by Reid Spencer and is distributed under the 
 | 
						|
// University of Illinois Open Source License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
// This file implements the auto-upgrade helper functions 
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "llvm/Assembly/AutoUpgrade.h"
 | 
						|
#include "llvm/DerivedTypes.h"
 | 
						|
#include "llvm/Function.h"
 | 
						|
#include "llvm/Module.h"
 | 
						|
#include "llvm/Instructions.h"
 | 
						|
#include "llvm/Intrinsics.h"
 | 
						|
#include "llvm/SymbolTable.h"
 | 
						|
#include <iostream>
 | 
						|
 | 
						|
using namespace llvm;
 | 
						|
 | 
						|
// Utility function for getting the correct suffix given a type
 | 
						|
static inline const char* get_suffix(const Type* Ty) {
 | 
						|
  switch (Ty->getTypeID()) {
 | 
						|
    case Type::UIntTyID:    return ".i32";
 | 
						|
    case Type::UShortTyID:  return ".i16";
 | 
						|
    case Type::UByteTyID:   return ".i8";
 | 
						|
    case Type::ULongTyID:   return ".i64";
 | 
						|
    case Type::FloatTyID:   return ".f32";
 | 
						|
    case Type::DoubleTyID:  return ".f64";
 | 
						|
    default:                break;                        
 | 
						|
  }
 | 
						|
  return 0;
 | 
						|
}
 | 
						|
 | 
						|
static inline const Type* getTypeFromFunctionName(Function* F) {
 | 
						|
  // If there's no function, we can't get the argument type.
 | 
						|
  if (!F)
 | 
						|
    return 0;
 | 
						|
 | 
						|
  // Get the Function's name.
 | 
						|
  const std::string& Name = F->getName();
 | 
						|
 | 
						|
  // Quickly eliminate it, if it's not a candidate.
 | 
						|
  if (Name.length() <= 8 || Name[0] != 'l' || Name[1] != 'l' || Name[2] !=
 | 
						|
    'v' || Name[3] != 'm' || Name[4] != '.')
 | 
						|
    return 0;
 | 
						|
 | 
						|
  switch (Name[5]) {
 | 
						|
    case 'b':
 | 
						|
      if (Name == "llvm.bswap")
 | 
						|
        return F->getReturnType();
 | 
						|
      break;
 | 
						|
    case 'c':
 | 
						|
      if (Name == "llvm.ctpop" || Name == "llvm.ctlz" || Name == "llvm.cttz")
 | 
						|
        return F->getReturnType();
 | 
						|
      break;
 | 
						|
    case 'i':
 | 
						|
      if (Name == "llvm.isunordered") {
 | 
						|
        Function::const_arg_iterator ArgIt = F->arg_begin();
 | 
						|
        if (ArgIt != F->arg_end()) 
 | 
						|
          return ArgIt->getType();
 | 
						|
      }
 | 
						|
      break;
 | 
						|
    case 's':
 | 
						|
      if (Name == "llvm.sqrt")
 | 
						|
        return F->getReturnType();
 | 
						|
      break;
 | 
						|
    default:
 | 
						|
      break;
 | 
						|
  }
 | 
						|
  return 0;
 | 
						|
}
 | 
						|
 | 
						|
// This assumes the Function is one of the intrinsics we upgraded.
 | 
						|
static inline const Type* getTypeFromFunction(Function *F) {
 | 
						|
  const Type* Ty = F->getReturnType();
 | 
						|
  if (Ty->isFloatingPoint())
 | 
						|
    return Ty;
 | 
						|
  if (Ty->isSigned())
 | 
						|
    return Ty->getUnsignedVersion();
 | 
						|
  if (Ty->isInteger())
 | 
						|
    return Ty;
 | 
						|
  if (Ty == Type::BoolTy) {
 | 
						|
    Function::const_arg_iterator ArgIt = F->arg_begin();
 | 
						|
    if (ArgIt != F->arg_end()) 
 | 
						|
      return ArgIt->getType();
 | 
						|
  }
 | 
						|
  return 0;
 | 
						|
}
 | 
						|
 | 
						|
bool llvm::IsUpgradeableIntrinsicName(const std::string& Name) {
 | 
						|
  // Quickly eliminate it, if it's not a candidate.
 | 
						|
  if (Name.length() <= 8 || Name[0] != 'l' || Name[1] != 'l' || Name[2] !=
 | 
						|
    'v' || Name[3] != 'm' || Name[4] != '.')
 | 
						|
    return false;
 | 
						|
 | 
						|
  switch (Name[5]) {
 | 
						|
    case 'b':
 | 
						|
      if (Name == "llvm.bswap")
 | 
						|
        return true;
 | 
						|
      break;
 | 
						|
    case 'c':
 | 
						|
      if (Name == "llvm.ctpop" || Name == "llvm.ctlz" || Name == "llvm.cttz")
 | 
						|
        return true;
 | 
						|
      break;
 | 
						|
    case 'i':
 | 
						|
      if (Name == "llvm.isunordered")
 | 
						|
        return true;
 | 
						|
      break;
 | 
						|
    case 's':
 | 
						|
      if (Name == "llvm.sqrt")
 | 
						|
        return true;
 | 
						|
      break;
 | 
						|
    default:
 | 
						|
      break;
 | 
						|
  }
 | 
						|
  return false;
 | 
						|
}
 | 
						|
 | 
						|
// UpgradeIntrinsicFunction - Convert overloaded intrinsic function names to
 | 
						|
// their non-overloaded variants by appending the appropriate suffix based on
 | 
						|
// the argument types.
 | 
						|
Function* llvm::UpgradeIntrinsicFunction(Function* F) {
 | 
						|
  // See if its one of the name's we're interested in.
 | 
						|
  if (const Type* Ty = getTypeFromFunctionName(F)) {
 | 
						|
    const char* suffix = 
 | 
						|
      get_suffix((Ty->isSigned() ? Ty->getUnsignedVersion() : Ty));
 | 
						|
    assert(suffix && "Intrinsic parameter type not recognized");
 | 
						|
    const std::string& Name = F->getName();
 | 
						|
    std::string new_name = Name + suffix;
 | 
						|
    std::cerr << "WARNING: change " << Name << " to " << new_name << "\n";
 | 
						|
    SymbolTable& SymTab = F->getParent()->getSymbolTable();
 | 
						|
    if (Value* V = SymTab.lookup(F->getType(),new_name))
 | 
						|
      if (Function* OtherF = dyn_cast<Function>(V))
 | 
						|
        return OtherF;
 | 
						|
    
 | 
						|
    // There wasn't an existing function for the intrinsic, so now make sure the
 | 
						|
    // signedness of the arguments is correct.
 | 
						|
    if (Ty->isSigned()) {
 | 
						|
      const Type* newTy = Ty->getUnsignedVersion();
 | 
						|
      std::vector<const Type*> Params;
 | 
						|
      Params.push_back(newTy);
 | 
						|
      FunctionType* FT = FunctionType::get(newTy, Params,false);
 | 
						|
      return new Function(FT, GlobalValue::ExternalLinkage, new_name, 
 | 
						|
                          F->getParent());
 | 
						|
    }
 | 
						|
 | 
						|
    // The argument was the correct type (unsigned or floating), so just
 | 
						|
    // rename the function to its correct name and return it.
 | 
						|
    F->setName(new_name);
 | 
						|
    return F;
 | 
						|
  }
 | 
						|
  return 0;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
Instruction* llvm::MakeUpgradedCall(
 | 
						|
    Function* F, const std::vector<Value*>& Params, BasicBlock* BB,
 | 
						|
    bool isTailCall, unsigned CallingConv) {
 | 
						|
  assert(F && "Need a Function to make a CallInst");
 | 
						|
  assert(BB && "Need a BasicBlock to make a CallInst");
 | 
						|
 | 
						|
  // Convert the params
 | 
						|
  bool signedArg = false;
 | 
						|
  std::vector<Value*> Oprnds;
 | 
						|
  for (std::vector<Value*>::const_iterator PI = Params.begin(), 
 | 
						|
       PE = Params.end(); PI != PE; ++PI) {
 | 
						|
    const Type* opTy = (*PI)->getType();
 | 
						|
    if (opTy->isSigned()) {
 | 
						|
      signedArg = true;
 | 
						|
      CastInst* cast = 
 | 
						|
        new CastInst(*PI,opTy->getUnsignedVersion(), "autoupgrade_cast");
 | 
						|
      BB->getInstList().push_back(cast);
 | 
						|
      Oprnds.push_back(cast);
 | 
						|
    }
 | 
						|
    else
 | 
						|
      Oprnds.push_back(*PI);
 | 
						|
  }
 | 
						|
 | 
						|
  Instruction* result = new CallInst(F,Oprnds,"autoupgrade_call");
 | 
						|
  if (isTailCall) cast<CallInst>(result)->setTailCall();
 | 
						|
  if (CallingConv) cast<CallInst>(result)->setCallingConv(CallingConv);
 | 
						|
  if (signedArg) {
 | 
						|
    const Type* newTy = F->getReturnType()->getUnsignedVersion();
 | 
						|
    CastInst* final = new CastInst(result, newTy, "autoupgrade_uncast");
 | 
						|
    BB->getInstList().push_back(result);
 | 
						|
    result = final;
 | 
						|
  }
 | 
						|
  return result;
 | 
						|
}
 | 
						|
 | 
						|
Instruction* llvm::UpgradeIntrinsicCall(CallInst *CI, Function* newF) {
 | 
						|
  Function *F = CI->getCalledFunction();
 | 
						|
  if (const Type* Ty = 
 | 
						|
      (newF ? getTypeFromFunction(newF) : getTypeFromFunctionName(F))) {
 | 
						|
    std::vector<Value*> Oprnds;
 | 
						|
    User::op_iterator OI = CI->op_begin(); 
 | 
						|
    ++OI;
 | 
						|
    for (User::op_iterator OE = CI->op_end() ; OI != OE; ++OI) {
 | 
						|
      const Type* opTy = OI->get()->getType();
 | 
						|
      if (opTy->isSigned())
 | 
						|
        Oprnds.push_back(
 | 
						|
          new CastInst(OI->get(),opTy->getUnsignedVersion(), 
 | 
						|
            "autoupgrade_cast",CI));
 | 
						|
      else
 | 
						|
        Oprnds.push_back(*OI);
 | 
						|
    }
 | 
						|
    CallInst* newCI = new CallInst((newF?newF:F),Oprnds,"autoupgrade_call",CI);
 | 
						|
    newCI->setTailCall(CI->isTailCall());
 | 
						|
    newCI->setCallingConv(CI->getCallingConv());
 | 
						|
    if (const Type* oldType = CI->getCalledFunction()->getReturnType())
 | 
						|
      if (oldType->isSigned()) {
 | 
						|
        CastInst* final = 
 | 
						|
          new CastInst(newCI, oldType, "autoupgrade_uncast",newCI);
 | 
						|
        newCI->moveBefore(final);
 | 
						|
        return final;
 | 
						|
      }
 | 
						|
    return newCI;
 | 
						|
  }
 | 
						|
  return 0;
 | 
						|
}
 | 
						|
 | 
						|
bool llvm::UpgradeCallsToIntrinsic(Function* F) {
 | 
						|
  if (Function* newF = UpgradeIntrinsicFunction(F)) {
 | 
						|
    for (Value::use_iterator UI = F->use_begin(), UE = F->use_end();
 | 
						|
         UI != UE; ) {
 | 
						|
      if (CallInst* CI = dyn_cast<CallInst>(*UI++)) {
 | 
						|
        std::vector<Value*> Oprnds;
 | 
						|
        User::op_iterator OI = CI->op_begin();
 | 
						|
        ++OI;
 | 
						|
        for (User::op_iterator OE = CI->op_end(); OI != OE; ++OI) {
 | 
						|
          const Type* opTy = OI->get()->getType();
 | 
						|
          if (opTy->isSigned()) {
 | 
						|
            Oprnds.push_back(
 | 
						|
              new CastInst(OI->get(),opTy->getUnsignedVersion(), 
 | 
						|
                  "autoupgrade_cast",CI));
 | 
						|
          }
 | 
						|
          else
 | 
						|
            Oprnds.push_back(*OI);
 | 
						|
        }
 | 
						|
        CallInst* newCI = new CallInst(newF,Oprnds,"autoupgrade_call",CI);
 | 
						|
        newCI->setTailCall(CI->isTailCall());
 | 
						|
        newCI->setCallingConv(CI->getCallingConv());
 | 
						|
        if (const Type* Ty = CI->getCalledFunction()->getReturnType())
 | 
						|
          if (Ty->isSigned()) {
 | 
						|
            CastInst* final = 
 | 
						|
              new CastInst(newCI, Ty, "autoupgrade_uncast",newCI);
 | 
						|
            newCI->moveBefore(final);
 | 
						|
            CI->replaceAllUsesWith(final);
 | 
						|
          } else {
 | 
						|
            CI->replaceAllUsesWith(newCI);
 | 
						|
          }
 | 
						|
        CI->eraseFromParent();
 | 
						|
      }
 | 
						|
    }
 | 
						|
    if (newF != F)
 | 
						|
      F->eraseFromParent();
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
  return false;
 | 
						|
}
 |