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 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
814 CurrentNode = InstallNextBasicBlock(); | 814 CurrentNode = InstallNextBasicBlock(); |
815 for (Function::const_arg_iterator ArgI = LLVMFunc->arg_begin(), | 815 for (Function::const_arg_iterator ArgI = LLVMFunc->arg_begin(), |
816 ArgE = LLVMFunc->arg_end(); | 816 ArgE = LLVMFunc->arg_end(); |
817 ArgI != ArgE; ++ArgI) { | 817 ArgI != ArgE; ++ArgI) { |
818 Func->addArg(NextInstVar(Context->convertToIceType(ArgI->getType()))); | 818 Func->addArg(NextInstVar(Context->convertToIceType(ArgI->getType()))); |
819 } | 819 } |
820 } | 820 } |
821 | 821 |
822 ~FunctionParser() LLVM_OVERRIDE; | 822 ~FunctionParser() LLVM_OVERRIDE; |
823 | 823 |
| 824 // Set the next constant ID to the given constant C. |
| 825 void setNextConstantID(Ice::Constant *C) { LocalOperands.push_back(C); } |
| 826 |
824 private: | 827 private: |
825 // Timer for reading function bitcode and converting to ICE. | 828 // Timer for reading function bitcode and converting to ICE. |
826 Ice::Timer TConvert; | 829 Ice::Timer TConvert; |
827 // The corresponding ICE function defined by the function block. | 830 // The corresponding ICE function defined by the function block. |
828 Ice::Cfg *Func; | 831 Ice::Cfg *Func; |
829 // The index to the current basic block being built. | 832 // The index to the current basic block being built. |
830 uint32_t CurrentBbIndex; | 833 uint32_t CurrentBbIndex; |
831 // The basic block being built. | 834 // The basic block being built. |
832 Ice::CfgNode *CurrentNode; | 835 Ice::CfgNode *CurrentNode; |
833 // The ID for the function. | 836 // The ID for the function. |
834 unsigned FcnId; | 837 unsigned FcnId; |
835 // The corresponding LLVM function. | 838 // The corresponding LLVM function. |
836 Function *LLVMFunc; | 839 Function *LLVMFunc; |
837 // Holds operands local to the function block, based on indices | 840 // Holds operands local to the function block, based on indices |
838 // defined in the bitcode file. | 841 // defined in the bitcode file. |
839 std::vector<Ice::Operand *> LocalOperands; | 842 std::vector<Ice::Operand *> LocalOperands; |
840 // Holds the dividing point between local and global absolute value indices. | 843 // Holds the dividing point between local and global absolute value indices. |
841 uint32_t CachedNumGlobalValueIDs; | 844 uint32_t CachedNumGlobalValueIDs; |
842 // True if the last processed instruction was a terminating | 845 // True if the last processed instruction was a terminating |
843 // instruction. | 846 // instruction. |
844 bool InstIsTerminating; | 847 bool InstIsTerminating; |
845 | 848 |
| 849 virtual bool ParseBlock(unsigned BlockID) LLVM_OVERRIDE; |
| 850 |
846 virtual void ProcessRecord() LLVM_OVERRIDE; | 851 virtual void ProcessRecord() LLVM_OVERRIDE; |
847 | 852 |
848 virtual void ExitBlock() LLVM_OVERRIDE; | 853 virtual void ExitBlock() LLVM_OVERRIDE; |
849 | 854 |
850 // Creates and appends a new basic block to the list of basic blocks. | 855 // Creates and appends a new basic block to the list of basic blocks. |
851 Ice::CfgNode *InstallNextBasicBlock() { return Func->makeNode(); } | 856 Ice::CfgNode *InstallNextBasicBlock() { return Func->makeNode(); } |
852 | 857 |
853 // Returns the Index-th basic block in the list of basic blocks. | 858 // Returns the Index-th basic block in the list of basic blocks. |
854 Ice::CfgNode *GetBasicBlock(uint32_t Index) { | 859 Ice::CfgNode *GetBasicBlock(uint32_t Index) { |
855 const Ice::NodeList &Nodes = Func->getNodes(); | 860 const Ice::NodeList &Nodes = Func->getNodes(); |
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1512 } | 1517 } |
1513 default: | 1518 default: |
1514 // Generate error message! | 1519 // Generate error message! |
1515 BlockParserBaseClass::ProcessRecord(); | 1520 BlockParserBaseClass::ProcessRecord(); |
1516 break; | 1521 break; |
1517 } | 1522 } |
1518 if (Inst) | 1523 if (Inst) |
1519 CurrentNode->appendInst(Inst); | 1524 CurrentNode->appendInst(Inst); |
1520 } | 1525 } |
1521 | 1526 |
| 1527 /// Parses constants within a function block. |
| 1528 class ConstantsParser : public BlockParserBaseClass { |
| 1529 ConstantsParser(const ConstantsParser &) LLVM_DELETED_FUNCTION; |
| 1530 ConstantsParser &operator=(const ConstantsParser &) LLVM_DELETED_FUNCTION; |
| 1531 |
| 1532 public: |
| 1533 ConstantsParser(unsigned BlockID, FunctionParser *FuncParser) |
| 1534 : BlockParserBaseClass(BlockID, FuncParser), FuncParser(FuncParser), |
| 1535 NextConstantType(Ice::IceType_void) {} |
| 1536 |
| 1537 ~ConstantsParser() LLVM_OVERRIDE {} |
| 1538 |
| 1539 private: |
| 1540 // The parser of the function block this constants block appears in. |
| 1541 FunctionParser *FuncParser; |
| 1542 // The type to use for succeeding constants. |
| 1543 Ice::Type NextConstantType; |
| 1544 |
| 1545 virtual void ProcessRecord() LLVM_OVERRIDE; |
| 1546 |
| 1547 Ice::GlobalContext *getContext() { return getTranslator().getContext(); } |
| 1548 |
| 1549 // Returns true if the type to use for succeeding constants is defined. |
| 1550 // If false, also generates an error message. |
| 1551 bool isValidNextConstantType() { |
| 1552 if (NextConstantType != Ice::IceType_void) |
| 1553 return true; |
| 1554 Error("Constant record not preceded by set type record"); |
| 1555 return false; |
| 1556 } |
| 1557 }; |
| 1558 |
| 1559 void ConstantsParser::ProcessRecord() { |
| 1560 const NaClBitcodeRecord::RecordVector &Values = Record.GetValues(); |
| 1561 switch (Record.GetCode()) { |
| 1562 case naclbitc::CST_CODE_SETTYPE: { |
| 1563 // SETTYPE: [typeid] |
| 1564 if (!isValidRecordSize(1, "constants block set type")) |
| 1565 return; |
| 1566 NextConstantType = |
| 1567 Context->convertToIceType(Context->getTypeByID(Values[0])); |
| 1568 if (NextConstantType == Ice::IceType_void) |
| 1569 Error("constants block set type not allowed for void type"); |
| 1570 return; |
| 1571 } |
| 1572 case naclbitc::CST_CODE_UNDEF: { |
| 1573 // UNDEF |
| 1574 if (!isValidRecordSize(0, "constants block undef")) |
| 1575 return; |
| 1576 if (!isValidNextConstantType()) |
| 1577 return; |
| 1578 FuncParser->setNextConstantID( |
| 1579 getContext()->getConstantUndef(NextConstantType)); |
| 1580 return; |
| 1581 } |
| 1582 case naclbitc::CST_CODE_INTEGER: { |
| 1583 // INTEGER: [intval] |
| 1584 if (!isValidRecordSize(1, "constants block integer")) |
| 1585 return; |
| 1586 if (!isValidNextConstantType()) |
| 1587 return; |
| 1588 if (IntegerType *IType = dyn_cast<IntegerType>( |
| 1589 Context->convertToLLVMType(NextConstantType))) { |
| 1590 APInt Value(IType->getBitWidth(), NaClDecodeSignRotatedValue(Values[0])); |
| 1591 Ice::Constant *C = |
| 1592 getContext()->getConstantInt(NextConstantType, Value.getSExtValue()); |
| 1593 FuncParser->setNextConstantID(C); |
| 1594 return; |
| 1595 } |
| 1596 std::string Buffer; |
| 1597 raw_string_ostream StrBuf(Buffer); |
| 1598 StrBuf << "constant block integer record for non-integer type " |
| 1599 << NextConstantType; |
| 1600 Error(StrBuf.str()); |
| 1601 return; |
| 1602 } |
| 1603 case naclbitc::CST_CODE_FLOAT: { |
| 1604 // FLOAT: [fpval] |
| 1605 if (!isValidRecordSize(1, "constants block float")) |
| 1606 return; |
| 1607 if (!isValidNextConstantType()) |
| 1608 return; |
| 1609 switch (NextConstantType) { |
| 1610 case Ice::IceType_f32: { |
| 1611 APFloat Value(APFloat::IEEEsingle, |
| 1612 APInt(32, static_cast<uint32_t>(Values[0]))); |
| 1613 FuncParser->setNextConstantID( |
| 1614 getContext()->getConstantFloat(Value.convertToFloat())); |
| 1615 return; |
| 1616 } |
| 1617 case Ice::IceType_f64: { |
| 1618 APFloat Value(APFloat::IEEEdouble, APInt(64, Values[0])); |
| 1619 FuncParser->setNextConstantID( |
| 1620 getContext()->getConstantDouble(Value.convertToDouble())); |
| 1621 return; |
| 1622 } |
| 1623 default: { |
| 1624 std::string Buffer; |
| 1625 raw_string_ostream StrBuf(Buffer); |
| 1626 StrBuf << "constant block float record for non-floating type " |
| 1627 << NextConstantType; |
| 1628 Error(StrBuf.str()); |
| 1629 return; |
| 1630 } |
| 1631 } |
| 1632 } |
| 1633 default: |
| 1634 // Generate error message! |
| 1635 BlockParserBaseClass::ProcessRecord(); |
| 1636 return; |
| 1637 } |
| 1638 } |
| 1639 |
| 1640 bool FunctionParser::ParseBlock(unsigned BlockID) { |
| 1641 switch (BlockID) { |
| 1642 case naclbitc::CONSTANTS_BLOCK_ID: { |
| 1643 ConstantsParser Parser(BlockID, this); |
| 1644 return Parser.ParseThisBlock(); |
| 1645 } |
| 1646 default: |
| 1647 return BlockParserBaseClass::ParseBlock(BlockID); |
| 1648 } |
| 1649 } |
| 1650 |
1522 /// Parses the module block in the bitcode file. | 1651 /// Parses the module block in the bitcode file. |
1523 class ModuleParser : public BlockParserBaseClass { | 1652 class ModuleParser : public BlockParserBaseClass { |
1524 public: | 1653 public: |
1525 ModuleParser(unsigned BlockID, TopLevelParser *Context) | 1654 ModuleParser(unsigned BlockID, TopLevelParser *Context) |
1526 : BlockParserBaseClass(BlockID, Context) {} | 1655 : BlockParserBaseClass(BlockID, Context) {} |
1527 | 1656 |
1528 virtual ~ModuleParser() LLVM_OVERRIDE {} | 1657 virtual ~ModuleParser() LLVM_OVERRIDE {} |
1529 | 1658 |
1530 protected: | 1659 protected: |
1531 virtual bool ParseBlock(unsigned BlockID) LLVM_OVERRIDE; | 1660 virtual bool ParseBlock(unsigned BlockID) LLVM_OVERRIDE; |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1677 if (TopLevelBlocks != 1) { | 1806 if (TopLevelBlocks != 1) { |
1678 errs() << IRFilename | 1807 errs() << IRFilename |
1679 << ": Contains more than one module. Found: " << TopLevelBlocks | 1808 << ": Contains more than one module. Found: " << TopLevelBlocks |
1680 << "\n"; | 1809 << "\n"; |
1681 ErrorStatus = true; | 1810 ErrorStatus = true; |
1682 } | 1811 } |
1683 return; | 1812 return; |
1684 } | 1813 } |
1685 | 1814 |
1686 } // end of namespace Ice | 1815 } // end of namespace Ice |
OLD | NEW |