Searched defs:typeinfo (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/tools/deep_memory_profiler/lib/
H A Dbucket.py20 def __init__(self, stacktrace, allocator_type, typeinfo, typeinfo_name):
23 self._typeinfo = typeinfo
37 if self._symbolized_typeinfo == 'no typeinfo':
49 """Makes a symbolized stacktrace and typeinfo with |symbol_mapping_cache|.
66 self._symbolized_typeinfo = 'no typeinfo'
71 self._symbolized_typeinfo = 'no typeinfo'
85 def typeinfo(self): member in class:Bucket
147 typeinfo = None
154 typeinfo = int(word[1:], 16)
155 self._typeinfo_addresses.add(typeinfo)
[all...]
/external/chromium_org/v8/src/
H A Druntime-profiler.cc135 int typeinfo, total, percentage; local
136 GetICCounts(function->shared()->code(), &typeinfo, &total, &percentage);
137 PrintF(", ICs with typeinfo: %d/%d (%d%%)", typeinfo, total, percentage);
336 int typeinfo, total, percentage; local
337 GetICCounts(shared_code, &typeinfo, &total, &percentage);
350 typeinfo, total, percentage);
/external/v8/src/
H A Druntime-profiler.cc138 int typeinfo, total, percentage; local
139 GetICCounts(function, &typeinfo, &total, &percentage);
140 PrintF(", ICs with typeinfo: %d/%d (%d%%)", typeinfo, total, percentage);
296 int typeinfo, total, percentage; local
297 GetICCounts(function, &typeinfo, &total, &percentage);
310 typeinfo, total, percentage);
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp178 /// different modules. Used for EH typeinfo names, selector strings, and a
1159 // Return the existing typeinfo if it exists
1160 llvm::Constant *typeinfo = TheModule.getGlobalVariable(typeinfoName); local
1161 if (typeinfo)
1162 return llvm::ConstantExpr::getBitCast(typeinfo, PtrToInt8Ty);

Completed in 141 milliseconds