2007-04-22 06:22:05 +00:00
|
|
|
//===- BitstreamWriter.h - Low-level bitstream writer interface -*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-04-22 06:22:05 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This header defines the BitstreamWriter class. This class can be used to
|
|
|
|
// write an arbitrary bitstream, regardless of its contents.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef BITSTREAM_WRITER_H
|
|
|
|
#define BITSTREAM_WRITER_H
|
|
|
|
|
|
|
|
#include "llvm/Bitcode/BitCodes.h"
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class BitstreamWriter {
|
|
|
|
std::vector<unsigned char> &Out;
|
|
|
|
|
|
|
|
/// CurBit - Always between 0 and 31 inclusive, specifies the next bit to use.
|
|
|
|
unsigned CurBit;
|
|
|
|
|
|
|
|
/// CurValue - The current value. Only bits < CurBit are valid.
|
|
|
|
uint32_t CurValue;
|
|
|
|
|
2007-05-05 00:17:00 +00:00
|
|
|
/// CurCodeSize - This is the declared size of code values used for the
|
|
|
|
/// current block, in bits.
|
2007-04-22 06:22:05 +00:00
|
|
|
unsigned CurCodeSize;
|
2007-04-23 18:57:32 +00:00
|
|
|
|
2007-05-05 00:17:00 +00:00
|
|
|
/// BlockInfoCurBID - When emitting a BLOCKINFO_BLOCK, this is the currently
|
|
|
|
/// selected BLOCK ID.
|
|
|
|
unsigned BlockInfoCurBID;
|
|
|
|
|
2007-04-23 18:57:32 +00:00
|
|
|
/// CurAbbrevs - Abbrevs installed at in this block.
|
|
|
|
std::vector<BitCodeAbbrev*> CurAbbrevs;
|
|
|
|
|
2007-04-22 06:22:05 +00:00
|
|
|
struct Block {
|
|
|
|
unsigned PrevCodeSize;
|
|
|
|
unsigned StartSizeWord;
|
2007-04-23 16:04:05 +00:00
|
|
|
std::vector<BitCodeAbbrev*> PrevAbbrevs;
|
2007-04-22 06:22:05 +00:00
|
|
|
Block(unsigned PCS, unsigned SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// BlockScope - This tracks the current blocks that we have entered.
|
|
|
|
std::vector<Block> BlockScope;
|
2007-04-23 16:04:05 +00:00
|
|
|
|
2007-05-05 00:17:00 +00:00
|
|
|
/// BlockInfo - This contains information emitted to BLOCKINFO_BLOCK blocks.
|
|
|
|
/// These describe abbreviations that all blocks of the specified ID inherit.
|
|
|
|
struct BlockInfo {
|
|
|
|
unsigned BlockID;
|
|
|
|
std::vector<BitCodeAbbrev*> Abbrevs;
|
|
|
|
};
|
|
|
|
std::vector<BlockInfo> BlockInfoRecords;
|
|
|
|
|
2007-04-22 06:22:05 +00:00
|
|
|
public:
|
2007-10-08 15:08:41 +00:00
|
|
|
explicit BitstreamWriter(std::vector<unsigned char> &O)
|
2007-04-22 06:22:05 +00:00
|
|
|
: Out(O), CurBit(0), CurValue(0), CurCodeSize(2) {}
|
|
|
|
|
|
|
|
~BitstreamWriter() {
|
|
|
|
assert(CurBit == 0 && "Unflused data remaining");
|
2007-04-23 18:57:32 +00:00
|
|
|
assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance");
|
2007-05-05 00:17:00 +00:00
|
|
|
|
|
|
|
// Free the BlockInfoRecords.
|
|
|
|
while (!BlockInfoRecords.empty()) {
|
|
|
|
BlockInfo &Info = BlockInfoRecords.back();
|
|
|
|
// Free blockinfo abbrev info.
|
|
|
|
for (unsigned i = 0, e = Info.Abbrevs.size(); i != e; ++i)
|
|
|
|
Info.Abbrevs[i]->dropRef();
|
|
|
|
BlockInfoRecords.pop_back();
|
|
|
|
}
|
2007-04-22 06:22:05 +00:00
|
|
|
}
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Basic Primitives for emitting bits to the stream.
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
void Emit(uint32_t Val, unsigned NumBits) {
|
|
|
|
assert(NumBits <= 32 && "Invalid value size!");
|
|
|
|
assert((Val & ~(~0U >> (32-NumBits))) == 0 && "High bits set!");
|
|
|
|
CurValue |= Val << CurBit;
|
|
|
|
if (CurBit + NumBits < 32) {
|
|
|
|
CurBit += NumBits;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the current word.
|
|
|
|
unsigned V = CurValue;
|
|
|
|
Out.push_back((unsigned char)(V >> 0));
|
|
|
|
Out.push_back((unsigned char)(V >> 8));
|
|
|
|
Out.push_back((unsigned char)(V >> 16));
|
|
|
|
Out.push_back((unsigned char)(V >> 24));
|
|
|
|
|
|
|
|
if (CurBit)
|
2007-04-22 15:00:52 +00:00
|
|
|
CurValue = Val >> (32-CurBit);
|
2007-04-22 06:22:05 +00:00
|
|
|
else
|
|
|
|
CurValue = 0;
|
|
|
|
CurBit = (CurBit+NumBits) & 31;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Emit64(uint64_t Val, unsigned NumBits) {
|
|
|
|
if (NumBits <= 32)
|
|
|
|
Emit((uint32_t)Val, NumBits);
|
|
|
|
else {
|
|
|
|
Emit((uint32_t)Val, 32);
|
|
|
|
Emit((uint32_t)(Val >> 32), NumBits-32);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlushToWord() {
|
|
|
|
if (CurBit) {
|
|
|
|
unsigned V = CurValue;
|
|
|
|
Out.push_back((unsigned char)(V >> 0));
|
|
|
|
Out.push_back((unsigned char)(V >> 8));
|
|
|
|
Out.push_back((unsigned char)(V >> 16));
|
|
|
|
Out.push_back((unsigned char)(V >> 24));
|
|
|
|
CurBit = 0;
|
|
|
|
CurValue = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitVBR(uint32_t Val, unsigned NumBits) {
|
|
|
|
uint32_t Threshold = 1U << (NumBits-1);
|
|
|
|
|
|
|
|
// Emit the bits with VBR encoding, NumBits-1 bits at a time.
|
|
|
|
while (Val >= Threshold) {
|
|
|
|
Emit((Val & ((1 << (NumBits-1))-1)) | (1 << (NumBits-1)), NumBits);
|
|
|
|
Val >>= NumBits-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Emit(Val, NumBits);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitVBR64(uint64_t Val, unsigned NumBits) {
|
|
|
|
if ((uint32_t)Val == Val)
|
|
|
|
return EmitVBR((uint32_t)Val, NumBits);
|
|
|
|
|
|
|
|
uint64_t Threshold = 1U << (NumBits-1);
|
|
|
|
|
|
|
|
// Emit the bits with VBR encoding, NumBits-1 bits at a time.
|
|
|
|
while (Val >= Threshold) {
|
|
|
|
Emit(((uint32_t)Val & ((1 << (NumBits-1))-1)) |
|
|
|
|
(1 << (NumBits-1)), NumBits);
|
|
|
|
Val >>= NumBits-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Emit((uint32_t)Val, NumBits);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// EmitCode - Emit the specified code.
|
|
|
|
void EmitCode(unsigned Val) {
|
|
|
|
Emit(Val, CurCodeSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Block Manipulation
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
2007-05-05 00:17:00 +00:00
|
|
|
/// getBlockInfo - If there is block info for the specified ID, return it,
|
|
|
|
/// otherwise return null.
|
|
|
|
BlockInfo *getBlockInfo(unsigned BlockID) {
|
|
|
|
// Common case, the most recent entry matches BlockID.
|
|
|
|
if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID)
|
|
|
|
return &BlockInfoRecords.back();
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = BlockInfoRecords.size(); i != e; ++i)
|
|
|
|
if (BlockInfoRecords[i].BlockID == BlockID)
|
|
|
|
return &BlockInfoRecords[i];
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-04-22 06:22:05 +00:00
|
|
|
void EnterSubblock(unsigned BlockID, unsigned CodeLen) {
|
|
|
|
// Block header:
|
|
|
|
// [ENTER_SUBBLOCK, blockid, newcodelen, <align4bytes>, blocklen]
|
|
|
|
EmitCode(bitc::ENTER_SUBBLOCK);
|
|
|
|
EmitVBR(BlockID, bitc::BlockIDWidth);
|
|
|
|
EmitVBR(CodeLen, bitc::CodeLenWidth);
|
|
|
|
FlushToWord();
|
2007-05-05 00:17:00 +00:00
|
|
|
|
|
|
|
unsigned BlockSizeWordLoc = Out.size();
|
|
|
|
unsigned OldCodeSize = CurCodeSize;
|
2007-04-23 20:34:46 +00:00
|
|
|
|
2007-04-22 06:22:05 +00:00
|
|
|
// Emit a placeholder, which will be replaced when the block is popped.
|
|
|
|
Emit(0, bitc::BlockSizeWidth);
|
|
|
|
|
|
|
|
CurCodeSize = CodeLen;
|
2007-05-05 00:17:00 +00:00
|
|
|
|
|
|
|
// Push the outer block's abbrev set onto the stack, start out with an
|
|
|
|
// empty abbrev set.
|
|
|
|
BlockScope.push_back(Block(OldCodeSize, BlockSizeWordLoc/4));
|
|
|
|
BlockScope.back().PrevAbbrevs.swap(CurAbbrevs);
|
|
|
|
|
|
|
|
// If there is a blockinfo for this BlockID, add all the predefined abbrevs
|
|
|
|
// to the abbrev list.
|
|
|
|
if (BlockInfo *Info = getBlockInfo(BlockID)) {
|
|
|
|
for (unsigned i = 0, e = Info->Abbrevs.size(); i != e; ++i) {
|
|
|
|
CurAbbrevs.push_back(Info->Abbrevs[i]);
|
|
|
|
Info->Abbrevs[i]->addRef();
|
|
|
|
}
|
|
|
|
}
|
2007-04-22 06:22:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ExitBlock() {
|
|
|
|
assert(!BlockScope.empty() && "Block scope imbalance!");
|
2007-04-23 20:34:46 +00:00
|
|
|
|
|
|
|
// Delete all abbrevs.
|
|
|
|
for (unsigned i = 0, e = CurAbbrevs.size(); i != e; ++i)
|
2007-05-04 17:35:19 +00:00
|
|
|
CurAbbrevs[i]->dropRef();
|
2007-04-23 20:34:46 +00:00
|
|
|
|
2007-04-23 16:04:05 +00:00
|
|
|
const Block &B = BlockScope.back();
|
2007-04-22 06:22:05 +00:00
|
|
|
|
|
|
|
// Block tail:
|
|
|
|
// [END_BLOCK, <align4bytes>]
|
|
|
|
EmitCode(bitc::END_BLOCK);
|
|
|
|
FlushToWord();
|
|
|
|
|
|
|
|
// Compute the size of the block, in words, not counting the size field.
|
|
|
|
unsigned SizeInWords = Out.size()/4-B.StartSizeWord - 1;
|
|
|
|
unsigned ByteNo = B.StartSizeWord*4;
|
|
|
|
|
|
|
|
// Update the block size field in the header of this sub-block.
|
|
|
|
Out[ByteNo++] = (unsigned char)(SizeInWords >> 0);
|
|
|
|
Out[ByteNo++] = (unsigned char)(SizeInWords >> 8);
|
|
|
|
Out[ByteNo++] = (unsigned char)(SizeInWords >> 16);
|
|
|
|
Out[ByteNo++] = (unsigned char)(SizeInWords >> 24);
|
|
|
|
|
2007-04-23 16:04:05 +00:00
|
|
|
// Restore the inner block's code size and abbrev table.
|
2007-04-22 06:22:05 +00:00
|
|
|
CurCodeSize = B.PrevCodeSize;
|
2007-04-23 16:04:05 +00:00
|
|
|
BlockScope.back().PrevAbbrevs.swap(CurAbbrevs);
|
|
|
|
BlockScope.pop_back();
|
2007-04-22 06:22:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Record Emission
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
2007-05-04 20:33:47 +00:00
|
|
|
private:
|
|
|
|
/// EmitAbbreviatedField - Emit a single scalar field value with the specified
|
|
|
|
/// encoding.
|
|
|
|
template<typename uintty>
|
|
|
|
void EmitAbbreviatedField(const BitCodeAbbrevOp &Op, uintty V) {
|
|
|
|
if (Op.isLiteral()) {
|
|
|
|
// If the abbrev specifies the literal value to use, don't emit
|
|
|
|
// anything.
|
|
|
|
assert(V == Op.getLiteralValue() &&
|
|
|
|
"Invalid abbrev for record!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Encode the value as we are commanded.
|
|
|
|
switch (Op.getEncoding()) {
|
|
|
|
default: assert(0 && "Unknown encoding!");
|
|
|
|
case BitCodeAbbrevOp::Fixed:
|
2007-05-06 03:12:47 +00:00
|
|
|
Emit((unsigned)V, (unsigned)Op.getEncodingData());
|
2007-05-04 20:33:47 +00:00
|
|
|
break;
|
|
|
|
case BitCodeAbbrevOp::VBR:
|
2007-05-06 03:12:47 +00:00
|
|
|
EmitVBR64(V, (unsigned)Op.getEncodingData());
|
2007-05-04 20:33:47 +00:00
|
|
|
break;
|
2007-05-05 01:15:42 +00:00
|
|
|
case BitCodeAbbrevOp::Char6:
|
|
|
|
Emit(BitCodeAbbrevOp::EncodeChar6((char)V), 6);
|
|
|
|
break;
|
2007-05-04 20:33:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
|
2007-04-22 06:22:05 +00:00
|
|
|
/// EmitRecord - Emit the specified record to the stream, using an abbrev if
|
|
|
|
/// we have one to compress the output.
|
2007-05-04 20:40:50 +00:00
|
|
|
template<typename uintty>
|
|
|
|
void EmitRecord(unsigned Code, SmallVectorImpl<uintty> &Vals,
|
2007-04-22 06:22:05 +00:00
|
|
|
unsigned Abbrev = 0) {
|
|
|
|
if (Abbrev) {
|
2007-05-04 18:25:49 +00:00
|
|
|
unsigned AbbrevNo = Abbrev-bitc::FIRST_APPLICATION_ABBREV;
|
2007-04-23 16:04:05 +00:00
|
|
|
assert(AbbrevNo < CurAbbrevs.size() && "Invalid abbrev #!");
|
|
|
|
BitCodeAbbrev *Abbv = CurAbbrevs[AbbrevNo];
|
|
|
|
|
2007-04-23 17:43:52 +00:00
|
|
|
EmitCode(Abbrev);
|
2007-04-23 16:04:05 +00:00
|
|
|
|
2007-04-23 17:43:52 +00:00
|
|
|
// Insert the code into Vals to treat it uniformly.
|
|
|
|
Vals.insert(Vals.begin(), Code);
|
|
|
|
|
|
|
|
unsigned RecordIdx = 0;
|
|
|
|
for (unsigned i = 0, e = Abbv->getNumOperandInfos(); i != e; ++i) {
|
|
|
|
const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
|
2007-05-04 20:33:47 +00:00
|
|
|
if (Op.isLiteral() || Op.getEncoding() != BitCodeAbbrevOp::Array) {
|
2007-05-06 08:22:10 +00:00
|
|
|
assert(RecordIdx < Vals.size() && "Invalid abbrev/record");
|
2007-05-04 20:33:47 +00:00
|
|
|
EmitAbbreviatedField(Op, Vals[RecordIdx]);
|
2007-04-23 17:43:52 +00:00
|
|
|
++RecordIdx;
|
|
|
|
} else {
|
2007-05-04 20:33:47 +00:00
|
|
|
// Array case.
|
|
|
|
assert(i+2 == e && "array op not second to last?");
|
|
|
|
const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
|
|
|
|
|
|
|
|
// Emit a vbr6 to indicate the number of elements present.
|
|
|
|
EmitVBR(Vals.size()-RecordIdx, 6);
|
|
|
|
|
|
|
|
// Emit each field.
|
|
|
|
for (; RecordIdx != Vals.size(); ++RecordIdx)
|
|
|
|
EmitAbbreviatedField(EltEnc, Vals[RecordIdx]);
|
2007-04-23 17:43:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(RecordIdx == Vals.size() && "Not all record operands emitted!");
|
2007-04-22 06:22:05 +00:00
|
|
|
} else {
|
|
|
|
// If we don't have an abbrev to use, emit this in its fully unabbreviated
|
|
|
|
// form.
|
|
|
|
EmitCode(bitc::UNABBREV_RECORD);
|
|
|
|
EmitVBR(Code, 6);
|
|
|
|
EmitVBR(Vals.size(), 6);
|
|
|
|
for (unsigned i = 0, e = Vals.size(); i != e; ++i)
|
|
|
|
EmitVBR64(Vals[i], 6);
|
|
|
|
}
|
|
|
|
}
|
2007-05-05 00:17:00 +00:00
|
|
|
|
2007-04-23 16:04:05 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Abbrev Emission
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
2007-05-05 00:17:00 +00:00
|
|
|
private:
|
|
|
|
// Emit the abbreviation as a DEFINE_ABBREV record.
|
|
|
|
void EncodeAbbrev(BitCodeAbbrev *Abbv) {
|
2007-04-23 16:04:05 +00:00
|
|
|
EmitCode(bitc::DEFINE_ABBREV);
|
|
|
|
EmitVBR(Abbv->getNumOperandInfos(), 5);
|
|
|
|
for (unsigned i = 0, e = Abbv->getNumOperandInfos(); i != e; ++i) {
|
|
|
|
const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
|
|
|
|
Emit(Op.isLiteral(), 1);
|
|
|
|
if (Op.isLiteral()) {
|
|
|
|
EmitVBR64(Op.getLiteralValue(), 8);
|
|
|
|
} else {
|
|
|
|
Emit(Op.getEncoding(), 3);
|
|
|
|
if (Op.hasEncodingData())
|
|
|
|
EmitVBR64(Op.getEncodingData(), 5);
|
|
|
|
}
|
|
|
|
}
|
2007-05-05 00:17:00 +00:00
|
|
|
}
|
|
|
|
public:
|
2007-04-23 16:04:05 +00:00
|
|
|
|
2007-05-05 00:17:00 +00:00
|
|
|
/// EmitAbbrev - This emits an abbreviation to the stream. Note that this
|
|
|
|
/// method takes ownership of the specified abbrev.
|
|
|
|
unsigned EmitAbbrev(BitCodeAbbrev *Abbv) {
|
|
|
|
// Emit the abbreviation as a record.
|
|
|
|
EncodeAbbrev(Abbv);
|
2007-04-23 16:04:05 +00:00
|
|
|
CurAbbrevs.push_back(Abbv);
|
2007-05-04 18:25:49 +00:00
|
|
|
return CurAbbrevs.size()-1+bitc::FIRST_APPLICATION_ABBREV;
|
2007-04-23 16:04:05 +00:00
|
|
|
}
|
2007-05-05 00:17:00 +00:00
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// BlockInfo Block Emission
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// EnterBlockInfoBlock - Start emitting the BLOCKINFO_BLOCK.
|
|
|
|
void EnterBlockInfoBlock(unsigned CodeWidth) {
|
|
|
|
EnterSubblock(bitc::BLOCKINFO_BLOCK_ID, CodeWidth);
|
|
|
|
BlockInfoCurBID = -1U;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
/// SwitchToBlockID - If we aren't already talking about the specified block
|
|
|
|
/// ID, emit a BLOCKINFO_CODE_SETBID record.
|
|
|
|
void SwitchToBlockID(unsigned BlockID) {
|
|
|
|
if (BlockInfoCurBID == BlockID) return;
|
|
|
|
SmallVector<unsigned, 2> V;
|
|
|
|
V.push_back(BlockID);
|
|
|
|
EmitRecord(bitc::BLOCKINFO_CODE_SETBID, V);
|
|
|
|
BlockInfoCurBID = BlockID;
|
|
|
|
}
|
|
|
|
|
|
|
|
BlockInfo &getOrCreateBlockInfo(unsigned BlockID) {
|
|
|
|
if (BlockInfo *BI = getBlockInfo(BlockID))
|
|
|
|
return *BI;
|
|
|
|
|
|
|
|
// Otherwise, add a new record.
|
|
|
|
BlockInfoRecords.push_back(BlockInfo());
|
|
|
|
BlockInfoRecords.back().BlockID = BlockID;
|
|
|
|
return BlockInfoRecords.back();
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/// EmitBlockInfoAbbrev - Emit a DEFINE_ABBREV record for the specified
|
|
|
|
/// BlockID.
|
|
|
|
unsigned EmitBlockInfoAbbrev(unsigned BlockID, BitCodeAbbrev *Abbv) {
|
|
|
|
SwitchToBlockID(BlockID);
|
|
|
|
EncodeAbbrev(Abbv);
|
|
|
|
|
|
|
|
// Add the abbrev to the specified block record.
|
|
|
|
BlockInfo &Info = getOrCreateBlockInfo(BlockID);
|
|
|
|
Info.Abbrevs.push_back(Abbv);
|
|
|
|
|
|
|
|
return Info.Abbrevs.size()-1+bitc::FIRST_APPLICATION_ABBREV;
|
|
|
|
}
|
2007-04-22 06:22:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|