diff options
| author | Sean Callanan <scallanan@apple.com> | 2010-09-13 21:34:21 +0000 |
|---|---|---|
| committer | Sean Callanan <scallanan@apple.com> | 2010-09-13 21:34:21 +0000 |
| commit | 9e6ed53ea51e66688dcf4d30837c6fbe4ec06f1e (patch) | |
| tree | c820006abd28b091188967ad931adb82ccf42b40 /lldb/source/Expression/ClangExpressionParser.cpp | |
| parent | 535e8e5f6004865b6c3f1df3ddc603d57d2311b8 (diff) | |
| download | bcm5719-llvm-9e6ed53ea51e66688dcf4d30837c6fbe4ec06f1e.tar.gz bcm5719-llvm-9e6ed53ea51e66688dcf4d30837c6fbe4ec06f1e.zip | |
Bugfixes to the expression parser. Fixes include:
- If you put a semicolon at the end of an expression,
this no longer causes the expression parser to
error out. This was a two-part fix: first,
ClangExpressionDeclMap::Materialize now handles
an empty struct (such as when there is no return
value); second, ASTResultSynthesizer walks backward
from the end of the ASTs until it reaches something
that's not a NullStmt.
- ClangExpressionVariable now properly byte-swaps when
printing itself.
- ClangUtilityFunction now cleans up after itself when
it's done compiling itself.
- Utility functions can now use external functions just
like user expressions.
- If you end your expression with a statement that does
not return a value, the expression now runs correctly
anyway.
Also, added the beginnings of an Objective-C object
validator function, which is neither installed nor used
as yet.
llvm-svn: 113789
Diffstat (limited to 'lldb/source/Expression/ClangExpressionParser.cpp')
| -rw-r--r-- | lldb/source/Expression/ClangExpressionParser.cpp | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/lldb/source/Expression/ClangExpressionParser.cpp b/lldb/source/Expression/ClangExpressionParser.cpp index 1bc8866975b..f8b71edbe9c 100644 --- a/lldb/source/Expression/ClangExpressionParser.cpp +++ b/lldb/source/Expression/ClangExpressionParser.cpp @@ -403,7 +403,10 @@ ClangExpressionParser::MakeJIT (lldb::addr_t &func_addr, std::auto_ptr<llvm::TargetMachine> target_machine(target->createTargetMachine(m_target_triple, "")); - IRForTarget ir_for_target(decl_map, target_machine->getTargetData(), m_expr.FunctionName()); + IRForTarget ir_for_target(decl_map, + target_machine->getTargetData(), + m_expr.NeedsVariableResolution(), + m_expr.FunctionName()); if (!ir_for_target.runOnModule(*module)) { @@ -412,14 +415,17 @@ ClangExpressionParser::MakeJIT (lldb::addr_t &func_addr, return err; } - IRDynamicChecks ir_dynamic_checks(*exe_ctx.process->GetDynamicCheckers(), m_expr.FunctionName()); - - if (!ir_dynamic_checks.runOnModule(*module)) + if (m_expr.NeedsValidation()) { - err.SetErrorToGenericError(); - err.SetErrorString("Couldn't add dynamic checks to the expression"); - return err; - } + IRDynamicChecks ir_dynamic_checks(*exe_ctx.process->GetDynamicCheckers(), m_expr.FunctionName()); + + if (!ir_dynamic_checks.runOnModule(*module)) + { + err.SetErrorToGenericError(); + err.SetErrorString("Couldn't add dynamic checks to the expression"); + return err; + } + } } m_jit_mm = new RecordingMemoryManager(); |

