Searched refs:ReportedDebugFuncs (Results 1 - 3 of 3) sorted by relevance

/external/llvm/unittests/ExecutionEngine/JIT/
H A DOProfileJITEventListenerTest.cpp42 NativeCodeMap ReportedDebugFuncs; member in namespace:__anon9261
74 EXPECT_TRUE(ReportedDebugFuncs.find(addr) == ReportedDebugFuncs.end());
76 ReportedDebugFuncs[addr];
89 NativeCodeMap::iterator i = ReportedDebugFuncs.find(addr);
90 EXPECT_TRUE(i != ReportedDebugFuncs.end());
100 ReportedDebugFuncs[addr] = locs;
109 NativeCodeMap::iterator i = ReportedDebugFuncs.find(addr);
110 EXPECT_TRUE(i != ReportedDebugFuncs.end());
111 ReportedDebugFuncs
[all...]
H A DIntelJITEventListenerTest.cpp22 NativeCodeMap ReportedDebugFuncs; member in namespace:__anon9254
35 ReportedDebugFuncs[msg->method_id];
42 ReportedDebugFuncs[msg->method_id].push_back(loc);
50 EXPECT_TRUE(1 == ReportedDebugFuncs.erase(UnloadId));
90 TestNoDebugInfo(ReportedDebugFuncs);
94 TestSingleLine(ReportedDebugFuncs);
98 TestMultipleLines(ReportedDebugFuncs);
105 TestMultipleFiles(ReportedDebugFuncs);
H A DJITEventListenerTestCommon.h122 void TestNoDebugInfo(NativeCodeMap& ReportedDebugFuncs) { argument
129 EXPECT_TRUE(1 == ReportedDebugFuncs.size());
132 EXPECT_TRUE(ReportedDebugFuncs.size() == 0);
135 void TestSingleLine(NativeCodeMap& ReportedDebugFuncs) { argument
143 EXPECT_TRUE(1 == ReportedDebugFuncs.size());
144 EXPECT_STREQ(ReportedDebugFuncs.begin()->second.begin()->first.c_str(),
146 EXPECT_EQ(ReportedDebugFuncs.begin()->second.begin()->second, getLine());
149 EXPECT_TRUE(ReportedDebugFuncs.size() == 0);
152 void TestMultipleLines(NativeCodeMap& ReportedDebugFuncs) { argument
165 EXPECT_TRUE(1 == ReportedDebugFuncs
182 TestMultipleFiles(NativeCodeMap& ReportedDebugFuncs) argument
[all...]

Completed in 151 milliseconds