- Oct 05, 2010
-
-
Johnny Chen authored
llvm-svn: 115636
-
Greg Clayton authored
bool ValueObject::GetIsConstant() const; void ValueObject::SetIsConstant(); This will stop anything from being re-evaluated within the value object so that constant result value objects can maintain their frozen values without anything being updated or changed within the value object. Made it so the ValueObjectConstResult can be constructed with an lldb_private::Error object to allow for expression results to have errors. Since ValueObject objects contain error objects, I changed the expression evaluation in ClangUserExpression from static Error ClangUserExpression::Evaluate (ExecutionContext &exe_ctx, const char *expr_cstr, lldb::ValueObjectSP &result_valobj_sp); to: static lldb::ValueObjectSP Evaluate (ExecutionContext &exe_ctx, const char *expr_cstr); Even though expression parsing is borked right now (pending fixes coming from Sean Callanan), I filled in the implementation for: SBValue SBFrame::EvaluateExpression (const char *expr); Modified all expression code to deal with the above changes. llvm-svn: 115589
-
Greg Clayton authored
ClangUserExpression::Evaluate () as a public static function so anyone can evaluate an expression. llvm-svn: 115581
-
Johnny Chen authored
llvm-svn: 115579
-
Greg Clayton authored
results. The clang opaque type for the expression result will be added to the Target's ASTContext, and the bytes will be stored in a DataBuffer inside the new object. The class is named: ValueObjectConstResult Now after an expression is evaluated, we can get a ValueObjectSP back that contains a ValueObjectConstResult object. Relocated the value object dumping code into a static function within the ValueObject class instead of being in the CommandObjectFrame.cpp file which is what contained the code to dump variables ("frame variables"). llvm-svn: 115578
-
Johnny Chen authored
llvm-svn: 115574
-
Jim Ingham authored
llvm-svn: 115572
-
Caroline Tice authored
(for standardized argument names, argument help, etc.) llvm-svn: 115570
-
- Oct 04, 2010
-
-
Chris Lattner authored
patch by Arvid Picciani! llvm-svn: 115563
-
Jim Ingham authored
Add a "Confirm" function to the CommandInterpreter so you can confirm potentially dangerous operations in a generic way. llvm-svn: 115546
-
Jim Ingham authored
llvm-svn: 115543
-
Johnny Chen authored
the stdc++ library module. Right now, it doesn't do any disassembly at all. It merely locates the stdc++ library. Also tests the SBProcess object description and verifies it is in a 'Stopped' state. llvm-svn: 115536
-
Greg Clayton authored
llvm-svn: 115535
-
Greg Clayton authored
Fixed and issue where we weren't seeing inlined functions anymore. We also now show the correct pc-offset within the inlined function. llvm-svn: 115522
-
Greg Clayton authored
llvm-svn: 115519
-
Johnny Chen authored
the {function.name}, is sufficient for this test case. Plus added @expectedfailure decorator for a filed bug. llvm-svn: 115517
-
Johnny Chen authored
${module.file.basename}{`${function.name}, is sufficient for this test case. llvm-svn: 115514
-
Johnny Chen authored
Remove file:lineno from the expected substrings. llvm-svn: 115512
-
Greg Clayton authored
llvm-svn: 115491
-
Greg Clayton authored
was stopped in a module, yet had no valid function for the PC, no module would be displayed. llvm-svn: 115490
-
Greg Clayton authored
llvm-svn: 115488
-
Greg Clayton authored
instance: settings set frame-format <string> settings set thread-format <string> This allows users to control the information that is seen when dumping threads and frames. The default values are set such that they do what they used to do prior to changing over the the user defined formats. This allows users with terminals that can display color to make different items different colors using the escape control codes. A few alias examples that will colorize your thread and frame prompts are: settings set frame-format 'frame #${frame.index}: \033[0;33m${frame.pc}\033[0m{ \033[1;4;36m${module.file.basename}\033[0;36m ${function.name}{${function.pc-offset}}\033[0m}{ \033[0;35mat \033[1;35m${line.file.basename}:${line.number}}\033[0m\n' settings set thread-format 'thread #${thread.index}: \033[1;33mtid\033[0;33m = ${thread.id}\033[0m{, \033[0;33m${frame.pc}\033[0m}{ \033[1;4;36m${module.file.basename}\033[0;36m ${function.name}{${function.pc-offset}}\033[0m}{, \033[1;35mstop reason\033[0;35m = ${thread.stop-reason}\033[0m}{, \033[1;36mname = \033[0;36m${thread.name}\033[0m}{, \033[1;32mqueue = \033[0;32m${thread.queue}}\033[0m\n' A quick web search for "colorize terminal output" should allow you to see what you can do to make your output look like you want it. The "settings set" commands above can of course be added to your ~/.lldbinit file for permanent use. Changed the pure virtual void ExecutionContextScope::Calculate (ExecutionContext&); To: void ExecutionContextScope::CalculateExecutionContext (ExecutionContext&); I did this because this is a class that anything in the execution context heirarchy inherits from and "target->Calculate (exe_ctx)" didn't always tell you what it was really trying to do unless you look at the parameter. llvm-svn: 115485
-
- Oct 02, 2010
-
-
Johnny Chen authored
have now all passed. rdar://problem/8502549 and rdar://problem/8493023 are fixed llvm-svn: 115399
-
Greg Clayton authored
operator naming stuff. We now get the constructor and destructor names right after passing in the type, and we get the correct conversion operator name after passing in the return type when getting the DeclarationNameInfo. llvm-svn: 115398
-
Johnny Chen authored
regexp once and use it within the for loop for some speedup. llvm-svn: 115397
-
Sean Callanan authored
with importing class/struct types. llvm-svn: 115394
-
Johnny Chen authored
depending on the compiler used. Former if gcc/llvm-gcc, and latter if clang. llvm-svn: 115380
-
Johnny Chen authored
ARG: (struct objc_selector *) _cmd to ARG: (SEL) _cmd The change most likely resulted from an update from the llvm tot with a newer clang. llvm-svn: 115372
-
Greg Clayton authored
right name pools. llvm-svn: 115371
-
Johnny Chen authored
llvm-svn: 115369
-
Johnny Chen authored
To not skip long running tests, pass '-l' to the test driver (dotest.py). An example: @unittest2.skipIf(TestBase.skipLongRunningTest(), "Skip this long running test") def test_foundation_disasm(self): ... o Added a long running disassemble test to the foundation directory, which iterates the code symbols from Foundation.framework and kicks off a disassemble command for for the named function symbol. Found a crasher: rdar://problem/8504895. o Plus added/updated some comments for the TestBase class. llvm-svn: 115368
-
- Oct 01, 2010
-
-
Caroline Tice authored
llvm-svn: 115351
-
Greg Clayton authored
its containing class was parsed, we would crash. llvm-svn: 115343
-
Caroline Tice authored
Modify command options to use the new arguments mechanism. Now all command option arguments are specified in a standardized way, will have a standardized name, and have functioning help. The next step is to start writing useful help for all the argument types. llvm-svn: 115335
-
Johnny Chen authored
Also, the break by location needs to be modified after changees made to the main.cpp source code. llvm-svn: 115320
-
Caroline Tice authored
Add infrastructure for standardizing arguments for commands and command options; makes it easier to ensure that the same type of argument will have the same name everywhere, hooks up help for command arguments, so that users can ask for help when they are confused about what an argument should be; puts in the beginnings of the ability to do tab-completion for certain types of arguments, allows automatic syntax help generation for commands with arguments, and adds command arguments into command options help correctly. Currently only the breakpoint-id and breakpoint-id-range arguments, in the breakpoint commands, have been hooked up to use the new mechanism. The next steps will be to fix the command options arguments to use this mechanism, and to fix the rest of the regular command arguments to use this mechanism. Most of the help text is currently missing or dummy text; this will need to be filled in, and the existing argument help text will need to be cleaned up a bit (it was thrown in quickly, mostly for testing purposes). Help command now works for all argument types, although the help may not be very helpful yet. Those commands that take "raw" command strings now indicate it in their help text. llvm-svn: 115318
-
Johnny Chen authored
llvm-svn: 115317
-
Johnny Chen authored
llvm-svn: 115316
-
Greg Clayton authored
operators. llvm-svn: 115290
-
Greg Clayton authored
generate from DWARF. llvm-svn: 115268
-