diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-14 01:30:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-14 01:30:15 +0000 |
commit | f47e4c174bddf37acf2a36906d143668300e3946 (patch) | |
tree | 7a01ac8edf6ac14e0bb47e689d7230906cfd10a0 /llvm/docs/BytecodeFormat.html | |
parent | 48ec1733125ce1d9f9b8f5b14bc3b7f64e908d69 (diff) | |
download | bcm5719-llvm-f47e4c174bddf37acf2a36906d143668300e3946.tar.gz bcm5719-llvm-f47e4c174bddf37acf2a36906d143668300e3946.zip |
minor changes
llvm-svn: 21998
Diffstat (limited to 'llvm/docs/BytecodeFormat.html')
-rw-r--r-- | llvm/docs/BytecodeFormat.html | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/llvm/docs/BytecodeFormat.html b/llvm/docs/BytecodeFormat.html index 0e36db2eb4b..dd395306611 100644 --- a/llvm/docs/BytecodeFormat.html +++ b/llvm/docs/BytecodeFormat.html @@ -1624,19 +1624,18 @@ In each of these entries in range 56-63, the opcode is documented as the base opcode (Invoke, Call, Store) plus some set of modifiers, as follows:</p> <dl> <dt>CC</dt> - <dd>This means a generic (user defined) calling convention number is specified - in a VBR that follows the opcode immediately. This is used when the calling - convention for the Invoke or the Call instruction is not one of the LLVM - standard ones (like FastCC or CCC) + <dd>This means an arbitrary calling convention is specified + in a VBR that follows the opcode. This is used when the instruction cannot + be encoded with one of the more compact forms. </dd> <dt>FastCC</dt> <dd>This indicates that the Call or Invoke is using the FastCC calling - convention which puts arguments in registers to avoid stack loading.</dd> + convention.</dd> <dt>CCC</dt> - <dd>This indicates that the Call or Invoke is using the "C" calling convention - which is specified by the C99 language.</dd> + <dd>This indicates that the Call or Invoke is using the native "C" calling + convention.</dd> <dt>TailCall</dt> - <dd>This indicates that the Call or Invoke is a tail call.</dd> + <dd>This indicates that the Call has the 'tail' modifier.</dd> </dl> <!-- _______________________________________________________________________ --> |