Microsoft Mixed Reality Development
There are a lot of application development paths for Microsoft MixedReality platforms. This post covers things including OpenXR, Unity, Stereo Kit, MRTK and etc.
There are a lot of application development paths for Microsoft MixedReality platforms. This post covers things including OpenXR, Unity, Stereo Kit, MRTK and etc.
Introduction for software development in Apple platforms
Templates for efficient programming.
Notes of book Introduction ot Robotics Mechanics and Control.
Summary for some exercise.
This post talks about the knowledge (grammar, concepts) of C++.
Summary for some exercise.
Knowledge about system design.
There are several classic questions that include data structure and algorithm.
Metadata and IL Language are the fundamentals of CLR. Metadata describes the static structure and IL Language
describes the dynamic execution.
Metadata is fundamental data that is used to describe other complex data.
For the .NET metadata, it is used to describe: class, type, property, method, filed, parameters, attribute. The main category of .NET metadata are:
Type | Name |
---|---|
Definition Form | TypeDef, MethodDef, FieldDef, ModuleDef, PropertyDef |
Reference Form | AssemblyRef, TypeRef, ModuleRef, MethodsRef |
Pointer Form | MethodPtr, FieldPtr, ParamPtr |
Heap | #String, #Blob, #US, #GUIDe |
Below is the metadata to describe the Main function of class Program
; |
Person person
: Reference typeinitobj
0
, and reference type of class to null
new Person()
: Value typenewobj
ctor
constructor methodInitialization of some special type
newobj
IL has two keywords to describe the method type.
static
keyword to declarecall
keyword to executeinstance
keyword to declarecallvirt
to executecall
: call the method according to the static type of the reference, mainly used for non-virtual method.Equals
, ToString
callvirt
: call the method according to the dynamic type (real object) of the reference, mainly used for virtual method.calli
: call the method through a method pointerIdftn
or Idvirtftn
command get the method pointerMethodInfo.Invoke()
and Dynamic Method DelegateSystem.Object
.ctor
method: class constructor method.cctor
method: class type constructor method.cs
to .exe
.dll
or .exe
.cs
to .il
.il
and .exe
.il
to .exe
.exe
to .il
ctrl + m
could view the metadata in that code.CTS defines the types and rules for different programming language based on .NET. It defines the relationship between each language with their IL program.
Like in C#, the type of int
, char
, string
corresponds to System.Int32
, System.Char
, System.String
.
The type in the content of CTS includes the following chart.
System
Primitive type in C# and FCL
C# | FCL |
---|---|
int | System.Int32 |
long | System.Int64 |
floaat | System.Single |
string | System.String |
object | System.Object |
int
, char
, long
, bool
, float
, double
, byte
, enum
, struct
.System.ValueType
(which inherits from System.Object
)Equals
method, could compare the value of two data instead of the addresses of two dataclass
, interface
, delegate
, object
, string
and int[]
etc.System.Object
String
is very special. The equals of string will compare the value instead of the address. Every action on the string will generate a new string data in the managed heap.ref
, out
)static public implicit operator XX(YY y)
to write a method can customize the convert between different typeFor the convert between value type and reference type, we need to use boxing (from value to reference) and unboxing (from reference to value) to achieve it.
Note. unboxing must happen in the reference type which is generated from boxing process.
The boxing and unboxing will influence the efficiency. Use generic could avoid influencing the efficiency.
Examples of boxing and unboxing
Value Type | Reference Type | |
---|---|---|
Value Passing | Inner change won’t influence outside | Inner assign action influences outside, but the initialization won’t influence outside |
Reference Passing | Any change will influence outside | Any change will influence outside |
For reference passing, must use ref
or out
ref
: must be initialized before passingout
: must be initialized inside method.NET CLR has 3 part of memory.
When call an instance method. The next command will be pushed to stack of thread
, then other local value type will be pushed to the stack. When finish, those value type will be pop until get the pointer to the next command.
GC Heap
stores the instance of reference type. Manged by GC. The instance will contains a TypeHandler
which points to its method table in the Loader Heap.
Loader Heap
stores the metadata (type). Every type in the loader heap is a method table. Managed by AppDomain. The method table has a part called Method Slot Table
, which is a linked list containing the methods. When call a method in a reference type (class), CLR will follow the TypeHandler
in the GC heap to find the metadata which contains this type’s definition in Loader Heap. Then CLR will check the Method Slot Table
in this method table, and use JIT to compile the method’s IL code to naive code. The naive code will be stored in a dynamic memory.
![Memory in Heap](MemoryInHeap.png %}
If an object is not used by other objects in heap or not referred by data in stack, it will be regarded as garbage.
When the memory is full, the CLR will automatically work to recycle garbage and release the memory.
After releasing the memory, the CLR will use GC to move existed data to a continuous space to make the heap looks dense. The generation
of the left data will increase by 1. Next time, the data with generation 0 will be checked firstly.
In C#, you can call GC.Collect
to force the GC recycle the memory. You can also use Finalize
method or Dispose
method to customize the behavior when the class was recycled.
Dispose
instead of Finalize
using
keyword to achieve automatically dispose callingWorkstation GC
or Server GC
WeakReference
class to achieve the weak referenceToString
in subclassString.Compare
instead of ==
; str.Length
instead of == ''
foreach
instead of for
is
to check the type, use as
to convert the typestatic readonly
instead of const
catch
block, catch the specific exception firstlyFxCop
software to check the efficiency of code