diff options
| author | Enrico Granata <egranata@apple.com> | 2012-12-12 03:23:37 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2012-12-12 03:23:37 +0000 |
| commit | 7b8c513f089a69741797e39b2d0db00ce1db704a (patch) | |
| tree | 852bb47d696f509fd416510aaa62fb4751fa60dd /lldb | |
| parent | 181879c293df6a88e8ef054c67c3b32beb5fc92c (diff) | |
| download | bcm5719-llvm-7b8c513f089a69741797e39b2d0db00ce1db704a.tar.gz bcm5719-llvm-7b8c513f089a69741797e39b2d0db00ce1db704a.zip | |
Option changes:
the option to print the runtime-specific description has been modified in the frame variable, memory read and expression command.
All three commands now support a --object-description option, with a shortcut of -O (uppercase letter o)
This is a breaking change:
frame variable used --objc as the long option name
expression used -o as a shortcut
memory read uses --objd as the long option name
Hopefully, most users won't be affected by the change since people tend to access "expression --object-description" under the alias "po" which still works
The test suite has been tweaked accordingly.
llvm-svn: 169961
Diffstat (limited to 'lldb')
6 files changed, 37 insertions, 37 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index e28c8e8261d..dc534f1e037 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -56,7 +56,7 @@ CommandObjectExpression::CommandOptions::g_option_table[] = { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "dynamic-value", 'd', required_argument, NULL, 0, eArgTypeBoolean, "Upcast the value resulting from the expression to its dynamic type if available."}, { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "timeout", 't', required_argument, NULL, 0, eArgTypeUnsignedInteger, "Timeout value for running the expression."}, { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "unwind-on-error", 'u', required_argument, NULL, 0, eArgTypeBoolean, "Clean up program state if the expression causes a crash, breakpoint hit or signal."}, - { LLDB_OPT_SET_2 , false, "object-description", 'o', no_argument, NULL, 0, eArgTypeNone, "Print the object description of the value resulting from the expression."}, + { LLDB_OPT_SET_2 , false, "object-description", 'O', no_argument, NULL, 0, eArgTypeNone, "Print the object description of the value resulting from the expression."}, }; @@ -113,7 +113,7 @@ CommandObjectExpression::CommandOptions::SetOptionValue (CommandInterpreter &int } break; - case 'o': + case 'O': print_object = true; break; diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index b707ed9e611..339a3c54a6a 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -279,7 +279,7 @@ CommandInterpreter::Initialize () AddOrReplaceAliasOptions ("call", alias_arguments_vector_sp); alias_arguments_vector_sp.reset (new OptionArgVector); - ProcessAliasOptionsArgs (cmd_obj_sp, "-o --", alias_arguments_vector_sp); + ProcessAliasOptionsArgs (cmd_obj_sp, "-O --", alias_arguments_vector_sp); AddAlias ("po", cmd_obj_sp); AddOrReplaceAliasOptions ("po", alias_arguments_vector_sp); } diff --git a/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp b/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp index ae99e126c36..c6d2e1ec162 100644 --- a/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp +++ b/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp @@ -33,17 +33,17 @@ OptionGroupValueObjectDisplay::~OptionGroupValueObjectDisplay () static OptionDefinition g_option_table[] = { - { LLDB_OPT_SET_1, false, "dynamic-type", 'd', required_argument, g_dynamic_value_types, 0, eArgTypeNone, "Show the object as its full dynamic type, not its static type, if available."}, - { LLDB_OPT_SET_1, false, "synthetic-type", 'S', required_argument, NULL, 0, eArgTypeBoolean, "Show the object obeying its synthetic provider, if available."}, - { LLDB_OPT_SET_1, false, "depth", 'D', required_argument, NULL, 0, eArgTypeCount, "Set the max recurse depth when dumping aggregate types (default is infinity)."}, - { LLDB_OPT_SET_1, false, "flat", 'F', no_argument, NULL, 0, eArgTypeNone, "Display results in a flat format that uses expression paths for each variable or member."}, - { LLDB_OPT_SET_1, false, "location", 'L', no_argument, NULL, 0, eArgTypeNone, "Show variable location information."}, - { LLDB_OPT_SET_1, false, "objc", 'O', no_argument, NULL, 0, eArgTypeNone, "Print as an Objective-C object."}, - { LLDB_OPT_SET_1, false, "ptr-depth", 'P', required_argument, NULL, 0, eArgTypeCount, "The number of pointers to be traversed when dumping values (default is zero)."}, - { LLDB_OPT_SET_1, false, "show-types", 'T', no_argument, NULL, 0, eArgTypeNone, "Show variable types when dumping values."}, - { LLDB_OPT_SET_1, false, "no-summary-depth", 'Y', optional_argument, NULL, 0, eArgTypeCount, "Set the depth at which omitting summary information stops (default is 1)."}, - { LLDB_OPT_SET_1, false, "raw-output", 'R', no_argument, NULL, 0, eArgTypeNone, "Don't use formatting options."}, - { LLDB_OPT_SET_1, false, "show-all-children",'A', no_argument, NULL, 0, eArgTypeNone, "Ignore the upper bound on the number of children to show."}, + { LLDB_OPT_SET_1, false, "dynamic-type", 'd', required_argument, g_dynamic_value_types, 0, eArgTypeNone, "Show the object as its full dynamic type, not its static type, if available."}, + { LLDB_OPT_SET_1, false, "synthetic-type", 'S', required_argument, NULL, 0, eArgTypeBoolean, "Show the object obeying its synthetic provider, if available."}, + { LLDB_OPT_SET_1, false, "depth", 'D', required_argument, NULL, 0, eArgTypeCount, "Set the max recurse depth when dumping aggregate types (default is infinity)."}, + { LLDB_OPT_SET_1, false, "flat", 'F', no_argument, NULL, 0, eArgTypeNone, "Display results in a flat format that uses expression paths for each variable or member."}, + { LLDB_OPT_SET_1, false, "location", 'L', no_argument, NULL, 0, eArgTypeNone, "Show variable location information."}, + { LLDB_OPT_SET_1, false, "object-description", 'O', no_argument, NULL, 0, eArgTypeNone, "Print as an Objective-C object."}, + { LLDB_OPT_SET_1, false, "ptr-depth", 'P', required_argument, NULL, 0, eArgTypeCount, "The number of pointers to be traversed when dumping values (default is zero)."}, + { LLDB_OPT_SET_1, false, "show-types", 'T', no_argument, NULL, 0, eArgTypeNone, "Show variable types when dumping values."}, + { LLDB_OPT_SET_1, false, "no-summary-depth", 'Y', optional_argument, NULL, 0, eArgTypeCount, "Set the depth at which omitting summary information stops (default is 1)."}, + { LLDB_OPT_SET_1, false, "raw-output", 'R', no_argument, NULL, 0, eArgTypeNone, "Don't use formatting options."}, + { LLDB_OPT_SET_1, false, "show-all-children", 'A', no_argument, NULL, 0, eArgTypeNone, "Ignore the upper bound on the number of children to show."}, { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL } }; diff --git a/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py b/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py index 16a556051a8..9f8877f57d1 100644 --- a/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py +++ b/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py @@ -420,9 +420,9 @@ class ObjCDataFormatterTestCase(TestBase): self.expect('expr -d true -- @"Hello"', substrs = ['Hello']) - self.expect('expr -d true -o -- @"Hello"', + self.expect('expr -d true --object-description -- @"Hello"', substrs = ['Hello']) - self.expect('expr -d true -o -- @"Hello"', matching=False, + self.expect('expr -d true --object-description -- @"Hello"', matching=False, substrs = ['@"Hello" Hello']) diff --git a/lldb/test/lang/objc/foundation/TestObjCMethods.py b/lldb/test/lang/objc/foundation/TestObjCMethods.py index 1d1c7ac5ede..77418b58287 100644 --- a/lldb/test/lang/objc/foundation/TestObjCMethods.py +++ b/lldb/test/lang/objc/foundation/TestObjCMethods.py @@ -204,7 +204,7 @@ class FoundationTestCase(TestBase): # # Test new feature with r115115: # Add "-o" option to "expression" which prints the object description if available. - self.expect("expression -o -- my", "Object description displayed correctly", + self.expect("expression --object-description -- my", "Object description displayed correctly", patterns = ["Hello from.*a.out.*with timestamp: "]) # See: <rdar://problem/8717050> lldb needs to use the ObjC runtime symbols for ivar offsets diff --git a/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py b/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py index a5cdb6b52d6..2f1f5b0edd0 100644 --- a/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py +++ b/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py @@ -64,62 +64,62 @@ class ObjCNewSyntaxTestCase(TestBase): self.common_setup() - self.expect("expr -o -- immutable_array[0]", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- immutable_array[0]", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["foo"]) - self.expect("expr -o -- mutable_array[0]", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- mutable_array[0]", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["foo"]) - self.expect("expr -o -- mutable_array[0] = @\"bar\"", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- mutable_array[0] = @\"bar\"", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["bar"]) - self.expect("expr -o -- mutable_array[0]", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- mutable_array[0]", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["bar"]) - self.expect("expr -o -- immutable_dictionary[@\"key\"]", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- immutable_dictionary[@\"key\"]", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["value"]) - self.expect("expr -o -- mutable_dictionary[@\"key\"]", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- mutable_dictionary[@\"key\"]", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["value"]) - self.expect("expr -o -- mutable_dictionary[@\"key\"] = @\"object\"", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- mutable_dictionary[@\"key\"] = @\"object\"", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["object"]) - self.expect("expr -o -- mutable_dictionary[@\"key\"]", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- mutable_dictionary[@\"key\"]", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["object"]) - self.expect("expr -o -- @[ @\"foo\", @\"bar\" ]", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- @[ @\"foo\", @\"bar\" ]", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["NSArray", "foo", "bar"]) - self.expect("expr -o -- @{ @\"key\" : @\"object\" }", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- @{ @\"key\" : @\"object\" }", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["NSDictionary", "key", "object"]) - self.expect("expr -o -- @'a'", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- @'a'", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["NSNumber", str(ord('a'))]) - self.expect("expr -o -- @1", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- @1", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["NSNumber", "1"]) - self.expect("expr -o -- @1l", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- @1l", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["NSNumber", "1"]) - self.expect("expr -o -- @1ul", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- @1ul", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["NSNumber", "1"]) - self.expect("expr -o -- @1ll", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- @1ll", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["NSNumber", "1"]) - self.expect("expr -o -- @1ull", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- @1ull", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["NSNumber", "1"]) - self.expect("expr -o -- @123.45", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- @123.45", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["NSNumber", "123.45"]) - self.expect("expr -o -- @123.45f", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- @123.45f", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["NSNumber", "123.45"]) - self.expect("expr -o -- @( 1 + 3 )", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- @( 1 + 3 )", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["NSNumber", "4"]) - self.expect("expr -o -- @(\"Hello world\" + 6)", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("expr --object-description -- @(\"Hello world\" + 6)", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["NSString", "world"]) |

