Consider the following Objective-C code:
[object message];
The compiler will translate this into an equivalent objc_msgSend call:
objc_msgSend(object, @selector(message));