Karl Schimpf | 8d7abae | 2014-07-07 14:50:30 -0700 | [diff] [blame] | 1 | //===- subzero/src/IceTranslator.cpp - ICE to machine code ------*- C++ -*-===// |
| 2 | // |
| 3 | // The Subzero Code Generator |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Andrew Scull | 9612d32 | 2015-07-06 14:53:25 -0700 | [diff] [blame] | 9 | /// |
| 10 | /// \file |
| 11 | /// This file defines the general driver class for translating ICE to |
| 12 | /// machine code. |
| 13 | /// |
Karl Schimpf | 8d7abae | 2014-07-07 14:50:30 -0700 | [diff] [blame] | 14 | //===----------------------------------------------------------------------===// |
| 15 | |
John Porto | 67f8de9 | 2015-06-25 10:14:17 -0700 | [diff] [blame] | 16 | #include "IceTranslator.h" |
| 17 | |
Karl Schimpf | 8d7abae | 2014-07-07 14:50:30 -0700 | [diff] [blame] | 18 | #include "IceCfg.h" |
| 19 | #include "IceClFlags.h" |
Karl Schimpf | 5ee234a | 2014-09-12 10:41:40 -0700 | [diff] [blame] | 20 | #include "IceDefs.h" |
Karl Schimpf | 9d98d79 | 2014-10-13 15:01:08 -0700 | [diff] [blame] | 21 | #include "IceGlobalInits.h" |
Karl Schimpf | 8d7abae | 2014-07-07 14:50:30 -0700 | [diff] [blame] | 22 | #include "IceTargetLowering.h" |
Karl Schimpf | 8d7abae | 2014-07-07 14:50:30 -0700 | [diff] [blame] | 23 | |
| 24 | using namespace Ice; |
| 25 | |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 26 | Translator::Translator(GlobalContext *Ctx) |
| 27 | : Ctx(Ctx), NextSequenceNumber(GlobalContext::getFirstSequenceNumber()), |
| 28 | ErrorStatus() {} |
Jim Stichnoth | 088b2be | 2014-10-23 12:02:08 -0700 | [diff] [blame] | 29 | |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 30 | IceString Translator::createUnnamedName(const IceString &Prefix, SizeT Index) { |
| 31 | if (Index == 0) |
| 32 | return Prefix; |
Karl Schimpf | 5ee234a | 2014-09-12 10:41:40 -0700 | [diff] [blame] | 33 | std::string Buffer; |
| 34 | llvm::raw_string_ostream StrBuf(Buffer); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 35 | StrBuf << Prefix << Index; |
| 36 | return StrBuf.str(); |
Karl Schimpf | 5ee234a | 2014-09-12 10:41:40 -0700 | [diff] [blame] | 37 | } |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 38 | |
| 39 | bool Translator::checkIfUnnamedNameSafe(const IceString &Name, const char *Kind, |
Jim Stichnoth | e4a8f40 | 2015-01-20 12:52:51 -0800 | [diff] [blame] | 40 | const IceString &Prefix) { |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 41 | if (Name.find(Prefix) == 0) { |
| 42 | for (size_t i = Prefix.size(); i < Name.size(); ++i) { |
| 43 | if (!isdigit(Name[i])) { |
| 44 | return false; |
| 45 | } |
| 46 | } |
Jim Stichnoth | e4a8f40 | 2015-01-20 12:52:51 -0800 | [diff] [blame] | 47 | OstreamLocker L(Ctx); |
| 48 | Ostream &Stream = Ctx->getStrDump(); |
Karl Schimpf | e3f64d0 | 2014-10-07 10:38:22 -0700 | [diff] [blame] | 49 | Stream << "Warning : Default " << Kind << " prefix '" << Prefix |
| 50 | << "' potentially conflicts with name '" << Name << "'.\n"; |
| 51 | return true; |
| 52 | } |
| 53 | return false; |
| 54 | } |
Karl Schimpf | 5ee234a | 2014-09-12 10:41:40 -0700 | [diff] [blame] | 55 | |
Jim Stichnoth | 8e92838 | 2015-02-02 17:03:08 -0800 | [diff] [blame] | 56 | void Translator::translateFcn(std::unique_ptr<Cfg> Func) { |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 57 | Ctx->optQueueBlockingPush(std::move(Func)); |
Karl Schimpf | 8d7abae | 2014-07-07 14:50:30 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 60 | void Translator::lowerGlobals( |
| 61 | std::unique_ptr<VariableDeclarationList> VariableDeclarations) { |
| 62 | EmitterWorkItem *Item = new EmitterWorkItem(getNextSequenceNumber(), |
| 63 | VariableDeclarations.release()); |
| 64 | Ctx->emitQueueBlockingPush(Item); |
Karl Schimpf | 6ff33d2 | 2014-09-22 10:28:42 -0700 | [diff] [blame] | 65 | } |