| //===- subzero/src/IceGlobalInits.cpp - Global declarations ---------------===// |
| // |
| // The Subzero Code Generator |
| // |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| // |
| //===----------------------------------------------------------------------===// |
| // |
| // This file implements the notion of function declarations, global |
| // variable declarations, and the corresponding variable initializers |
| // in Subzero. |
| // |
| //===----------------------------------------------------------------------===// |
| |
| #include "llvm/ADT/STLExtras.h" |
| #include "llvm/IR/Function.h" |
| #include "llvm/IR/Value.h" |
| |
| #include "IceDefs.h" |
| #include "IceGlobalContext.h" |
| #include "IceGlobalInits.h" |
| #include "IceTypes.h" |
| |
| namespace { |
| char hexdigit(unsigned X) { return X < 10 ? '0' + X : 'A' + X - 10; } |
| |
| void dumpLinkage(Ice::Ostream &Stream, |
| llvm::GlobalValue::LinkageTypes Linkage) { |
| if (!ALLOW_DUMP) |
| return; |
| switch (Linkage) { |
| case llvm::GlobalValue::ExternalLinkage: |
| Stream << "external"; |
| return; |
| case llvm::GlobalValue::InternalLinkage: |
| Stream << "internal"; |
| return; |
| default: |
| break; |
| } |
| std::string Buffer; |
| llvm::raw_string_ostream StrBuf(Buffer); |
| StrBuf << "Unknown linkage value: " << Linkage; |
| llvm::report_fatal_error(StrBuf.str()); |
| } |
| |
| void dumpCallingConv(Ice::Ostream &, llvm::CallingConv::ID CallingConv) { |
| if (!ALLOW_DUMP) |
| return; |
| if (CallingConv == llvm::CallingConv::C) |
| return; |
| std::string Buffer; |
| llvm::raw_string_ostream StrBuf(Buffer); |
| StrBuf << "Unknown calling convention: " << CallingConv; |
| llvm::report_fatal_error(StrBuf.str()); |
| } |
| |
| } // end of anonymous namespace |
| |
| namespace Ice { |
| |
| FunctionDeclaration *FunctionDeclaration::create( |
| const FuncSigType &Signature, llvm::CallingConv::ID CallingConv, |
| llvm::GlobalValue::LinkageTypes Linkage, bool IsProto) { |
| return new FunctionDeclaration(Signature, CallingConv, Linkage, IsProto); |
| } |
| |
| void FunctionDeclaration::dumpType(Ostream &Stream) const { |
| if (!ALLOW_DUMP) |
| return; |
| Stream << Signature; |
| } |
| |
| void FunctionDeclaration::dump(GlobalContext *Ctx, Ostream &Stream) const { |
| if (!ALLOW_DUMP) |
| return; |
| if (IsProto) |
| Stream << "declare "; |
| ::dumpLinkage(Stream, Linkage); |
| ::dumpCallingConv(Stream, CallingConv); |
| Stream << Signature.getReturnType() << " @" |
| << (Ctx ? Ctx->mangleName(Name) : Name) << "("; |
| bool IsFirst = true; |
| for (Type ArgTy : Signature.getArgList()) { |
| if (IsFirst) |
| IsFirst = false; |
| else |
| Stream << ", "; |
| Stream << ArgTy; |
| } |
| Stream << ")"; |
| } |
| |
| VariableDeclaration *VariableDeclaration::create() { |
| return new VariableDeclaration(); |
| } |
| |
| VariableDeclaration::~VariableDeclaration() { |
| llvm::DeleteContainerPointers(Initializers); |
| } |
| |
| void VariableDeclaration::dumpType(Ostream &Stream) const { |
| if (!ALLOW_DUMP) |
| return; |
| if (Initializers.size() == 1) { |
| Initializers.front()->dumpType(Stream); |
| } else { |
| Stream << "<{ "; |
| bool IsFirst = true; |
| for (Initializer *Init : Initializers) { |
| if (IsFirst) { |
| IsFirst = false; |
| } else { |
| Stream << ", "; |
| } |
| Init->dumpType(Stream); |
| } |
| Stream << " }>"; |
| } |
| } |
| |
| void VariableDeclaration::dump(GlobalContext *Ctx, Ostream &Stream) const { |
| if (!ALLOW_DUMP) |
| return; |
| Stream << "@" << ((Ctx && !getSuppressMangling()) |
| ? Ctx->mangleName(Name) : Name) << " = "; |
| ::dumpLinkage(Stream, Linkage); |
| Stream << " " << (IsConstant ? "constant" : "global") << " "; |
| |
| // Add initializer. |
| if (Initializers.size() == 1) { |
| Initializers.front()->dump(Stream); |
| } else { |
| dumpType(Stream); |
| Stream << " <{ "; |
| bool IsFirst = true; |
| for (Initializer *Init : Initializers) { |
| if (IsFirst) { |
| IsFirst = false; |
| } else { |
| Stream << ", "; |
| } |
| Init->dump(Ctx, Stream); |
| } |
| Stream << " }>"; |
| } |
| |
| // Add alignment. |
| if (Alignment > 0) |
| Stream << ", align " << Alignment; |
| Stream << "\n"; |
| } |
| |
| void VariableDeclaration::Initializer::dumpType(Ostream &Stream) const { |
| if (!ALLOW_DUMP) |
| return; |
| Stream << "[" << getNumBytes() << " x " << Ice::IceType_i8 << "]"; |
| } |
| |
| void VariableDeclaration::DataInitializer::dump( |
| GlobalContext *, Ostream &Stream) const { |
| if (!ALLOW_DUMP) |
| return; |
| dumpType(Stream); |
| Stream << " c\""; |
| // Code taken from PrintEscapedString() in AsmWriter.cpp. Keep |
| // the strings in the same format as the .ll file for practical |
| // diffing. |
| for (uint8_t C : Contents) { |
| if (isprint(C) && C != '\\' && C != '"') |
| Stream << C; |
| else |
| Stream << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); |
| } |
| Stream << "\""; |
| } |
| |
| void VariableDeclaration::ZeroInitializer::dump( |
| GlobalContext *, Ostream &Stream) const { |
| if (!ALLOW_DUMP) |
| return; |
| dumpType(Stream); |
| Stream << " zeroinitializer"; |
| } |
| |
| void VariableDeclaration::RelocInitializer::dumpType(Ostream &Stream) const { |
| if (!ALLOW_DUMP) |
| return; |
| Stream << Ice::IceType_i32; |
| } |
| |
| void VariableDeclaration::RelocInitializer::dump( |
| GlobalContext *Ctx, Ostream &Stream) const { |
| if (!ALLOW_DUMP) |
| return; |
| if (Offset != 0) { |
| dumpType(Stream); |
| Stream << " add ("; |
| } |
| dumpType(Stream); |
| Stream << " ptrtoint ("; |
| Declaration->dumpType(Stream); |
| Stream << "* @"; |
| if (Ctx) |
| Stream << Ctx->mangleName(Declaration->getName()); |
| else |
| Stream << Declaration->getName(); |
| Stream << " to "; |
| dumpType(Stream); |
| Stream << ")"; |
| if (Offset != 0) { |
| Stream << ", "; |
| dumpType(Stream); |
| Stream << " " << Offset << ")"; |
| } |
| } |
| |
| } // end of namespace Ice |