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

  /external/llvm/include/llvm/Analysis/
ProfileDataTypes.h 28 BlockInfo = 3, /* Block profiling information */
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 55 /// BlockInfo - This contains information emitted to BLOCKINFO_BLOCK blocks.
57 struct BlockInfo {
61 std::vector<BlockInfo> BlockInfoRecords;
105 BlockInfo &Info = BlockInfoRecords.back();
106 // Free blockinfo abbrev info.
198 BlockInfo *getBlockInfo(unsigned BlockID) {
231 // If there is a blockinfo for this BlockID, add all the predefined abbrevs
233 if (BlockInfo *Info = getBlockInfo(BlockID)) {
500 // BlockInfo Block Emission
519 BlockInfo &getOrCreateBlockInfo(unsigned BlockID)
    [all...]
BitstreamReader.h 32 /// BlockInfo - This contains information emitted to BLOCKINFO_BLOCK blocks.
34 struct BlockInfo {
44 std::vector<BlockInfo> BlockInfoRecords;
47 /// block/record name information in the BlockInfo block. Only llvm-bcanalyzer
76 BlockInfo &Info = BlockInfoRecords.back();
77 // Free blockinfo abbrev info.
101 const BlockInfo *getBlockInfo(unsigned BlockID) const {
113 BlockInfo &getOrCreateBlockInfo(unsigned BlockID) {
114 if (const BlockInfo *BI = getBlockInfo(BlockID))
115 return *const_cast<BlockInfo*>(BI)
    [all...]
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.h 211 unsigned getBlockNum() const { return &TBI - &TE.BlockInfo[0]; }
263 SmallVector<TraceBlockInfo, 4> BlockInfo;
322 SmallVector<FixedBlockInfo, 4> BlockInfo;
SplitKit.h 59 /// Two BlockInfo entries are created for template 4. One for the live-in
63 /// Live-through blocks without any uses don't get BlockInfo entries. They
66 struct BlockInfo {
74 /// isOneInstr - Returns true when this BlockInfo describes a single
95 SmallVector<BlockInfo, 8> UseBlocks;
162 /// getUseBlocks - Return an array of BlockInfo objects for the basic blocks
164 ArrayRef<BlockInfo> getUseBlocks() const { return UseBlocks; }
195 bool shouldSplitSingleBlock(const BlockInfo &BI, bool SingleInstrs) const;
428 void splitSingleBlock(const SplitAnalysis::BlockInfo &BI);
451 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);
  /external/clang/lib/Analysis/
ThreadSafety.cpp     [all...]

Completed in 84 milliseconds