HomeSort by relevance Sort by last modified time
    Searched refs:ProfileInfoT (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Analysis/
ProfileVerifierPass.cpp 46 ProfileInfoT<FType, BType> *PI;
73 AU.addRequired<ProfileInfoT<FType, BType> >();
85 double ReadOrAssert(typename ProfileInfoT<FType, BType>::Edge);
97 if (BBWeight == ProfileInfoT<FType, BType>::MissingValue) { BBWeight = 0; }
104 typename ProfileInfoT<FType, BType>::Edge E = PI->getEdge(*bbi,BB);
106 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue) { EdgeWeight = 0; }
119 typename ProfileInfoT<FType, BType>::Edge E = PI->getEdge(BB,*bbi);
121 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue) { EdgeWeight = 0; }
200 double ProfileVerifierPassT<FType, BType>::ReadOrAssert(typename ProfileInfoT<FType, BType>::Edge E) {
202 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue)
    [all...]
ProfileInfo.cpp 28 template<> char ProfileInfoT<Function,BasicBlock>::ID = 0;
37 ProfileInfoT<MachineFunction, MachineBasicBlock>::ProfileInfoT() {}
39 ProfileInfoT<MachineFunction, MachineBasicBlock>::~ProfileInfoT() {}
42 ProfileInfoT<Function, BasicBlock>::ProfileInfoT() {
46 ProfileInfoT<Function, BasicBlock>::~ProfileInfoT() {
51 char ProfileInfoT<MachineFunction, MachineBasicBlock>::ID = 0
    [all...]
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 54 class ProfileInfoT {
76 ProfileInfoT<MachineFunction, MachineBasicBlock> *MachineProfile;
79 ProfileInfoT();
80 ~ProfileInfoT(); // We want to be subclassed
227 ProfileInfoT<MachineFunction, MachineBasicBlock> *MI() {
229 MachineProfile = new ProfileInfoT<MachineFunction, MachineBasicBlock>();
238 typedef ProfileInfoT<Function, BasicBlock> ProfileInfo;
239 typedef ProfileInfoT<MachineFunction, MachineBasicBlock> MachineProfileInfo;

Completed in 27 milliseconds