HomeSort by: relevance | last modified time | path
    Searched refs:Thunks (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
VTableBuilder.h 256 /// Contains thunks needed by vtables, sorted by indices.
332 /// Contains all thunks that a given method decl will need.
333 ThunksMapTy Thunks;
336 /// offset offsets, thunks etc) for the given record decl.
347 // use exactly the same set of thunks.
348 ThunksMapTy::const_iterator I = Thunks.find(MD);
349 if (I == Thunks.end()) {
594 // Complete destructors don't have a slot in a vftable, so no thunks needed.
  /src/external/apache2/llvm/dist/clang/lib/AST/
VTableBuilder.cpp 834 /// (Used for computing 'this' pointer adjustment thunks.
873 /// VTableThunks - The thunks by vtable index in the vtable currently being
880 /// Thunks - A map that contains all the thunks needed for all methods in the
882 ThunksMapTy Thunks;
1016 return Thunks.size();
1020 return Thunks.begin();
1024 return Thunks.end();
1068 "Can't add thunks for construction vtable");
1070 SmallVectorImpl<ThunkInfo> &ThunksVector = Thunks[MD]
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PrettyCompilandDumper.cpp 186 if (!shouldDumpSymLevel(opts::pretty::SymLevel::Thunks))
llvm-pdbutil.h 68 enum class SymLevel { Functions, Data, Thunks, All };
llvm-pdbutil.cpp 229 clEnumValN(SymLevel::Thunks, "thunks", "Display thunk symbols"),
1265 if (shouldDumpSymLevel(opts::pretty::SymLevel::Thunks)) {
1266 if (auto Thunks = GlobalScope->findAllChildren<PDBSymbolThunk>()) {
1268 while (auto Thunk = Thunks->getNext())

Completed in 20 milliseconds