OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InstCount
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Analysis/
InstCount.cpp
1
//===--
InstCount
.cpp - Collects the count of all instructions ------------===//
24
#define DEBUG_TYPE "
instcount
"
38
class
InstCount
: public FunctionPass, public InstVisitor<
InstCount
> {
39
friend class InstVisitor<
InstCount
>;
55
InstCount
() : FunctionPass(ID) {
69
char
InstCount
::ID = 0;
70
INITIALIZE_PASS(
InstCount
, "
instcount
",
73
FunctionPass *llvm::createInstCountPass() { return new
InstCount
(); }
[
all
...]
Android.mk
33
InstCount
.cpp \
/external/llvm/include/llvm/IR/
FunctionInfo.h
58
unsigned
InstCount
;
63
FunctionSummary(unsigned NumInsts) :
InstCount
(NumInsts) {}
80
unsigned
instCount
() const { return
InstCount
; }
/external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp
[
all
...]
Completed in 158 milliseconds