OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Funcs
(Results
1 - 4
of
4
) sorted by null
/external/llvm/tools/bugpoint/
BugDriver.cpp
229
void llvm::PrintFunctionList(const std::vector<Function*> &
Funcs
) {
230
unsigned NumPrint =
Funcs
.size();
233
outs() << " " <<
Funcs
[i]->getName();
234
if (NumPrint <
Funcs
.size())
235
outs() << "... <" <<
Funcs
.size() << " total>";
CrashDebugger.cpp
199
bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &
Funcs
) {
202
if (KeepMain && find(
Funcs
.begin(),
Funcs
.end(),
203
BD.getProgram()->getFunction("main")) ==
Funcs
.end())
212
for (unsigned i = 0, e =
Funcs
.size(); i != e; ++i) {
213
Function *CMF = cast<Function>(VMap[
Funcs
[i]]);
215
assert(CMF->getFunctionType() ==
Funcs
[i]->getFunctionType() && "wrong ty");
216
assert(CMF->getName() ==
Funcs
[i]->getName() && "wrong name");
221
PrintFunctionList(
Funcs
);
236
Funcs
.assign(Functions.begin(), Functions.end())
[
all
...]
Miscompilation.cpp
246
bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &
Funcs
,
249
// functions listed in
Funcs
.
251
<< (
Funcs
.size()==1 ? "this function is" : "these functions are")
254
PrintFunctionList(
Funcs
);
259
// will be in the clone and
Funcs
will still point to valid memory
269
for (unsigned i = 0, e =
Funcs
.size(); i != e; ++i) {
270
Function *F = cast<Function>(VMap[
Funcs
[i]]);
465
// functions listed in
Funcs
.
[
all
...]
BugDriver.h
311
void PrintFunctionList(const std::vector<Function*> &
Funcs
);
Completed in 30 milliseconds