blob: d1c23e3c879b486f32942ded94adee1347c09d9a [file] [log] [blame]
Ted Kremenek09502122010-08-04 18:23:15 +00001//===--- CFGStmtMap.h - Map from Stmt* to CFGBlock* -----------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Ted Kremenek09502122010-08-04 18:23:15 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the CFGStmtMap class, which defines a mapping from
10// Stmt* to CFGBlock*
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/ADT/DenseMap.h"
15#include "clang/AST/ParentMap.h"
16#include "clang/Analysis/CFG.h"
17#include "clang/Analysis/CFGStmtMap.h"
18
19using namespace clang;
20
Ted Kremenekadfb4452011-08-23 23:05:04 +000021typedef llvm::DenseMap<const Stmt*, CFGBlock*> SMap;
Ted Kremenek09502122010-08-04 18:23:15 +000022static SMap *AsMap(void *m) { return (SMap*) m; }
23
24CFGStmtMap::~CFGStmtMap() { delete AsMap(M); }
25
Fangrui Song6907ce22018-07-30 19:24:48 +000026CFGBlock *CFGStmtMap::getBlock(Stmt *S) {
Ted Kremenek09502122010-08-04 18:23:15 +000027 SMap *SM = AsMap(M);
28 Stmt *X = S;
29
30 // If 'S' isn't in the map, walk the ParentMap to see if one of its ancestors
31 // is in the map.
32 while (X) {
Tom Careec389da2010-08-11 23:36:58 +000033 SMap::iterator I = SM->find(X);
Ted Kremenek09502122010-08-04 18:23:15 +000034 if (I != SM->end()) {
35 CFGBlock *B = I->second;
36 // Memoize this lookup.
37 if (X != S)
38 (*SM)[X] = B;
39 return B;
40 }
41
Ted Kremenek8a297e92010-08-05 00:03:46 +000042 X = PM->getParentIgnoreParens(X);
Ted Kremenek09502122010-08-04 18:23:15 +000043 }
Craig Topper25542942014-05-20 04:30:07 +000044
45 return nullptr;
Ted Kremenek09502122010-08-04 18:23:15 +000046}
47
48static void Accumulate(SMap &SM, CFGBlock *B) {
49 // First walk the block-level expressions.
50 for (CFGBlock::iterator I = B->begin(), E = B->end(); I != E; ++I) {
51 const CFGElement &CE = *I;
David Blaikie00be69a2013-02-23 00:29:34 +000052 Optional<CFGStmt> CS = CE.getAs<CFGStmt>();
Ted Kremenek96a7a592011-03-01 03:15:10 +000053 if (!CS)
Zhongxing Xu2cd7a782010-09-16 01:25:47 +000054 continue;
Fangrui Song6907ce22018-07-30 19:24:48 +000055
David Blaikie00be69a2013-02-23 00:29:34 +000056 CFGBlock *&Entry = SM[CS->getStmt()];
Zhongxing Xu2cd7a782010-09-16 01:25:47 +000057 // If 'Entry' is already initialized (e.g., a terminator was already),
58 // skip.
59 if (Entry)
60 continue;
Fangrui Song6907ce22018-07-30 19:24:48 +000061
Zhongxing Xu2cd7a782010-09-16 01:25:47 +000062 Entry = B;
Fangrui Song6907ce22018-07-30 19:24:48 +000063
Ted Kremenek09502122010-08-04 18:23:15 +000064 }
Fangrui Song6907ce22018-07-30 19:24:48 +000065
Ted Kremenek09502122010-08-04 18:23:15 +000066 // Look at the label of the block.
67 if (Stmt *Label = B->getLabel())
68 SM[Label] = B;
69
70 // Finally, look at the terminator. If the terminator was already added
71 // because it is a block-level expression in another block, overwrite
72 // that mapping.
Artem Dergachev4e530322019-05-24 01:34:22 +000073 if (Stmt *Term = B->getTerminatorStmt())
Ted Kremenek09502122010-08-04 18:23:15 +000074 SM[Term] = B;
75}
76
77CFGStmtMap *CFGStmtMap::Build(CFG *C, ParentMap *PM) {
78 if (!C || !PM)
Craig Topper25542942014-05-20 04:30:07 +000079 return nullptr;
Ted Kremenek09502122010-08-04 18:23:15 +000080
81 SMap *SM = new SMap();
82
83 // Walk all blocks, accumulating the block-level expressions, labels,
Fangrui Song6907ce22018-07-30 19:24:48 +000084 // and terminators.
Ted Kremenek09502122010-08-04 18:23:15 +000085 for (CFG::iterator I = C->begin(), E = C->end(); I != E; ++I)
86 Accumulate(*SM, *I);
87
88 return new CFGStmtMap(PM, SM);
89}
90