HomeSort by relevance Sort by last modified time
    Searched defs:BlockInfo (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/Analysis/
ProfileInfoTypes.h 33 BlockInfo = 3, /* Block profiling information */
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 54 /// BlockInfo - This contains information emitted to BLOCKINFO_BLOCK blocks.
56 struct BlockInfo {
60 std::vector<BlockInfo> BlockInfoRecords;
72 BlockInfo &Info = BlockInfoRecords.back();
73 // Free blockinfo abbrev info.
182 BlockInfo *getBlockInfo(unsigned BlockID) {
215 // If there is a blockinfo for this BlockID, add all the predefined abbrevs
217 if (BlockInfo *Info = getBlockInfo(BlockID)) {
485 // BlockInfo Block Emission
504 BlockInfo &getOrCreateBlockInfo(unsigned BlockID)
    [all...]
BitstreamReader.h 29 /// BlockInfo - This contains information emitted to BLOCKINFO_BLOCK blocks.
31 struct BlockInfo {
43 std::vector<BlockInfo> BlockInfoRecords;
46 /// block/record name information in the BlockInfo block. Only llvm-bcanalyzer
70 BlockInfo &Info = BlockInfoRecords.back();
71 // Free blockinfo abbrev info.
98 const BlockInfo *getBlockInfo(unsigned BlockID) const {
110 BlockInfo &getOrCreateBlockInfo(unsigned BlockID) {
111 if (const BlockInfo *BI = getBlockInfo(BlockID))
112 return *const_cast<BlockInfo*>(BI)
    [all...]
  /external/llvm/lib/CodeGen/
SplitKit.h 62 /// Two BlockInfo entries are created for template 4. One for the live-in
66 /// Live-through blocks without any uses don't get BlockInfo entries. They
69 struct BlockInfo {
77 /// isOneInstr - Returns true when this BlockInfo describes a single
95 SmallVector<BlockInfo, 8> UseBlocks;
155 /// getUseBlocks - Return an array of BlockInfo objects for the basic blocks
157 ArrayRef<BlockInfo> getUseBlocks() const { return UseBlocks; }
188 bool shouldSplitSingleBlock(const BlockInfo &BI, bool SingleInstrs) const;
421 void splitSingleBlock(const SplitAnalysis::BlockInfo &BI);
444 void splitRegInBlock(const SplitAnalysis::BlockInfo &BI
    [all...]
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 315 std::vector<std::pair<std::string, std::string> > BlockInfo;
319 BlockInfo.push_back(std::make_pair((*I)->getParent()->getName(),
342 for (unsigned i = 0, e = BlockInfo.size(); i != e; ++i) {
343 Function *F = cast<Function>(GST.lookup(BlockInfo[i].first));
345 Value* V = ST.lookup(BlockInfo[i].second);

Completed in 1251 milliseconds