ldc/gen/objcgen.h
2018-10-20 16:19:46 +02:00

54 lines
1.5 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//===-- gen/objcgen.cpp -----------------------------------------*- C++ -*-===//
//
// LDC the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
//
// Functions for generating Objective-C method calls.
//
//===----------------------------------------------------------------------===//
#pragma once
#include <vector>
#include "llvm/ADT/StringMap.h"
struct ObjcSelector;
namespace llvm {
class Constant;
class GlobalVariable;
class Module;
class Triple;
}
bool objc_isSupported(const llvm::Triple &triple);
// Objective-C state tied to an LLVM module (object file).
class ObjCState {
public:
ObjCState(llvm::Module &module) : module(module) {}
llvm::GlobalVariable *getMethVarRef(const ObjcSelector &sel);
void finalize();
private:
llvm::Module &module;
// symbols that shouldn't be optimized away
std::vector<llvm::Constant *> retainedSymbols;
llvm::StringMap<llvm::GlobalVariable *> methVarNameMap;
llvm::StringMap<llvm::GlobalVariable *> methVarRefMap;
llvm::GlobalVariable *getCStringVar(const char *symbol,
const llvm::StringRef &str,
const char *section);
llvm::GlobalVariable *getMethVarName(const llvm::StringRef &name);
void retain(llvm::Constant *sym);
void genImageInfo();
void retainSymbols();
};