Skip to content
  • Greg Clayton's avatar
    Got namespace lookup working and was able to print a complex "this" as an · 580c5dac
    Greg Clayton authored
    expression. This currently takes waaaayyyyy too much time to evaluate. We will
    need to look at the expression parser and find ways to optimize the info we
    provide and get this to evaluate quicker. I believe the performance issue is
    currently related to us always providing a complete C++ class type when asked
    about a C++ class which can cause a lot of information to be pulled since all
    classes will be fully created (methods, base classes, members, all their 
    types). We will need to give the classes back the parser and mark them as 
    having external sources and get parser (Sema) to query us when it needs more
    info. This should bring things up to an acceptable level.
    
    llvm-svn: 118979
    580c5dac
Loading