Added a new OptionValue subclass for lldb::Format: OptionValueFormat. Added
new OptionGroup subclasses for:
- output file for use with options: 
        long opts: --outfile <path> --append--output
        short opts: -o <path> -A
        
- format for use with options:
        long opts: --format <format>

- variable object display controls for depth, pointer depth, wether to show
  types, show summary, show location, flat output, use objc "po" style summary.
  
Modified ValueObjectMemory to be able to be created either with a TypeSP or
a ClangASTType.

Switched "memory read" over to use OptionGroup subclasses: one for the outfile
options, one for the command specific options, and one for the format.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@130334 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp b/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
index c791414..ad6621d 100644
--- a/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
+++ b/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
@@ -13348,7 +13348,7 @@
         return false;
     }
     
-    OptionValueDictionary *state_dictionary = value_sp->GetAsDictionaryValue ();
+    OptionValueDictionary *state_dictionary = value_sp->GetAsDictionary ();
     if (!before_state.LoadStateFromDictionary (state_dictionary))
     {
         out_stream->Printf ("TestEmulation:  Failed loading 'before' state.\n");
@@ -13362,7 +13362,7 @@
         return false;
     }
 
-    state_dictionary = value_sp->GetAsDictionaryValue ();
+    state_dictionary = value_sp->GetAsDictionary ();
     if (!after_state.LoadStateFromDictionary (state_dictionary))
     {
         out_stream->Printf ("TestEmulation: Failed loading 'after' state.\n");