OLD | NEW |
---|---|
1 //===- subzero/src/PNaClTranslator.cpp - ICE from bitcode -----------------===// | 1 //===- subzero/src/PNaClTranslator.cpp - ICE from bitcode -----------------===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 // | 9 // |
10 // This file implements the PNaCl bitcode file to Ice, to machine code | 10 // This file implements the PNaCl bitcode file to Ice, to machine code |
(...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1083 for (Ice::Type ArgType : Signature.getArgList()) { | 1083 for (Ice::Type ArgType : Signature.getArgList()) { |
1084 Func->addArg(getNextInstVar(ArgType)); | 1084 Func->addArg(getNextInstVar(ArgType)); |
1085 } | 1085 } |
1086 } | 1086 } |
1087 } | 1087 } |
1088 | 1088 |
1089 ~FunctionParser() final {} | 1089 ~FunctionParser() final {} |
1090 | 1090 |
1091 const char *getBlockName() const override { return "function"; } | 1091 const char *getBlockName() const override { return "function"; } |
1092 | 1092 |
1093 Ice::Cfg *getFunc() const { return Func; } | 1093 const std::unique_ptr<Ice::Cfg> &getFunc() const { return Func; } |
1094 | 1094 |
1095 uint32_t getNumGlobalIDs() const { return CachedNumGlobalValueIDs; } | 1095 uint32_t getNumGlobalIDs() const { return CachedNumGlobalValueIDs; } |
1096 | 1096 |
1097 void setNextLocalInstIndex(Ice::Operand *Op) { | 1097 void setNextLocalInstIndex(Ice::Operand *Op) { |
1098 setOperand(NextLocalInstIndex++, Op); | 1098 setOperand(NextLocalInstIndex++, Op); |
1099 } | 1099 } |
1100 | 1100 |
1101 // Set the next constant ID to the given constant C. | 1101 // Set the next constant ID to the given constant C. |
1102 void setNextConstantID(Ice::Constant *C) { setNextLocalInstIndex(C); } | 1102 void setNextConstantID(Ice::Constant *C) { setNextLocalInstIndex(C); } |
1103 | 1103 |
(...skipping 19 matching lines...) Expand all Loading... | |
1123 StrBuf << "Value index " << Index << " not defined!"; | 1123 StrBuf << "Value index " << Index << " not defined!"; |
1124 Error(StrBuf.str()); | 1124 Error(StrBuf.str()); |
1125 report_fatal_error("Unable to continue"); | 1125 report_fatal_error("Unable to continue"); |
1126 } | 1126 } |
1127 return Op; | 1127 return Op; |
1128 } | 1128 } |
1129 | 1129 |
1130 private: | 1130 private: |
1131 Ice::TimerMarker Timer; | 1131 Ice::TimerMarker Timer; |
1132 // The corresponding ICE function defined by the function block. | 1132 // The corresponding ICE function defined by the function block. |
1133 Ice::Cfg *Func; | 1133 std::unique_ptr<Ice::Cfg> Func; |
1134 // The index to the current basic block being built. | 1134 // The index to the current basic block being built. |
1135 uint32_t CurrentBbIndex; | 1135 uint32_t CurrentBbIndex; |
1136 // The basic block being built. | 1136 // The basic block being built. |
1137 Ice::CfgNode *CurrentNode; | 1137 Ice::CfgNode *CurrentNode; |
1138 // The ID for the function. | 1138 // The ID for the function. |
1139 unsigned FcnId; | 1139 unsigned FcnId; |
1140 // The corresponding function declaration. | 1140 // The corresponding function declaration. |
1141 Ice::FunctionDeclaration *FuncDecl; | 1141 Ice::FunctionDeclaration *FuncDecl; |
1142 // Holds the dividing point between local and global absolute value indices. | 1142 // Holds the dividing point between local and global absolute value indices. |
1143 uint32_t CachedNumGlobalValueIDs; | 1143 uint32_t CachedNumGlobalValueIDs; |
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1813 // if the return type is void. In such cases, a placeholder value | 1813 // if the return type is void. In such cases, a placeholder value |
1814 // for the badly formed instruction is not needed. Hence, if Ty is | 1814 // for the badly formed instruction is not needed. Hence, if Ty is |
1815 // void, an error instruction is not appended. | 1815 // void, an error instruction is not appended. |
1816 // TODO(kschimpf) Remove error recovery once implementation complete. | 1816 // TODO(kschimpf) Remove error recovery once implementation complete. |
1817 void appendErrorInstruction(Ice::Type Ty) { | 1817 void appendErrorInstruction(Ice::Type Ty) { |
1818 // Note: we don't worry about downstream translation errors because | 1818 // Note: we don't worry about downstream translation errors because |
1819 // the function will not be translated if any errors occur. | 1819 // the function will not be translated if any errors occur. |
1820 if (Ty == Ice::IceType_void) | 1820 if (Ty == Ice::IceType_void) |
1821 return; | 1821 return; |
1822 Ice::Variable *Var = getNextInstVar(Ty); | 1822 Ice::Variable *Var = getNextInstVar(Ty); |
1823 CurrentNode->appendInst(Ice::InstAssign::create(Func, Var, Var)); | 1823 CurrentNode->appendInst(Ice::InstAssign::create(Func.get(), Var, Var)); |
1824 } | 1824 } |
1825 }; | 1825 }; |
1826 | 1826 |
1827 void FunctionParser::ExitBlock() { | 1827 void FunctionParser::ExitBlock() { |
1828 if (isIRGenerationDisabled()) { | 1828 if (isIRGenerationDisabled()) { |
1829 popTimerIfTimingEachFunction(); | 1829 popTimerIfTimingEachFunction(); |
1830 delete Func; | |
1831 return; | 1830 return; |
1832 } | 1831 } |
1833 // Before translating, check for blocks without instructions, and | 1832 // Before translating, check for blocks without instructions, and |
1834 // insert unreachable. This shouldn't happen, but be safe. | 1833 // insert unreachable. This shouldn't happen, but be safe. |
1835 unsigned Index = 0; | 1834 unsigned Index = 0; |
1836 for (Ice::CfgNode *Node : Func->getNodes()) { | 1835 for (Ice::CfgNode *Node : Func->getNodes()) { |
1837 if (Node->getInsts().empty()) { | 1836 if (Node->getInsts().empty()) { |
1838 std::string Buffer; | 1837 std::string Buffer; |
1839 raw_string_ostream StrBuf(Buffer); | 1838 raw_string_ostream StrBuf(Buffer); |
1840 StrBuf << "Basic block " << Index << " contains no instructions"; | 1839 StrBuf << "Basic block " << Index << " contains no instructions"; |
1841 Error(StrBuf.str()); | 1840 Error(StrBuf.str()); |
1842 // TODO(kschimpf) Remove error recovery once implementation complete. | 1841 // TODO(kschimpf) Remove error recovery once implementation complete. |
1843 Node->appendInst(Ice::InstUnreachable::create(Func)); | 1842 Node->appendInst(Ice::InstUnreachable::create(Func.get())); |
1844 } | 1843 } |
1845 ++Index; | 1844 ++Index; |
1846 } | 1845 } |
1847 Func->computePredecessors(); | 1846 Func->computePredecessors(); |
1848 // Temporarily end per-function timing, which will be resumed by the | 1847 // Temporarily end per-function timing, which will be resumed by the |
1849 // translator function. This is because translation may be done | 1848 // translator function. This is because translation may be done |
1850 // asynchronously in a separate thread. | 1849 // asynchronously in a separate thread. |
1851 popTimerIfTimingEachFunction(); | 1850 popTimerIfTimingEachFunction(); |
1852 // Note: Once any errors have been found, we turn off all | 1851 // Note: Once any errors have been found, we turn off all |
1853 // translation of all remaining functions. This allows use to see | 1852 // translation of all remaining functions. This allows use to see |
1854 // multiple errors, without adding extra checks to the translator | 1853 // multiple errors, without adding extra checks to the translator |
1855 // for such parsing errors. | 1854 // for such parsing errors. |
1856 if (Context->getNumErrors() == 0) | 1855 if (Context->getNumErrors() == 0) |
1857 getTranslator().translateFcn(Func); | 1856 getTranslator().translateFcn(std::move(Func)); |
1857 // The translator now has ownership of UniqueFunc. | |
JF
2015/02/02 17:11:47
The comment isn't right if there were errors! I sh
Jim Stichnoth
2015/02/02 18:48:48
Done.
| |
1858 } | 1858 } |
1859 | 1859 |
1860 void FunctionParser::ReportInvalidBinaryOp(Ice::InstArithmetic::OpKind Op, | 1860 void FunctionParser::ReportInvalidBinaryOp(Ice::InstArithmetic::OpKind Op, |
1861 Ice::Type OpTy) { | 1861 Ice::Type OpTy) { |
1862 std::string Buffer; | 1862 std::string Buffer; |
1863 raw_string_ostream StrBuf(Buffer); | 1863 raw_string_ostream StrBuf(Buffer); |
1864 StrBuf << "Invalid operator type for " << Ice::InstArithmetic::getOpName(Op) | 1864 StrBuf << "Invalid operator type for " << Ice::InstArithmetic::getOpName(Op) |
1865 << ". Found " << OpTy; | 1865 << ". Found " << OpTy; |
1866 Error(StrBuf.str()); | 1866 Error(StrBuf.str()); |
1867 } | 1867 } |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1923 appendErrorInstruction(Type1); | 1923 appendErrorInstruction(Type1); |
1924 return; | 1924 return; |
1925 } | 1925 } |
1926 | 1926 |
1927 Ice::InstArithmetic::OpKind Opcode; | 1927 Ice::InstArithmetic::OpKind Opcode; |
1928 if (!convertBinopOpcode(Values[2], Type1, Opcode)) { | 1928 if (!convertBinopOpcode(Values[2], Type1, Opcode)) { |
1929 appendErrorInstruction(Type1); | 1929 appendErrorInstruction(Type1); |
1930 return; | 1930 return; |
1931 } | 1931 } |
1932 CurrentNode->appendInst(Ice::InstArithmetic::create( | 1932 CurrentNode->appendInst(Ice::InstArithmetic::create( |
1933 Func, Opcode, getNextInstVar(Type1), Op1, Op2)); | 1933 Func.get(), Opcode, getNextInstVar(Type1), Op1, Op2)); |
1934 return; | 1934 return; |
1935 } | 1935 } |
1936 case naclbitc::FUNC_CODE_INST_CAST: { | 1936 case naclbitc::FUNC_CODE_INST_CAST: { |
1937 // CAST: [opval, destty, castopc] | 1937 // CAST: [opval, destty, castopc] |
1938 if (!isValidRecordSize(3, "cast")) | 1938 if (!isValidRecordSize(3, "cast")) |
1939 return; | 1939 return; |
1940 Ice::Operand *Src = getRelativeOperand(Values[0], BaseIndex); | 1940 Ice::Operand *Src = getRelativeOperand(Values[0], BaseIndex); |
1941 Ice::Type CastType = Context->getSimpleTypeByID(Values[1]); | 1941 Ice::Type CastType = Context->getSimpleTypeByID(Values[1]); |
1942 Ice::InstCast::OpKind CastKind; | 1942 Ice::InstCast::OpKind CastKind; |
1943 if (isIRGenerationDisabled()) { | 1943 if (isIRGenerationDisabled()) { |
1944 assert(Src == nullptr); | 1944 assert(Src == nullptr); |
1945 setNextLocalInstIndex(nullptr); | 1945 setNextLocalInstIndex(nullptr); |
1946 return; | 1946 return; |
1947 } | 1947 } |
1948 if (!convertCastOpToIceOp(Values[2], Src->getType(), CastType, CastKind)) { | 1948 if (!convertCastOpToIceOp(Values[2], Src->getType(), CastType, CastKind)) { |
1949 appendErrorInstruction(CastType); | 1949 appendErrorInstruction(CastType); |
1950 return; | 1950 return; |
1951 } | 1951 } |
1952 CurrentNode->appendInst( | 1952 CurrentNode->appendInst(Ice::InstCast::create( |
1953 Ice::InstCast::create(Func, CastKind, getNextInstVar(CastType), Src)); | 1953 Func.get(), CastKind, getNextInstVar(CastType), Src)); |
1954 return; | 1954 return; |
1955 } | 1955 } |
1956 case naclbitc::FUNC_CODE_INST_VSELECT: { | 1956 case naclbitc::FUNC_CODE_INST_VSELECT: { |
1957 // VSELECT: [opval, opval, pred] | 1957 // VSELECT: [opval, opval, pred] |
1958 if (!isValidRecordSize(3, "select")) | 1958 if (!isValidRecordSize(3, "select")) |
1959 return; | 1959 return; |
1960 Ice::Operand *ThenVal = getRelativeOperand(Values[0], BaseIndex); | 1960 Ice::Operand *ThenVal = getRelativeOperand(Values[0], BaseIndex); |
1961 Ice::Operand *ElseVal = getRelativeOperand(Values[1], BaseIndex); | 1961 Ice::Operand *ElseVal = getRelativeOperand(Values[1], BaseIndex); |
1962 Ice::Operand *CondVal = getRelativeOperand(Values[2], BaseIndex); | 1962 Ice::Operand *CondVal = getRelativeOperand(Values[2], BaseIndex); |
1963 if (isIRGenerationDisabled()) { | 1963 if (isIRGenerationDisabled()) { |
(...skipping 28 matching lines...) Expand all Loading... | |
1992 } else if (CondVal->getType() != Ice::IceType_i1) { | 1992 } else if (CondVal->getType() != Ice::IceType_i1) { |
1993 std::string Buffer; | 1993 std::string Buffer; |
1994 raw_string_ostream StrBuf(Buffer); | 1994 raw_string_ostream StrBuf(Buffer); |
1995 StrBuf << "Select condition " << CondVal | 1995 StrBuf << "Select condition " << CondVal |
1996 << " not type i1. Found: " << CondVal->getType(); | 1996 << " not type i1. Found: " << CondVal->getType(); |
1997 Error(StrBuf.str()); | 1997 Error(StrBuf.str()); |
1998 appendErrorInstruction(ThenType); | 1998 appendErrorInstruction(ThenType); |
1999 return; | 1999 return; |
2000 } | 2000 } |
2001 CurrentNode->appendInst(Ice::InstSelect::create( | 2001 CurrentNode->appendInst(Ice::InstSelect::create( |
2002 Func, getNextInstVar(ThenType), CondVal, ThenVal, ElseVal)); | 2002 Func.get(), getNextInstVar(ThenType), CondVal, ThenVal, ElseVal)); |
2003 return; | 2003 return; |
2004 } | 2004 } |
2005 case naclbitc::FUNC_CODE_INST_EXTRACTELT: { | 2005 case naclbitc::FUNC_CODE_INST_EXTRACTELT: { |
2006 // EXTRACTELT: [opval, opval] | 2006 // EXTRACTELT: [opval, opval] |
2007 if (!isValidRecordSize(2, "extract element")) | 2007 if (!isValidRecordSize(2, "extract element")) |
2008 return; | 2008 return; |
2009 Ice::Operand *Vec = getRelativeOperand(Values[0], BaseIndex); | 2009 Ice::Operand *Vec = getRelativeOperand(Values[0], BaseIndex); |
2010 Ice::Operand *Index = getRelativeOperand(Values[1], BaseIndex); | 2010 Ice::Operand *Index = getRelativeOperand(Values[1], BaseIndex); |
2011 if (isIRGenerationDisabled()) { | 2011 if (isIRGenerationDisabled()) { |
2012 assert(Vec == nullptr && Index == nullptr); | 2012 assert(Vec == nullptr && Index == nullptr); |
2013 setNextLocalInstIndex(nullptr); | 2013 setNextLocalInstIndex(nullptr); |
2014 return; | 2014 return; |
2015 } | 2015 } |
2016 Ice::Type VecType = Vec->getType(); | 2016 Ice::Type VecType = Vec->getType(); |
2017 VectorIndexCheckValue IndexCheckValue = validateVectorIndex(Vec, Index); | 2017 VectorIndexCheckValue IndexCheckValue = validateVectorIndex(Vec, Index); |
2018 if (IndexCheckValue != VectorIndexValid) { | 2018 if (IndexCheckValue != VectorIndexValid) { |
2019 std::string Buffer; | 2019 std::string Buffer; |
2020 raw_string_ostream StrBuf(Buffer); | 2020 raw_string_ostream StrBuf(Buffer); |
2021 dumpVectorIndexCheckValue(StrBuf, IndexCheckValue); | 2021 dumpVectorIndexCheckValue(StrBuf, IndexCheckValue); |
2022 StrBuf << ": extractelement " << VecType << " " << *Vec << ", " | 2022 StrBuf << ": extractelement " << VecType << " " << *Vec << ", " |
2023 << Index->getType() << " " << *Index; | 2023 << Index->getType() << " " << *Index; |
2024 Error(StrBuf.str()); | 2024 Error(StrBuf.str()); |
2025 appendErrorInstruction(VecType); | 2025 appendErrorInstruction(VecType); |
2026 return; | 2026 return; |
2027 } | 2027 } |
2028 CurrentNode->appendInst(Ice::InstExtractElement::create( | 2028 CurrentNode->appendInst(Ice::InstExtractElement::create( |
2029 Func, getNextInstVar(typeElementType(VecType)), Vec, Index)); | 2029 Func.get(), getNextInstVar(typeElementType(VecType)), Vec, Index)); |
2030 return; | 2030 return; |
2031 } | 2031 } |
2032 case naclbitc::FUNC_CODE_INST_INSERTELT: { | 2032 case naclbitc::FUNC_CODE_INST_INSERTELT: { |
2033 // INSERTELT: [opval, opval, opval] | 2033 // INSERTELT: [opval, opval, opval] |
2034 if (!isValidRecordSize(3, "insert element")) | 2034 if (!isValidRecordSize(3, "insert element")) |
2035 return; | 2035 return; |
2036 Ice::Operand *Vec = getRelativeOperand(Values[0], BaseIndex); | 2036 Ice::Operand *Vec = getRelativeOperand(Values[0], BaseIndex); |
2037 Ice::Operand *Elt = getRelativeOperand(Values[1], BaseIndex); | 2037 Ice::Operand *Elt = getRelativeOperand(Values[1], BaseIndex); |
2038 Ice::Operand *Index = getRelativeOperand(Values[2], BaseIndex); | 2038 Ice::Operand *Index = getRelativeOperand(Values[2], BaseIndex); |
2039 if (isIRGenerationDisabled()) { | 2039 if (isIRGenerationDisabled()) { |
2040 assert(Vec == nullptr && Elt == nullptr && Index == nullptr); | 2040 assert(Vec == nullptr && Elt == nullptr && Index == nullptr); |
2041 setNextLocalInstIndex(nullptr); | 2041 setNextLocalInstIndex(nullptr); |
2042 return; | 2042 return; |
2043 } | 2043 } |
2044 Ice::Type VecType = Vec->getType(); | 2044 Ice::Type VecType = Vec->getType(); |
2045 VectorIndexCheckValue IndexCheckValue = validateVectorIndex(Vec, Index); | 2045 VectorIndexCheckValue IndexCheckValue = validateVectorIndex(Vec, Index); |
2046 if (IndexCheckValue != VectorIndexValid) { | 2046 if (IndexCheckValue != VectorIndexValid) { |
2047 std::string Buffer; | 2047 std::string Buffer; |
2048 raw_string_ostream StrBuf(Buffer); | 2048 raw_string_ostream StrBuf(Buffer); |
2049 dumpVectorIndexCheckValue(StrBuf, IndexCheckValue); | 2049 dumpVectorIndexCheckValue(StrBuf, IndexCheckValue); |
2050 StrBuf << ": insertelement " << VecType << " " << *Vec << ", " | 2050 StrBuf << ": insertelement " << VecType << " " << *Vec << ", " |
2051 << Elt->getType() << " " << *Elt << ", " << Index->getType() << " " | 2051 << Elt->getType() << " " << *Elt << ", " << Index->getType() << " " |
2052 << *Index; | 2052 << *Index; |
2053 Error(StrBuf.str()); | 2053 Error(StrBuf.str()); |
2054 appendErrorInstruction(Elt->getType()); | 2054 appendErrorInstruction(Elt->getType()); |
2055 return; | 2055 return; |
2056 } | 2056 } |
2057 CurrentNode->appendInst(Ice::InstInsertElement::create( | 2057 CurrentNode->appendInst(Ice::InstInsertElement::create( |
2058 Func, getNextInstVar(VecType), Vec, Elt, Index)); | 2058 Func.get(), getNextInstVar(VecType), Vec, Elt, Index)); |
2059 return; | 2059 return; |
2060 } | 2060 } |
2061 case naclbitc::FUNC_CODE_INST_CMP2: { | 2061 case naclbitc::FUNC_CODE_INST_CMP2: { |
2062 // CMP2: [opval, opval, pred] | 2062 // CMP2: [opval, opval, pred] |
2063 if (!isValidRecordSize(3, "compare")) | 2063 if (!isValidRecordSize(3, "compare")) |
2064 return; | 2064 return; |
2065 Ice::Operand *Op1 = getRelativeOperand(Values[0], BaseIndex); | 2065 Ice::Operand *Op1 = getRelativeOperand(Values[0], BaseIndex); |
2066 Ice::Operand *Op2 = getRelativeOperand(Values[1], BaseIndex); | 2066 Ice::Operand *Op2 = getRelativeOperand(Values[1], BaseIndex); |
2067 if (isIRGenerationDisabled()) { | 2067 if (isIRGenerationDisabled()) { |
2068 assert(Op1 == nullptr && Op2 == nullptr); | 2068 assert(Op1 == nullptr && Op2 == nullptr); |
(...skipping 24 matching lines...) Expand all Loading... | |
2093 Ice::InstIcmp::ICond Cond; | 2093 Ice::InstIcmp::ICond Cond; |
2094 if (!convertNaClBitcICmpOpToIce(Values[2], Cond)) { | 2094 if (!convertNaClBitcICmpOpToIce(Values[2], Cond)) { |
2095 std::string Buffer; | 2095 std::string Buffer; |
2096 raw_string_ostream StrBuf(Buffer); | 2096 raw_string_ostream StrBuf(Buffer); |
2097 StrBuf << "Compare record contains unknown integer predicate index: " | 2097 StrBuf << "Compare record contains unknown integer predicate index: " |
2098 << Values[2]; | 2098 << Values[2]; |
2099 Error(StrBuf.str()); | 2099 Error(StrBuf.str()); |
2100 appendErrorInstruction(DestType); | 2100 appendErrorInstruction(DestType); |
2101 } | 2101 } |
2102 CurrentNode->appendInst( | 2102 CurrentNode->appendInst( |
2103 Ice::InstIcmp::create(Func, Cond, Dest, Op1, Op2)); | 2103 Ice::InstIcmp::create(Func.get(), Cond, Dest, Op1, Op2)); |
2104 } else if (isFloatingType(Op1Type)) { | 2104 } else if (isFloatingType(Op1Type)) { |
2105 Ice::InstFcmp::FCond Cond; | 2105 Ice::InstFcmp::FCond Cond; |
2106 if (!convertNaClBitcFCompOpToIce(Values[2], Cond)) { | 2106 if (!convertNaClBitcFCompOpToIce(Values[2], Cond)) { |
2107 std::string Buffer; | 2107 std::string Buffer; |
2108 raw_string_ostream StrBuf(Buffer); | 2108 raw_string_ostream StrBuf(Buffer); |
2109 StrBuf << "Compare record contains unknown float predicate index: " | 2109 StrBuf << "Compare record contains unknown float predicate index: " |
2110 << Values[2]; | 2110 << Values[2]; |
2111 Error(StrBuf.str()); | 2111 Error(StrBuf.str()); |
2112 appendErrorInstruction(DestType); | 2112 appendErrorInstruction(DestType); |
2113 } | 2113 } |
2114 CurrentNode->appendInst( | 2114 CurrentNode->appendInst( |
2115 Ice::InstFcmp::create(Func, Cond, Dest, Op1, Op2)); | 2115 Ice::InstFcmp::create(Func.get(), Cond, Dest, Op1, Op2)); |
2116 } else { | 2116 } else { |
2117 // Not sure this can happen, but be safe. | 2117 // Not sure this can happen, but be safe. |
2118 std::string Buffer; | 2118 std::string Buffer; |
2119 raw_string_ostream StrBuf(Buffer); | 2119 raw_string_ostream StrBuf(Buffer); |
2120 StrBuf << "Compare on type not understood: " << Op1Type; | 2120 StrBuf << "Compare on type not understood: " << Op1Type; |
2121 Error(StrBuf.str()); | 2121 Error(StrBuf.str()); |
2122 appendErrorInstruction(DestType); | 2122 appendErrorInstruction(DestType); |
2123 return; | 2123 return; |
2124 } | 2124 } |
2125 return; | 2125 return; |
2126 } | 2126 } |
2127 case naclbitc::FUNC_CODE_INST_RET: { | 2127 case naclbitc::FUNC_CODE_INST_RET: { |
2128 // RET: [opval?] | 2128 // RET: [opval?] |
2129 if (!isValidRecordSizeInRange(0, 1, "return")) | 2129 if (!isValidRecordSizeInRange(0, 1, "return")) |
2130 return; | 2130 return; |
2131 if (Values.empty()) { | 2131 if (Values.empty()) { |
2132 if (isIRGenerationDisabled()) | 2132 if (isIRGenerationDisabled()) |
2133 return; | 2133 return; |
2134 CurrentNode->appendInst(Ice::InstRet::create(Func)); | 2134 CurrentNode->appendInst(Ice::InstRet::create(Func.get())); |
2135 } else { | 2135 } else { |
2136 Ice::Operand *RetVal = getRelativeOperand(Values[0], BaseIndex); | 2136 Ice::Operand *RetVal = getRelativeOperand(Values[0], BaseIndex); |
2137 if (isIRGenerationDisabled()) { | 2137 if (isIRGenerationDisabled()) { |
2138 assert(RetVal == nullptr); | 2138 assert(RetVal == nullptr); |
2139 return; | 2139 return; |
2140 } | 2140 } |
2141 CurrentNode->appendInst(Ice::InstRet::create(Func, RetVal)); | 2141 CurrentNode->appendInst(Ice::InstRet::create(Func.get(), RetVal)); |
2142 } | 2142 } |
2143 InstIsTerminating = true; | 2143 InstIsTerminating = true; |
2144 return; | 2144 return; |
2145 } | 2145 } |
2146 case naclbitc::FUNC_CODE_INST_BR: { | 2146 case naclbitc::FUNC_CODE_INST_BR: { |
2147 if (Values.size() == 1) { | 2147 if (Values.size() == 1) { |
2148 // BR: [bb#] | 2148 // BR: [bb#] |
2149 if (isIRGenerationDisabled()) | 2149 if (isIRGenerationDisabled()) |
2150 return; | 2150 return; |
2151 Ice::CfgNode *Block = getBranchBasicBlock(Values[0]); | 2151 Ice::CfgNode *Block = getBranchBasicBlock(Values[0]); |
2152 if (Block == nullptr) | 2152 if (Block == nullptr) |
2153 return; | 2153 return; |
2154 CurrentNode->appendInst(Ice::InstBr::create(Func, Block)); | 2154 CurrentNode->appendInst(Ice::InstBr::create(Func.get(), Block)); |
2155 } else { | 2155 } else { |
2156 // BR: [bb#, bb#, opval] | 2156 // BR: [bb#, bb#, opval] |
2157 if (!isValidRecordSize(3, "branch")) | 2157 if (!isValidRecordSize(3, "branch")) |
2158 return; | 2158 return; |
2159 Ice::Operand *Cond = getRelativeOperand(Values[2], BaseIndex); | 2159 Ice::Operand *Cond = getRelativeOperand(Values[2], BaseIndex); |
2160 if (isIRGenerationDisabled()) { | 2160 if (isIRGenerationDisabled()) { |
2161 assert(Cond == nullptr); | 2161 assert(Cond == nullptr); |
2162 return; | 2162 return; |
2163 } | 2163 } |
2164 if (Cond->getType() != Ice::IceType_i1) { | 2164 if (Cond->getType() != Ice::IceType_i1) { |
2165 std::string Buffer; | 2165 std::string Buffer; |
2166 raw_string_ostream StrBuf(Buffer); | 2166 raw_string_ostream StrBuf(Buffer); |
2167 StrBuf << "Branch condition " << *Cond | 2167 StrBuf << "Branch condition " << *Cond |
2168 << " not i1. Found: " << Cond->getType(); | 2168 << " not i1. Found: " << Cond->getType(); |
2169 Error(StrBuf.str()); | 2169 Error(StrBuf.str()); |
2170 return; | 2170 return; |
2171 } | 2171 } |
2172 Ice::CfgNode *ThenBlock = getBranchBasicBlock(Values[0]); | 2172 Ice::CfgNode *ThenBlock = getBranchBasicBlock(Values[0]); |
2173 Ice::CfgNode *ElseBlock = getBranchBasicBlock(Values[1]); | 2173 Ice::CfgNode *ElseBlock = getBranchBasicBlock(Values[1]); |
2174 if (ThenBlock == nullptr || ElseBlock == nullptr) | 2174 if (ThenBlock == nullptr || ElseBlock == nullptr) |
2175 return; | 2175 return; |
2176 CurrentNode->appendInst( | 2176 CurrentNode->appendInst( |
2177 Ice::InstBr::create(Func, Cond, ThenBlock, ElseBlock)); | 2177 Ice::InstBr::create(Func.get(), Cond, ThenBlock, ElseBlock)); |
2178 } | 2178 } |
2179 InstIsTerminating = true; | 2179 InstIsTerminating = true; |
2180 return; | 2180 return; |
2181 } | 2181 } |
2182 case naclbitc::FUNC_CODE_INST_SWITCH: { | 2182 case naclbitc::FUNC_CODE_INST_SWITCH: { |
2183 // SWITCH: [Condty, Cond, BbIndex, NumCases Case ...] | 2183 // SWITCH: [Condty, Cond, BbIndex, NumCases Case ...] |
2184 // where Case = [1, 1, Value, BbIndex]. | 2184 // where Case = [1, 1, Value, BbIndex]. |
2185 // | 2185 // |
2186 // Note: Unlike most instructions, we don't infer the type of | 2186 // Note: Unlike most instructions, we don't infer the type of |
2187 // Cond, but provide it as a separate field. There are also | 2187 // Cond, but provide it as a separate field. There are also |
(...skipping 26 matching lines...) Expand all Loading... | |
2214 return; | 2214 return; |
2215 } | 2215 } |
2216 Ice::CfgNode *DefaultLabel = | 2216 Ice::CfgNode *DefaultLabel = |
2217 isIRGenDisabled ? nullptr : getBranchBasicBlock(Values[2]); | 2217 isIRGenDisabled ? nullptr : getBranchBasicBlock(Values[2]); |
2218 unsigned NumCases = Values[3]; | 2218 unsigned NumCases = Values[3]; |
2219 | 2219 |
2220 // Now recognize each of the cases. | 2220 // Now recognize each of the cases. |
2221 if (!isValidRecordSize(4 + NumCases * 4, "switch")) | 2221 if (!isValidRecordSize(4 + NumCases * 4, "switch")) |
2222 return; | 2222 return; |
2223 Ice::InstSwitch *Switch = | 2223 Ice::InstSwitch *Switch = |
2224 isIRGenDisabled ? nullptr : Ice::InstSwitch::create(Func, NumCases, | 2224 isIRGenDisabled |
2225 Cond, DefaultLabel); | 2225 ? nullptr |
2226 : Ice::InstSwitch::create(Func.get(), NumCases, Cond, DefaultLabel); | |
2226 unsigned ValCaseIndex = 4; // index to beginning of case entry. | 2227 unsigned ValCaseIndex = 4; // index to beginning of case entry. |
2227 for (unsigned CaseIndex = 0; CaseIndex < NumCases; | 2228 for (unsigned CaseIndex = 0; CaseIndex < NumCases; |
2228 ++CaseIndex, ValCaseIndex += 4) { | 2229 ++CaseIndex, ValCaseIndex += 4) { |
2229 if (Values[ValCaseIndex] != 1 || Values[ValCaseIndex + 1] != 1) { | 2230 if (Values[ValCaseIndex] != 1 || Values[ValCaseIndex + 1] != 1) { |
2230 std::string Buffer; | 2231 std::string Buffer; |
2231 raw_string_ostream StrBuf(Buffer); | 2232 raw_string_ostream StrBuf(Buffer); |
2232 StrBuf << "Sequence [1, 1, value, label] expected for case entry " | 2233 StrBuf << "Sequence [1, 1, value, label] expected for case entry " |
2233 << "in switch record. (at index" << ValCaseIndex << ")"; | 2234 << "in switch record. (at index" << ValCaseIndex << ")"; |
2234 Error(StrBuf.str()); | 2235 Error(StrBuf.str()); |
2235 return; | 2236 return; |
(...skipping 10 matching lines...) Expand all Loading... | |
2246 CurrentNode->appendInst(Switch); | 2247 CurrentNode->appendInst(Switch); |
2247 InstIsTerminating = true; | 2248 InstIsTerminating = true; |
2248 return; | 2249 return; |
2249 } | 2250 } |
2250 case naclbitc::FUNC_CODE_INST_UNREACHABLE: { | 2251 case naclbitc::FUNC_CODE_INST_UNREACHABLE: { |
2251 // UNREACHABLE: [] | 2252 // UNREACHABLE: [] |
2252 if (!isValidRecordSize(0, "unreachable")) | 2253 if (!isValidRecordSize(0, "unreachable")) |
2253 return; | 2254 return; |
2254 if (isIRGenerationDisabled()) | 2255 if (isIRGenerationDisabled()) |
2255 return; | 2256 return; |
2256 CurrentNode->appendInst(Ice::InstUnreachable::create(Func)); | 2257 CurrentNode->appendInst(Ice::InstUnreachable::create(Func.get())); |
2257 InstIsTerminating = true; | 2258 InstIsTerminating = true; |
2258 return; | 2259 return; |
2259 } | 2260 } |
2260 case naclbitc::FUNC_CODE_INST_PHI: { | 2261 case naclbitc::FUNC_CODE_INST_PHI: { |
2261 // PHI: [ty, val1, bb1, ..., valN, bbN] for n >= 2. | 2262 // PHI: [ty, val1, bb1, ..., valN, bbN] for n >= 2. |
2262 if (!isValidRecordSizeAtLeast(3, "phi")) | 2263 if (!isValidRecordSizeAtLeast(3, "phi")) |
2263 return; | 2264 return; |
2264 Ice::Type Ty = Context->getSimpleTypeByID(Values[0]); | 2265 Ice::Type Ty = Context->getSimpleTypeByID(Values[0]); |
2265 if ((Values.size() & 0x1) == 0) { | 2266 if ((Values.size() & 0x1) == 0) { |
2266 // Not an odd number of values. | 2267 // Not an odd number of values. |
(...skipping 11 matching lines...) Expand all Loading... | |
2278 if (isIRGenerationDisabled()) { | 2279 if (isIRGenerationDisabled()) { |
2279 // Verify arguments are defined before quitting. | 2280 // Verify arguments are defined before quitting. |
2280 for (unsigned i = 1; i < Values.size(); i += 2) { | 2281 for (unsigned i = 1; i < Values.size(); i += 2) { |
2281 assert(getRelativeOperand(NaClDecodeSignRotatedValue(Values[i]), | 2282 assert(getRelativeOperand(NaClDecodeSignRotatedValue(Values[i]), |
2282 BaseIndex) == nullptr); | 2283 BaseIndex) == nullptr); |
2283 } | 2284 } |
2284 setNextLocalInstIndex(nullptr); | 2285 setNextLocalInstIndex(nullptr); |
2285 return; | 2286 return; |
2286 } | 2287 } |
2287 Ice::Variable *Dest = getNextInstVar(Ty); | 2288 Ice::Variable *Dest = getNextInstVar(Ty); |
2288 Ice::InstPhi *Phi = Ice::InstPhi::create(Func, Values.size() >> 1, Dest); | 2289 Ice::InstPhi *Phi = |
2290 Ice::InstPhi::create(Func.get(), Values.size() >> 1, Dest); | |
2289 for (unsigned i = 1; i < Values.size(); i += 2) { | 2291 for (unsigned i = 1; i < Values.size(); i += 2) { |
2290 Ice::Operand *Op = | 2292 Ice::Operand *Op = |
2291 getRelativeOperand(NaClDecodeSignRotatedValue(Values[i]), BaseIndex); | 2293 getRelativeOperand(NaClDecodeSignRotatedValue(Values[i]), BaseIndex); |
2292 if (Op->getType() != Ty) { | 2294 if (Op->getType() != Ty) { |
2293 std::string Buffer; | 2295 std::string Buffer; |
2294 raw_string_ostream StrBuf(Buffer); | 2296 raw_string_ostream StrBuf(Buffer); |
2295 StrBuf << "Value " << *Op << " not type " << Ty | 2297 StrBuf << "Value " << *Op << " not type " << Ty |
2296 << " in phi instruction. Found: " << Op->getType(); | 2298 << " in phi instruction. Found: " << Op->getType(); |
2297 Error(StrBuf.str()); | 2299 Error(StrBuf.str()); |
2298 appendErrorInstruction(Ty); | 2300 appendErrorInstruction(Ty); |
(...skipping 18 matching lines...) Expand all Loading... | |
2317 } | 2319 } |
2318 Ice::Type PtrTy = Ice::getPointerType(); | 2320 Ice::Type PtrTy = Ice::getPointerType(); |
2319 if (ByteCount->getType() != Ice::IceType_i32) { | 2321 if (ByteCount->getType() != Ice::IceType_i32) { |
2320 std::string Buffer; | 2322 std::string Buffer; |
2321 raw_string_ostream StrBuf(Buffer); | 2323 raw_string_ostream StrBuf(Buffer); |
2322 StrBuf << "Alloca on non-i32 value. Found: " << *ByteCount; | 2324 StrBuf << "Alloca on non-i32 value. Found: " << *ByteCount; |
2323 Error(StrBuf.str()); | 2325 Error(StrBuf.str()); |
2324 appendErrorInstruction(PtrTy); | 2326 appendErrorInstruction(PtrTy); |
2325 return; | 2327 return; |
2326 } | 2328 } |
2327 CurrentNode->appendInst(Ice::InstAlloca::create(Func, ByteCount, Alignment, | 2329 CurrentNode->appendInst(Ice::InstAlloca::create( |
2328 getNextInstVar(PtrTy))); | 2330 Func.get(), ByteCount, Alignment, getNextInstVar(PtrTy))); |
2329 return; | 2331 return; |
2330 } | 2332 } |
2331 case naclbitc::FUNC_CODE_INST_LOAD: { | 2333 case naclbitc::FUNC_CODE_INST_LOAD: { |
2332 // LOAD: [address, align, ty] | 2334 // LOAD: [address, align, ty] |
2333 if (!isValidRecordSize(3, "load")) | 2335 if (!isValidRecordSize(3, "load")) |
2334 return; | 2336 return; |
2335 Ice::Operand *Address = getRelativeOperand(Values[0], BaseIndex); | 2337 Ice::Operand *Address = getRelativeOperand(Values[0], BaseIndex); |
2336 Ice::Type Ty = Context->getSimpleTypeByID(Values[2]); | 2338 Ice::Type Ty = Context->getSimpleTypeByID(Values[2]); |
2337 uint32_t Alignment; | 2339 uint32_t Alignment; |
2338 extractAlignment("Load", Values[1], Alignment); | 2340 extractAlignment("Load", Values[1], Alignment); |
2339 if (isIRGenerationDisabled()) { | 2341 if (isIRGenerationDisabled()) { |
2340 assert(Address == nullptr); | 2342 assert(Address == nullptr); |
2341 setNextLocalInstIndex(nullptr); | 2343 setNextLocalInstIndex(nullptr); |
2342 return; | 2344 return; |
2343 } | 2345 } |
2344 if (!isValidPointerType(Address, "Load")) { | 2346 if (!isValidPointerType(Address, "Load")) { |
2345 appendErrorInstruction(Ty); | 2347 appendErrorInstruction(Ty); |
2346 return; | 2348 return; |
2347 } | 2349 } |
2348 if (!isValidLoadStoreAlignment(Alignment, Ty, "Load")) { | 2350 if (!isValidLoadStoreAlignment(Alignment, Ty, "Load")) { |
2349 appendErrorInstruction(Ty); | 2351 appendErrorInstruction(Ty); |
2350 return; | 2352 return; |
2351 } | 2353 } |
2352 CurrentNode->appendInst( | 2354 CurrentNode->appendInst(Ice::InstLoad::create( |
2353 Ice::InstLoad::create(Func, getNextInstVar(Ty), Address, Alignment)); | 2355 Func.get(), getNextInstVar(Ty), Address, Alignment)); |
2354 return; | 2356 return; |
2355 } | 2357 } |
2356 case naclbitc::FUNC_CODE_INST_STORE: { | 2358 case naclbitc::FUNC_CODE_INST_STORE: { |
2357 // STORE: [address, value, align] | 2359 // STORE: [address, value, align] |
2358 if (!isValidRecordSize(3, "store")) | 2360 if (!isValidRecordSize(3, "store")) |
2359 return; | 2361 return; |
2360 Ice::Operand *Address = getRelativeOperand(Values[0], BaseIndex); | 2362 Ice::Operand *Address = getRelativeOperand(Values[0], BaseIndex); |
2361 Ice::Operand *Value = getRelativeOperand(Values[1], BaseIndex); | 2363 Ice::Operand *Value = getRelativeOperand(Values[1], BaseIndex); |
2362 uint32_t Alignment; | 2364 uint32_t Alignment; |
2363 extractAlignment("Store", Values[2], Alignment); | 2365 extractAlignment("Store", Values[2], Alignment); |
2364 if (isIRGenerationDisabled()) { | 2366 if (isIRGenerationDisabled()) { |
2365 assert(Address == nullptr && Value == nullptr); | 2367 assert(Address == nullptr && Value == nullptr); |
2366 return; | 2368 return; |
2367 } | 2369 } |
2368 if (!isValidPointerType(Address, "Store")) | 2370 if (!isValidPointerType(Address, "Store")) |
2369 return; | 2371 return; |
2370 if (!isValidLoadStoreAlignment(Alignment, Value->getType(), "Store")) | 2372 if (!isValidLoadStoreAlignment(Alignment, Value->getType(), "Store")) |
2371 return; | 2373 return; |
2372 CurrentNode->appendInst( | 2374 CurrentNode->appendInst( |
2373 Ice::InstStore::create(Func, Value, Address, Alignment)); | 2375 Ice::InstStore::create(Func.get(), Value, Address, Alignment)); |
2374 return; | 2376 return; |
2375 } | 2377 } |
2376 case naclbitc::FUNC_CODE_INST_CALL: | 2378 case naclbitc::FUNC_CODE_INST_CALL: |
2377 case naclbitc::FUNC_CODE_INST_CALL_INDIRECT: { | 2379 case naclbitc::FUNC_CODE_INST_CALL_INDIRECT: { |
2378 // CALL: [cc, fnid, arg0, arg1...] | 2380 // CALL: [cc, fnid, arg0, arg1...] |
2379 // CALL_INDIRECT: [cc, fn, returnty, args...] | 2381 // CALL_INDIRECT: [cc, fn, returnty, args...] |
2380 // | 2382 // |
2381 // Note: The difference between CALL and CALL_INDIRECT is that | 2383 // Note: The difference between CALL and CALL_INDIRECT is that |
2382 // CALL has a reference to an explicit function declaration, while | 2384 // CALL has a reference to an explicit function declaration, while |
2383 // the CALL_INDIRECT is just an address. For CALL, we can infer | 2385 // the CALL_INDIRECT is just an address. For CALL, we can infer |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2452 setNextLocalInstIndex(nullptr); | 2454 setNextLocalInstIndex(nullptr); |
2453 return; | 2455 return; |
2454 } | 2456 } |
2455 | 2457 |
2456 // Create the call instruction. | 2458 // Create the call instruction. |
2457 Ice::Variable *Dest = (ReturnType == Ice::IceType_void) | 2459 Ice::Variable *Dest = (ReturnType == Ice::IceType_void) |
2458 ? nullptr | 2460 ? nullptr |
2459 : getNextInstVar(ReturnType); | 2461 : getNextInstVar(ReturnType); |
2460 Ice::InstCall *Inst = nullptr; | 2462 Ice::InstCall *Inst = nullptr; |
2461 if (IntrinsicInfo) { | 2463 if (IntrinsicInfo) { |
2462 Inst = Ice::InstIntrinsicCall::create(Func, NumParams, Dest, Callee, | 2464 Inst = Ice::InstIntrinsicCall::create(Func.get(), NumParams, Dest, Callee, |
2463 IntrinsicInfo->Info); | 2465 IntrinsicInfo->Info); |
2464 } else { | 2466 } else { |
2465 Inst = Ice::InstCall::create(Func, NumParams, Dest, Callee, IsTailCall); | 2467 Inst = Ice::InstCall::create(Func.get(), NumParams, Dest, Callee, |
2468 IsTailCall); | |
2466 } | 2469 } |
2467 | 2470 |
2468 // Add parameters. | 2471 // Add parameters. |
2469 for (Ice::SizeT ParamIndex = 0; ParamIndex < NumParams; ++ParamIndex) { | 2472 for (Ice::SizeT ParamIndex = 0; ParamIndex < NumParams; ++ParamIndex) { |
2470 Inst->addArg( | 2473 Inst->addArg( |
2471 getRelativeOperand(Values[ParamsStartIndex + ParamIndex], BaseIndex)); | 2474 getRelativeOperand(Values[ParamsStartIndex + ParamIndex], BaseIndex)); |
2472 } | 2475 } |
2473 | 2476 |
2474 // If intrinsic call, validate call signature. | 2477 // If intrinsic call, validate call signature. |
2475 if (IntrinsicInfo) { | 2478 if (IntrinsicInfo) { |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2696 reportUnableToAssign("instruction", Index, Name); | 2699 reportUnableToAssign("instruction", Index, Name); |
2697 // TODO(kschimpf) Remove error recovery once implementation complete. | 2700 // TODO(kschimpf) Remove error recovery once implementation complete. |
2698 return; | 2701 return; |
2699 } | 2702 } |
2700 if (isIRGenerationDisabled()) | 2703 if (isIRGenerationDisabled()) |
2701 return; | 2704 return; |
2702 Ice::Operand *Op = getFunctionParser()->getOperand(Index); | 2705 Ice::Operand *Op = getFunctionParser()->getOperand(Index); |
2703 if (Ice::Variable *V = dyn_cast<Ice::Variable>(Op)) { | 2706 if (Ice::Variable *V = dyn_cast<Ice::Variable>(Op)) { |
2704 if (ALLOW_DUMP) { | 2707 if (ALLOW_DUMP) { |
2705 std::string Nm(Name.data(), Name.size()); | 2708 std::string Nm(Name.data(), Name.size()); |
2706 V->setName(getFunctionParser()->getFunc(), Nm); | 2709 V->setName(getFunctionParser()->getFunc().get(), Nm); |
2707 } | 2710 } |
2708 } else { | 2711 } else { |
2709 reportUnableToAssign("variable", Index, Name); | 2712 reportUnableToAssign("variable", Index, Name); |
2710 } | 2713 } |
2711 } | 2714 } |
2712 | 2715 |
2713 void FunctionValuesymtabParser::setBbName(uint64_t Index, StringType &Name) { | 2716 void FunctionValuesymtabParser::setBbName(uint64_t Index, StringType &Name) { |
2714 if (isIRGenerationDisabled()) | 2717 if (isIRGenerationDisabled()) |
2715 return; | 2718 return; |
2716 if (Index >= getFunctionParser()->getFunc()->getNumNodes()) { | 2719 if (Index >= getFunctionParser()->getFunc()->getNumNodes()) { |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2977 | 2980 |
2978 if (TopLevelBlocks != 1) { | 2981 if (TopLevelBlocks != 1) { |
2979 errs() << IRFilename | 2982 errs() << IRFilename |
2980 << ": Contains more than one module. Found: " << TopLevelBlocks | 2983 << ": Contains more than one module. Found: " << TopLevelBlocks |
2981 << "\n"; | 2984 << "\n"; |
2982 ErrorStatus.assign(EC_Bitcode); | 2985 ErrorStatus.assign(EC_Bitcode); |
2983 } | 2986 } |
2984 } | 2987 } |
2985 | 2988 |
2986 } // end of namespace Ice | 2989 } // end of namespace Ice |
OLD | NEW |