[docs] Enable documentation for mini.
authorJon Purdy <evincarofautumn@gmail.com>
Sat, 11 Feb 2017 01:17:57 +0000 (17:17 -0800)
committerJon Purdy <evincarofautumn@gmail.com>
Fri, 24 Mar 2017 20:43:07 +0000 (13:43 -0700)
126 files changed:
mono/mini/abcremoval.c
mono/mini/abcremoval.h
mono/mini/alias-analysis.c
mono/mini/aot-compiler.c
mono/mini/aot-compiler.h
mono/mini/aot-runtime.c
mono/mini/arch-stubs.c
mono/mini/branch-opts.c
mono/mini/cfgdump.c
mono/mini/cfgdump.h
mono/mini/cfold.c
mono/mini/debug-mini.c
mono/mini/debugger-agent.c
mono/mini/debugger-agent.h
mono/mini/decompose.c
mono/mini/dominators.c
mono/mini/driver.c
mono/mini/dwarfwriter.c
mono/mini/dwarfwriter.h
mono/mini/exceptions-amd64.c
mono/mini/exceptions-arm.c
mono/mini/exceptions-arm64.c
mono/mini/exceptions-ia64.c
mono/mini/exceptions-mips.c
mono/mini/exceptions-ppc.c
mono/mini/exceptions-s390x.c
mono/mini/exceptions-sparc.c
mono/mini/exceptions-x86.c
mono/mini/genmdesc.c
mono/mini/graph.c
mono/mini/helpers.c
mono/mini/image-writer.c
mono/mini/image-writer.h
mono/mini/interp/hacks.h
mono/mini/interp/interp.c
mono/mini/interp/interp.h
mono/mini/interp/mintops.c
mono/mini/interp/mintops.h
mono/mini/interp/transform.c
mono/mini/ir-emit.h
mono/mini/jit-icalls.c
mono/mini/jit-icalls.h
mono/mini/jit.h
mono/mini/linear-scan.c
mono/mini/liveness.c
mono/mini/lldb.c
mono/mini/lldb.h
mono/mini/llvm-jit.h
mono/mini/llvm-runtime.h
mono/mini/local-propagation.c
mono/mini/main.c
mono/mini/method-to-ir.c
mono/mini/mini-amd64-gsharedvt.c
mono/mini/mini-amd64-gsharedvt.h
mono/mini/mini-amd64.c
mono/mini/mini-amd64.h
mono/mini/mini-arch.h
mono/mini/mini-arm-gsharedvt.c
mono/mini/mini-arm.c
mono/mini/mini-arm.h
mono/mini/mini-arm64-gsharedvt.c
mono/mini/mini-arm64-gsharedvt.h
mono/mini/mini-arm64.c
mono/mini/mini-arm64.h
mono/mini/mini-codegen.c
mono/mini/mini-cross-helpers.c
mono/mini/mini-darwin.c
mono/mini/mini-exceptions.c
mono/mini/mini-gc.c
mono/mini/mini-gc.h
mono/mini/mini-generic-sharing.c
mono/mini/mini-ia64.c
mono/mini/mini-ia64.h
mono/mini/mini-llvm-cpp.h
mono/mini/mini-llvm-loaded.c
mono/mini/mini-llvm.c
mono/mini/mini-llvm.h
mono/mini/mini-mips.c
mono/mini/mini-mips.h
mono/mini/mini-native-types.c
mono/mini/mini-ops.h
mono/mini/mini-posix.c
mono/mini/mini-ppc.c
mono/mini/mini-ppc.h
mono/mini/mini-runtime.c
mono/mini/mini-s390x.c
mono/mini/mini-s390x.h
mono/mini/mini-sparc.c
mono/mini/mini-sparc.h
mono/mini/mini-trampolines.c
mono/mini/mini-unwind.h
mono/mini/mini-windows-dllmain.c
mono/mini/mini-windows-uwp.c
mono/mini/mini-windows.c
mono/mini/mini-windows.h
mono/mini/mini-x86-gsharedvt.c
mono/mini/mini-x86.c
mono/mini/mini-x86.h
mono/mini/mini.c
mono/mini/mini.h
mono/mini/regalloc.h
mono/mini/seq-points.c
mono/mini/seq-points.h
mono/mini/simd-intrinsics.c
mono/mini/ssa.c
mono/mini/support-s390x.h
mono/mini/tasklets.c
mono/mini/tasklets.h
mono/mini/trace.c
mono/mini/trace.h
mono/mini/tramp-amd64-gsharedvt.c
mono/mini/tramp-amd64.c
mono/mini/tramp-arm-gsharedvt.c
mono/mini/tramp-arm.c
mono/mini/tramp-arm64-gsharedvt.c
mono/mini/tramp-arm64.c
mono/mini/tramp-ia64.c
mono/mini/tramp-mips.c
mono/mini/tramp-ppc.c
mono/mini/tramp-s390x.c
mono/mini/tramp-sparc.c
mono/mini/tramp-x86-gsharedvt.c
mono/mini/tramp-x86.c
mono/mini/type-checking.c
mono/mini/unwind.c
mono/mini/xdebug.c

index c4c00645c1630884ba75ec654fc47124dcd2a379..dd7276a1ee6309c1d4b15bbe2db46462c2a7594a 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * abcremoval.c: Array bounds check removal
+/**
+ * \file
+ * Array bounds check removal
  *
  * Author:
  *   Massimiliano Mantione (massi@ximian.com)
index 0d00454a9da7304b4425afd9eea2ff14c40c1cc5..ac52857ea76d9037ad1aa3edeb50883d32f32504 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * abcremoval.h: Array bounds check removal
+/**
+ * \file
+ * Array bounds check removal
  *
  * Author:
  *   Massimiliano Mantione (massi@ximian.com)
index 7ff437f9f9d5e9e1585cc4ac2d9a890959ed0b41..c30de719a428d6a5683febbcdf1e00295edde822 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * alias-analysis.c: Implement simple alias analysis for local variables.
+/**
+ * \file
+ * Implement simple alias analysis for local variables.
  *
  * Author:
  *   Rodrigo Kumpera (kumpera@gmail.com)
index df0f51cd7d5943c6f375195fecf94d9e9baa56a6..5ef9b0253805706ec4d2ebda94cdea752542d534 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * aot-compiler.c: mono Ahead of Time compiler
+/**
+ * \file
+ * mono Ahead of Time compiler
  *
  * Author:
  *   Dietmar Maurer (dietmar@ximian.com)
index 451755b57064467dcc5ec9f1a3fb2f39470b145e..6ae02d6ffc8ab5c145a4cc323ca9372d7718a7e2 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_AOT_COMPILER_H__
 #define __MONO_AOT_COMPILER_H__
 
index 622ad2e4f95b94cdbd824482273c823d16519edf..8cd1999b0857569f330efbad6c882ebc5bd68533 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * aot-runtime.c: mono Ahead of Time compiler
+/**
+ * \file
+ * mono Ahead of Time compiler
  *
  * Author:
  *   Dietmar Maurer (dietmar@ximian.com)
index cad20a06b24c5662be9729fd1cc30f83d87b6a1f..6f918c5d0de3647c5dc6dce838de9af144095cea 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #include "mini.h"
 
 /* Dummy versions of some arch specific functions to avoid ifdefs at call sites */
index d8f8f569377a44f0eb8dd6748e2d521b6e81cfc9..2f964b4162f88a70a06caaf992da8b14db18bac2 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * branch-opts.c: Branch optimizations support 
+/**
+ * \file
+ * Branch optimizations support
  *
  * Authors:
  *   Patrik Torstensson (Patrik.Torstesson at gmail.com)
index 1e76055f58110efa7587c6f49c3a061a987034fa..36c9ffac877b0a822328e5f09df25603dfddc2a4 100644 (file)
@@ -1,4 +1,5 @@
-/*
+/**
+ * \file
  * Copyright (C) 2016 Xamarin Inc
  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
  */
index ef58553701405aa66ea0fe4d2627974f8001866b..2a0161f383cfb22ce68678d81cbd403fb96671ad 100644 (file)
@@ -1,4 +1,5 @@
-/*
+/**
+ * \file
  * Copyright (C) 2016 Xamarin Inc
  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
  */
index da291f47ab54fe474de156ea760709537c8a0d38..940c07ac8d825b9d0bb3886ec37d35b71319ef41 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * cfold.c: Constant folding support
+/**
+ * \file
+ * Constant folding support
  *
  * Author:
  *   Paolo Molaro (lupus@ximian.com)
index 4dc68f255c0deaa30497fd0b808996d5dad126f2..06f6cd7a6f7638929ed598c2741dc94c86e44e47 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * debug-mini.c: Mini-specific debugging stuff.
+/**
+ * \file
+ * Mini-specific debugging stuff.
  *
  * Author:
  *   Martin Baulig (martin@ximian.com)
index e18cb98d643bd015f474be8bec56aa36e03706b6..8cd39fc9b4329a01158cabb7e50620a08e1e4f72 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * debugger-agent.c: Soft Debugger back-end module
+/**
+ * \file
+ * Soft Debugger back-end module
  *
  * Author:
  *   Zoltan Varga (vargaz@gmail.com)
index 6a64df5a5b382f3642e3f2a338bbb292f9455c93..41fe82ea98ede8d2e3cca7dae2d7163358c875b4 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_DEBUGGER_AGENT_H__
 #define __MONO_DEBUGGER_AGENT_H__
 
index af3ff832ecbf01b98cdd7c50f693bdbf9f63590d..23e576f0ea9046e20cc10366332ac0527ec40f64 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * decompose.c: Functions to decompose complex IR instructions into simpler ones.
+/**
+ * \file
+ * Functions to decompose complex IR instructions into simpler ones.
  *
  * Author:
  *   Zoltan Varga (vargaz@gmail.com)
index b4c8dc39056147e947786a6c25efdbeb80096296..208ae7597a00e73eefabd1719534c6aaef1b7088 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * dominators.c: Dominator computation on the control flow graph
+/**
+ * \file
+ * Dominator computation on the control flow graph
  *
  * Author:
  *   Dietmar Maurer (dietmar@ximian.com)
index 7a64689897785245979c39f23330243fe86d3ee5..cbefec21572feaf6630e1dc3bd900247dbfdc54b 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * driver.c: The new mono JIT compiler.
+/**
+ * \file
+ * The new mono JIT compiler.
  *
  * Author:
  *   Paolo Molaro (lupus@ximian.com)
index 773ea4924b3af98d143e59f141dd958cd2b0affd..9f2c405b68360afdf129e789ed284a382f25fe3a 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * dwarfwriter.c: Creation of DWARF debug information
+/**
+ * \file
+ * Creation of DWARF debug information
  *
  * Author:
  *   Zoltan Varga (vargaz@gmail.com)
index f157e16d69503eed80fbd7ab9859da1e600effa0..d67e12aad97ad7e483757bcfe323530f2076e091 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * dwarfwriter.h: Creation of DWARF debug information
+/**
+ * \file
+ * Creation of DWARF debug information
  *
  * Author:
  *   Zoltan Varga (vargaz@gmail.com)
index 383aea2f447911cd020226c709046309e8159efa..ec1109b430f7db0bcd3548edeb8079cb9406f8c0 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * exceptions-amd64.c: exception support for AMD64
+/**
+ * \file
+ * exception support for AMD64
  *
  * Authors:
  *   Dietmar Maurer (dietmar@ximian.com)
index 39ac2f8c9bc1728e6e7b069af8301e702c9a2203..91031e8040212f000e9f7a8e9cd72408242ea845 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * exceptions-arm.c: exception support for ARM
+/**
+ * \file
+ * exception support for ARM
  *
  * Authors:
  *   Dietmar Maurer (dietmar@ximian.com)
index 9bc79372897c88ad250ea57c5c863bc255a07228..a991846b99ee55e691eb1e44392352d8a18d1480 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * exceptions-arm64.c: exception support for ARM64
+/**
+ * \file
+ * exception support for ARM64
  *
  * Copyright 2013 Xamarin Inc
  *
index adae20f2b5f2fb83a57d67b3b08b30a77f007483..6d001d0b9918153efc4c402d8fbc7448d7e01a84 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * exceptions-ia64.c: exception support for IA64
+/**
+ * \file
+ * exception support for IA64
  *
  * Authors:
  *   Zoltan Varga (vargaz@gmail.com)
index 515a6bf23af715e0cf2cd24bae3a543c629be3b1..03ba1b27a561cd4cb83c3e27d59439bd324443e8 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * exceptions-mips.c: exception support for MIPS
+/**
+ * \file
+ * exception support for MIPS
  *
  * Authors:
  *   Mark Mason (mason@broadcom.com)
index dba01d52e117c7af49e3909270f36bb45411cfd9..b92e30d012072d7821da684b29f3973fd2f9ab55 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * exceptions-ppc.c: exception support for PowerPC
+/**
+ * \file
+ * exception support for PowerPC
  *
  * Authors:
  *   Dietmar Maurer (dietmar@ximian.com)
index 0ce54e7611e53c3a642bd11de6fbf9ff5d9b80ba..77241a6c68a3da3a769600184618cf178034a0fb 100644 (file)
@@ -1,21 +1,20 @@
-/*------------------------------------------------------------------*/
-/*                                                                 */
-/* Name        - exceptions-s390.c                                 */
-/*                                                                 */
-/* Function    - Exception support for S/390.                       */
-/*                                                                 */
-/* Name               - Neale Ferguson (Neale.Ferguson@SoftwareAG-usa.com) */
-/*                                                                 */
-/* Date        - January, 2004                                     */
-/*                                                                 */
-/* Derivation  - From exceptions-x86 & exceptions-ppc              */
-/*              Paolo Molaro (lupus@ximian.com)                    */
-/*              Dietmar Maurer (dietmar@ximian.com)                */
-/*                                                                 */
-/* Copyright   - 2001 Ximian, Inc.                                 */
-/* Licensed under the MIT license. See LICENSE file in the project root for full license information. */
-/*                                                                 */
-/*------------------------------------------------------------------*/
+/**
+ * \file
+ *
+ * Function    - Exception support for S/390.
+ *
+ * Name               - Neale Ferguson (Neale.Ferguson@SoftwareAG-usa.com)
+ *
+ * Date        - January, 2004
+ *
+ * Derivation  - From exceptions-x86 & exceptions-ppc
+ *              Paolo Molaro (lupus@ximian.com)
+ *              Dietmar Maurer (dietmar@ximian.com)
+ *
+ * Copyright   - 2001 Ximian, Inc.
+ * Licensed under the MIT license. See LICENSE file in the project root for full license information.
+ *
+ */
 
 /*------------------------------------------------------------------*/
 /*                 D e f i n e s                                    */
index 77510a7f934de0d832dd20fca39c687f19c4d1de..1cb7ac667f2aa8dbd999b7cdbfc05a014d654c9c 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * exceptions-sparc.c: exception support for sparc
+/**
+ * \file
+ * exception support for sparc
  *
  * Authors:
  *   Mark Crichton (crichton@gimp.org)
index 1a0c6fab0a66a82a6e7bc270a1e564e509e0af02..ae0f008903b34c6562768e983912de78a7bb174e 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * exceptions-x86.c: exception support for x86
+/**
+ * \file
+ * exception support for x86
  *
  * Authors:
  *   Dietmar Maurer (dietmar@ximian.com)
index 21f87eb5819d7a47a4e0ca63cf739666226b79bb..357651ee64175b78d2d4ecb3fd1d88ee7b808853 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * genmdesc: Generates the machine description
+/**
+ * \file
+ * Generates the machine description
  *
  * Authors:
  *   Paolo Molaro (lupus@ximian.com)
index 0b123e50cf686664138ce21ffb0faa23c1e549c1..f13530082174053e8e7ef6fae8b7ce887ce66635 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * graph.c: Helper routines to graph various internal states of the code generator
+/**
+ * \file
+ * Helper routines to graph various internal states of the code generator
  *
  * Author:
  *   Dietmar Maurer (dietmar@ximian.com)
index 493dbc85a70b677bcf498cf3218b579892dc9528..3925249f9d12a1d2e371a1b64d0f87a367e117a5 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * helpers.c: Assorted routines
+/**
+ * \file
+ * Assorted routines
  *
  * (C) 2003 Ximian, Inc.
  */
index 2e4619301d1b6ca24b81da6be81759e9fbef874b..f381ac8358750ff78ef0ac55f11862c110b6442d 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * image-writer.c: Creation of object files or assembly files using the same interface.
+/**
+ * \file
+ * Creation of object files or assembly files using the same interface.
  *
  * Author:
  *   Dietmar Maurer (dietmar@ximian.com)
index cc8b5f3d556a2459ec8d45880352bc01e9bb67dc..3da1717d3e3d56e7791748e64c1bf88b302bed3c 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * image-writer.h: Creation of object files or assembly files using the same interface.
+/**
+ * \file
+ * Creation of object files or assembly files using the same interface.
  *
  * Author:
  *   Dietmar Maurer (dietmar@ximian.com);
index 9697ccbad6fec104caaf59b9521f5315c62f5003..6984c38b395d4e91e48a285f5028dae0bf0f15e8 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 /* we need some special math function */
 #ifndef _ISOC99_SOURCE
 #define _ISOC99_SOURCE
index be96452e8e577658999871b4186947c971439dce..c3103d96f4c7dbab7c1f5b401decaee16701b8a4 100644 (file)
@@ -1,4 +1,5 @@
-/*
+/**
+ * \file
  * PLEASE NOTE: This is a research prototype.
  *
  *
index cd3514fa7ef08a02f13453df1fdbcd32a90202e3..6189b3d1be4e709841609b011a0ec76182cb2b5f 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_MINI_INTERPRETER_H__
 #define __MONO_MINI_INTERPRETER_H__
 #include <mono/mini/mini.h>
index 5b4d69269e851cb3cbab24ba2d5996c093c15035..e1c58ecf7a968643c8ac0ae638088dfa4f4aea01 100644 (file)
@@ -1,4 +1,5 @@
-/*
+/**
+ * \file
  * Utilities for handling interpreter VM instructions
  *
  * Authors:
index e787526e2febe225faeb272671a1f38770600f42..7a9bc4da017922de3a485fcdaf71cc9669083c6a 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __INTERPRETER_MINTOPS_H
 #define __INTERPRETER_MINTOPS_H
 
index 4f28dec15dcaa13ffe1c96017be411f72fc90c31..1b1776867fcc1bfe1b585db11a1e008a96c4ea3f 100644 (file)
@@ -1,4 +1,5 @@
-/*
+/**
+ * \file
  * transform CIL into different opcodes for more
  * efficient interpretation
  *
index 522438da5b06d3cf9168208ca95f5ed579144006..859cccd112dac40e219798182f98dc0b5b98dcec 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * ir-emit.h: IR Creation/Emission Macros
+/**
+ * \file
+ * IR Creation/Emission Macros
  *
  * Author:
  *   Zoltan Varga (vargaz@gmail.com)
index ab4ab1295f8f3f6fb8d73bcca4ba8e7b9d320f16..b52edd4e404bf1fadba2233bdb25834d92dcf840 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * jit-icalls.c: internal calls used by the JIT
+/**
+ * \file
+ * internal calls used by the JIT
  *
  * Author:
  *   Dietmar Maurer (dietmar@ximian.com)
index a83b337baaafb9d7fa97c1dc66313aca59c983b7..f605a709507ac845e886240354877a313bd91c68 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_JIT_ICALLS_H__
 #define __MONO_JIT_ICALLS_H__
 
index ed5eca5248beb4e1d7bff51a183720e7cc3e2498..59e713da790443c5c6201607af18213f34d1351f 100644 (file)
@@ -1,4 +1,5 @@
-/*
+/**
+ * \file
  * Author:
  *   Dietmar Maurer (dietmar@ximian.com)
  *
index faadc048ec98457f870f771ca0e919c1f03b7b0d..998c082c284b93d6b6d56e00c040f5c20d32aab5 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * liveness.c: liveness analysis
+/**
+ * \file
+ * liveness analysis
  *
  * Author:
  *   Dietmar Maurer (dietmar@ximian.com)
index cfdc728c0d019e49bf5b19d187be5919eb0d0465..b98c7a57528eb1827e5a95997bcffd63780a8d4f 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * liveness.c: liveness analysis
+/**
+ * \file
+ * liveness analysis
  *
  * Author:
  *   Dietmar Maurer (dietmar@ximian.com)
index 360fbfbb67d80d1fedcf697645430f907a2befee..05b89437f5bbc2a51c71a60f3c49273edd1205d0 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * lldb.c: Mono support for LLDB.
+/**
+ * \file
+ * Mono support for LLDB.
  *
  * Author:
  *   Zoltan Varga (vargaz@gmail.com)
index 6c601376c3929c5ace8c765441b0f08d66d1613b..b91a7b1304e76daf41d1b77adf7fa1234c397451 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_XDEBUG_LLDB_H__
 #define __MONO_XDEBUG_LLDB_H__
 
index 4510b71cea6ee58689c4ce7179b1421def6ca226..dd7019b4c291b80ba9d090318f6394657a846359 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * llvm-jit.h: LLVM backend
+/**
+ * \file
+ * LLVM backend
  *
  * Authors:
  *   Zoltan Varga (vargaz@gmail.com)
index f62cb8bd952d976dbc92c4618e5a22763c491109..9d4144eb4e1f6f17e6e946969d3dc30ac2595587 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * llvm-runtime.h: Runtime support for llvm generated code
+/**
+ * \file
+ * Runtime support for llvm generated code
  *
  * Authors:
  *   Zoltan Varga (vargaz@gmail.com)
index d8f62355b8ef1ecc69e4195fb804ef1f305fa687..7a16c1da728cac177ba8e9a7d40c5dff0f385eef 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * local-propagation.c: Local constant, copy and tree propagation.
+/**
+ * \file
+ * Local constant, copy and tree propagation.
  *
  * To make some sense of the tree mover, read mono/docs/tree-mover.txt
  *
index 80044897a83e48a34caee27a8aa05d1a92e74edc..41511ce34b0e1f4e425f455f5d37bf819d0817ff 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * main.c: The main entry point for the mono executable
+/**
+ * \file
+ * The main entry point for the mono executable
  *
  * The main entry point does a few things:
  * 
index 20fb8d23719ac2f86437015040f66a228100b835..e5b5bbf6a50d0ed8acf0367b6f205851ce936c38 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * method-to-ir.c: Convert CIL to the JIT internal representation
+/**
+ * \file
+ * Convert CIL to the JIT internal representation
  *
  * Author:
  *   Paolo Molaro (lupus@ximian.com)
index c4518da3deda497facfea4dd426603893915f970..bd9c3b1f198cc38c072e460ce10adc8be10bef92 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-amd64-gsharedvt.c: libcorkscrew-based native unwinder
+/**
+ * \file
+ * libcorkscrew-based native unwinder
  *
  * Authors:
  *   Zoltan Varga <vargaz@gmail.com>
index 1bb14e5abd2c4f43eed0d67118a82037ad151d71..323e2f3f98ae3be1198e7187927b14e501383041 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-exceptions-native-unwinder.c: libcorkscrew-based native unwinder
+/**
+ * \file
+ * libcorkscrew-based native unwinder
  *
  * Authors:
  *   Zoltan Varga <vargaz@gmail.com>
@@ -53,4 +54,4 @@ static const char* ret_marshal_name[] = {
 #define DEBUG_AMD64_GSHAREDVT_PRINT(...)
 #endif
 
-#endif /* MINI_AMD64_GSHAREDVT_H */
\ No newline at end of file
+#endif /* MINI_AMD64_GSHAREDVT_H */
index 0ad34cf0075905ae49bfdd8aff96c117ca39f027..c4922a4f2a2edf4e160e0d5f6de70bca5141db16 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-amd64.c: AMD64 backend for the Mono code generator
+/**
+ * \file
+ * AMD64 backend for the Mono code generator
  *
  * Based on mini-x86.c.
  *
index 8b9ca55c9bab6bf9650ea7905779444c53cfe9c4..ace42c42331376aa3963e919f8a60b06dc6ead45 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_MINI_AMD64_H__
 #define __MONO_MINI_AMD64_H__
 
index 6d52aecf6da191d0a89a555015a7a97f31d32a4b..9a8e05e8ec69b4b508763ce17a73c417db899541 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_MINI_ARCH_H__
 #define __MONO_MINI_ARCH_H__
 
index 2c7f8812a699661bd095a63d227419d1b91f112e..78e7f8064fc5955dd3a51aacf4c92359b6d972d7 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-arm-gsharedvt.c: gsharedvt support code for arm
+/**
+ * \file
+ * gsharedvt support code for arm
  *
  * Authors:
  *   Zoltan Varga <vargaz@gmail.com>
index 1ab5eeab15c852da548777f57ae2659139d46854..510d3916e51c84566e8c22d364a9718d747a652b 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-arm.c: ARM backend for the Mono code generator
+/**
+ * \file
+ * ARM backend for the Mono code generator
  *
  * Authors:
  *   Paolo Molaro (lupus@ximian.com)
index 98f8ef946bd345234cfad4e89badb04f4bcd511b..a7da8a6a98c555e7ac42fa1ee9e1b2a2a6f00a0d 100644 (file)
@@ -1,4 +1,5 @@
-/*
+/**
+ * \file
  * Copyright 2011 Xamarin Inc
  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
  */
index df24c53c6581c444f8c8c02ce774215617ad4f0b..b81873b49317059276dd8812cfbc326277b947d1 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-arm64-gsharedvt.c: gsharedvt support code for arm64
+/**
+ * \file
+ * gsharedvt support code for arm64
  *
  * Authors:
  *   Zoltan Varga <vargaz@gmail.com>
index b828218887d6baf99a453afe60d2fbc07e54c70a..ed8e402455efc5e3c159c3f5172219620f844761 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MINI_ARM64_GSHAREDVT_H__
 #define __MINI_ARM64_GSHAREDVT_H__
 
index 1305cb6c23ec48bf66a67fb666ac5f3ec715d589..e6a76ad1f00a07ca06a90ab45d762808d173d97a 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-arm64.c: ARM64 backend for the Mono code generator
+/**
+ * \file
+ * ARM64 backend for the Mono code generator
  *
  * Copyright 2013 Xamarin, Inc (http://www.xamarin.com)
  * 
index bc634c4f30fc36f9ca40374626e0df8e90da5567..f6dc7946c110941b8f7fa1c2f60a1974db48b0a1 100644 (file)
@@ -1,5 +1,5 @@
-/*
- * mini-arm64.h
+/**
+ * \file
  *
  * Copyright 2013 Xamarin Inc
  *
index 876d35c635c87dabbcb0682569be6633970dcb94..4482640343b38ca252d75d3e0665ceeea4de7caa 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-codegen.c: Arch independent code generation functionality
+/**
+ * \file
+ * Arch independent code generation functionality
  *
  * (C) 2003 Ximian, Inc.
  */
index 6c6ead8c4d2e204cd451f913386fccb891100e0f..14bd722aca127a552c040e3981bad1c77974822a 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #include "config.h"
 
 #include <stdio.h>
index 779bde4da366632a69a5a1a0421861351162f8f2..75e0a8800fb7531a7083f293f0989b5f44de37ff 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-darwin.c: Darwin/MacOS support for Mono.
+/**
+ * \file
+ * Darwin/MacOS support for Mono.
  *
  * Authors:
  *   Mono Team (mono-list@lists.ximian.com)
index 18fdc3cb847146614b09b2b087e02772d7f7e01d..c4f32d77cb11e7f74a02c22827f92d66af47b37f 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-exceptions.c: generic exception support
+/**
+ * \file
+ * generic exception support
  *
  * Authors:
  *   Dietmar Maurer (dietmar@ximian.com)
index d83009b18342bba963006a88588cd354e06ed4ab..31e775ecc9e5c7f004307a52a8ba1d897d5a0c53 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-gc.c: GC interface for the mono JIT
+/**
+ * \file
+ * GC interface for the mono JIT
  *
  * Author:
  *   Zoltan Varga (vargaz@gmail.com)
index 12e0c52066ec14c4e8475c990df1054c72b568bb..4373d17733248751b3d7f589b254b6ce8990b675 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_MINI_GC_H__
 #define __MONO_MINI_GC_H__
 
index 58fcaac9c82d59ae4b4317013f16d5531c6c2202..2f42b49f91a3df7a56ecab070a046432a569c9ae 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-generic-sharing.c: Support functions for generic sharing.
+/**
+ * \file
+ * Support functions for generic sharing.
  *
  * Author:
  *   Mark Probst (mark.probst@gmail.com)
index e60d80a4ff2dfddda2329ed7005509e5c58b3990..8a629bceb62f56a7ec937e3028c80e002a94df01 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-ia64.c: IA64 backend for the Mono code generator
+/**
+ * \file
+ * IA64 backend for the Mono code generator
  *
  * Authors:
  *   Zoltan Varga (vargaz@gmail.com)
index bfee9d5c5480a3f0b0fb876524f6952cf2a5ef79..e1fc154b1f359cc63280c86d4fd17e50ad0a270e 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_MINI_IA64_H__
 #define __MONO_MINI_IA64_H__
 
index f969274e4a7f6bfb211b13063d73dea5f51a61a2..67dd9418a7da3f568b288ab010996b5fa1a6cc11 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-llvm-cpp.h: LLVM backend
+/**
+ * \file
+ * LLVM backend
  *
  * Authors:
  *   Zoltan Varga (vargaz@gmail.com)
index d0f3efbe8b1b052eaee9a01f3e09250f6469fff5..a5c0397221b6f5e8889f9447d7d98605c58c0740 100644 (file)
@@ -1,4 +1,5 @@
-/*
+/**
+ * \file
  * Handle the differences between the llvm backend beeing embedded
  * or loaded at runtime.
  */
index 3fb5dfce0117b9e7df33932b2fa3a7de384465fd..b31eb601de6249b175f98f887bd4d83d73daa203 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-llvm.c: llvm "Backend" for the mono JIT
+/**
+ * \file
+ * llvm "Backend" for the mono JIT
  *
  * Copyright 2009-2011 Novell Inc (http://www.novell.com)
  * Copyright 2011 Xamarin Inc (http://www.xamarin.com)
index 027a16fa3c75ec9a48dcede0540f1996e42c2c48..483729d1c3bbc03b3a2ee5dfb392b183c0470b72 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_MINI_LLVM_H__
 #define __MONO_MINI_LLVM_H__
 
index 4eecb95e25bc1ed7e6ddbc5def91439dbaf392ed..86885203a9e8efcd1f275b357f0ddad7ecc982fd 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-mips.c: MIPS backend for the Mono code generator
+/**
+ * \file
+ * MIPS backend for the Mono code generator
  *
  * Authors:
  *   Mark Mason (mason@broadcom.com)
index df179bd2545334cd8cf1eca629efc0f54b487a43..c24bf22d601ac7040b1965ed698977fcb99c80fa 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_MINI_MIPS_H__
 #define __MONO_MINI_MIPS_H__
 
index 4bf5a79bdc606ae04c9309cf003bbb3d73f015db..9732a3f94fc5e29b76c8651bb17710ccfe0e18a7 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * magic-types.c: intrinsics for variable sized int/floats
+/**
+ * \file
+ * intrinsics for variable sized int/floats
  *
  * Author:
  *   Rodrigo Kumpera (kumpera@gmail.com)
index 3ecc77cf66b82cbaed40a6f7def0fabaad6591eb..838b8a9cd961307000be0460d90a65b5b4e7fa1f 100644 (file)
@@ -1,4 +1,5 @@
-/*
+/**
+ * \file
  * Copyright 2003 Ximian, Inc
  * Copyright 2003-2011 Novell Inc
  * Copyright 2011 Xamarin Inc
index 5e574b376097aac3209254f2a36a3c4a5211152f..0d1b11f3e45a95dabae4f05a33ff37576f11fef5 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-posix.c: POSIX signal handling support for Mono.
+/**
+ * \file
+ * POSIX signal handling support for Mono.
  *
  * Authors:
  *   Mono Team (mono-list@lists.ximian.com)
index 4af328dc5d7d466360d306afcd293ac7b7011127..ed3d0bca4c6959e97a5bdbb6f870e9570b6ba0fa 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-ppc.c: PowerPC backend for the Mono code generator
+/**
+ * \file
+ * PowerPC backend for the Mono code generator
  *
  * Authors:
  *   Paolo Molaro (lupus@ximian.com)
index c5b6750559c9f3eb66cedc0d92ececdfabb35ed0..9b404ff7c1c3b384c616b20f3b368bab1b514441 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_MINI_PPC_H__
 #define __MONO_MINI_PPC_H__
 
index 45de59b8565681db09a7c1e45aecab24b74e7db3..863d94c79effd278bf7dc9a245c4f2fb39d76db3 100644 (file)
@@ -1,6 +1,6 @@
-
-/*
- * mini-runtime.c: Runtime code for the JIT
+/**
+ * \file
+ * Runtime code for the JIT
  *
  * Authors:
  *   Paolo Molaro (lupus@ximian.com)
index d6e6bc42408637a697f6038972fcef2da6389e78..9fa04b07c61448197f13175b586bd7ace5b236b0 100644 (file)
@@ -1,18 +1,16 @@
-/*------------------------------------------------------------------*/
-/*                                                                 */
-/* Name        - mini-s390.c                                       */
-/*                                                                 */
-/* Function    - S/390 backend for the Mono code generator.         */
-/*                                                                 */
-/* Name               - Neale Ferguson (Neale.Ferguson@SoftwareAG-usa.com) */
-/*                                                                 */
-/* Date        - January, 2004                                     */
-/*                                                                 */
-/* Derivation  - From mini-x86 & mini-ppc by -                     */
-/*              Paolo Molaro (lupus@ximian.com)                    */
-/*              Dietmar Maurer (dietmar@ximian.com)                */
-/*                                                                 */
-/*------------------------------------------------------------------*/
+/**
+ * \file
+ * Function    - S/390 backend for the Mono code generator.
+ *
+ * Name               - Neale Ferguson (Neale.Ferguson@SoftwareAG-usa.com)
+ *
+ * Date        - January, 2004
+ *
+ * Derivation  - From mini-x86 & mini-ppc by -
+ *              Paolo Molaro (lupus@ximian.com)
+ *              Dietmar Maurer (dietmar@ximian.com)
+ *
+ */
 
 /*------------------------------------------------------------------*/
 /*                 D e f i n e s                                    */
index a1a9941c48f0e0737bb71ef2d6ecfcbbd212235f..9747be08ce7f9b504e35437cda29af54bfdaf83d 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_MINI_S390X_H__
 #define __MONO_MINI_S390X_H__
 
index 88fd22fe9362301c02d7a969cfdd4a1e89f0e3ea..65056f26c5b8a705b1691d9226952c26475ce7c6 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-sparc.c: Sparc backend for the Mono code generator
+/**
+ * \file
+ * Sparc backend for the Mono code generator
  *
  * Authors:
  *   Paolo Molaro (lupus@ximian.com)
index 2c9d8772f68d2777de68676b49c0092ca5834215..8140006cfec0ee53fee21b8d6b65c988ab0854ae 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_MINI_SPARC_H__
 #define __MONO_MINI_SPARC_H__
 
index 737c6a3700255a9ac98f292227f6051d630790b0..9d5e99a9b795db7169d76fdfcc19f244063c4c18 100644 (file)
@@ -1,4 +1,5 @@
-/*
+/**
+ * \file
  * (C) 2003 Ximian, Inc.
  * (C) 2003-2011 Novell, Inc.
  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
index 41100fa3b35be60f47127f19ff3bff3792956bdf..26c7ada5df39c91beb747816bf8ebbb8e4557ec2 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-unwind.h: Stack Unwinding Interface
+/**
+ * \file
+ * Stack Unwinding Interface
  *
  * Authors:
  *   Zoltan Varga (vargaz@gmail.com)
index 887a6a13b29fa60c41e8ce3f8c3d977d693babd8..cd3f1f04c1a7ae030d799b3e929f2a35bea6a52a 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-windows-dllmain.c: DllMain entry point.
+/**
+ * \file
+ * DllMain entry point.
  *
  * (C) 2002-2003 Ximian, Inc.
  * (C) 2003-2006 Novell, Inc.
index 2d479708fcd8034d08702f4b90417fc332dc5ea8..97bea437f3edfe7faf6d5bf228322a23987a3379 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-windows-uwp.c: UWP profiler stat support for Mono.
+/**
+ * \file
+ * UWP profiler stat support for Mono.
  *
  * Copyright 2016 Microsoft
  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
index 9983e27d1b3b5913a0c5eb28b21bc3b3f289c477..2d3c64f22e62ba0014bf63ff7dcb4f40619c4f84 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-posix.c: POSIX signal handling support for Mono.
+/**
+ * \file
+ * POSIX signal handling support for Mono.
  *
  * Authors:
  *   Mono Team (mono-list@lists.ximian.com)
index ba823c3d54d6f57552111714998ce900de3c83cc..3d95e3e9ffc4aa70f6429f7c31d13c467c079fac 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_MINI_WINDOWS_H__
 #define __MONO_MINI_WINDOWS_H__
 
index 130d48e7f56d7acbdf1cd9422eaf3610b1f0d1fd..7aea192c9de166c860fdb59ab61c24d59abcd1e1 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-x86-gsharedvt.c: gsharedvt support code for x86
+/**
+ * \file
+ * gsharedvt support code for x86
  *
  * Authors:
  *   Zoltan Varga <vargaz@gmail.com>
index 1683fd45e3e516b6dd9608d5b2f55a63cf06a99d..78da2b292f23927928fc7226479d0a1641fe3137 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini-x86.c: x86 backend for the Mono code generator
+/**
+ * \file
+ * x86 backend for the Mono code generator
  *
  * Authors:
  *   Paolo Molaro (lupus@ximian.com)
index ffe8387ee110459bf9ff5e87c13eb70aa7c378c7..5c40278e39d373a23da950143ee37b14b4054685 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_MINI_X86_H__
 #define __MONO_MINI_X86_H__
 
index 21dd9c8f7ea21323fda7a86424318f7037c027b6..ac9c22f9ae18d14f7161b6730fb43ebaaf6e43fc 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * mini.c: The new Mono code generator.
+/**
+ * \file
+ * The new Mono code generator.
  *
  * Authors:
  *   Paolo Molaro (lupus@ximian.com)
index 93c53e0f0fad95c683bebca297e5c241fc559e81..90e217364bb95971d664c92587c951e4010975fb 100644 (file)
@@ -1,4 +1,5 @@
-/*
+/**
+ * \file
  * Copyright 2002-2003 Ximian Inc
  * Copyright 2003-2011 Novell Inc
  * Copyright 2011 Xamarin Inc
index 3131bc16d60229bf3930877a3e25db40ed156e22..e5d6ae6bdb82618cfa703fd77e2811170f68788e 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #if defined(__native_client__) && defined(__x86_64__)
 typedef guint64 regmask_t;
 #else
index 623783262034c2a9d18540b85dedffb41ef139a4..88f732d9fc350b9e8a6e5b8bda942e9670a3b0c9 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * seq-points.c: Sequence Points functions
+/**
+ * \file
+ * Sequence Points functions
  *
  * Authors:
  *   Marcos Henrich (marcos.henrich@xamarin.com)
index 79915205a2d7e25bcd94b944edff81803fc48474..e2a98696ef63800b0bd43f266303da6be1f581f6 100644 (file)
@@ -1,4 +1,5 @@
-/*
+/**
+ * \file
  * Copyright 2014 Xamarin Inc
  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
  */
index 252ba76035eac21814b22b18ba804d469de51047..b394b545d607d7efea9d87e93f923aeced13d43c 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * simd-instrisics.c: simd support for intrinsics
+/**
+ * \file
+ * simd support for intrinsics
  *
  * Author:
  *   Rodrigo Kumpera (rkumpera@novell.com)
index d0b34b2781d177be5a558e56491edf369130ba84..edff87644956c3c015169abaa865990bc83cb74f 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * ssa.c: Static single assign form support for the JIT compiler.
+/**
+ * \file
+ * Static single assign form support for the JIT compiler.
  *
  * Author:
  *    Dietmar Maurer (dietmar@ximian.com)
index f93dc88c0c6922e3b097ffd2c0f488df657801d9..8856f7745af768d911a88c4fe08150c737c7b56e 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_SUPPORT_S390X_H__
 #define __MONO_SUPPORT_S390X_H__
 
index a29208fb85784d60ffc57afc63bbf1907f44fae6..e767f63125a6914d68d7258c3742ce08b2c4bed6 100644 (file)
@@ -1,3 +1,6 @@
+/**
+ * \file
+ */
 
 #include "config.h"
 #include "tasklets.h"
index 615f20a4b9b9a1067ae941b0702b87d748aab880..fc6f0b8178a9c6144c778aaa22c9297478b7bf14 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_TASKLETS_H__
 #define __MONO_TASKLETS_H__
 
index d44511d7739bd53613ff092c02264a509b73a3e7..e5e36100f09575d94edbd0d24c29028a82ba949d 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * trace.c: Tracing facilities for the Mono Runtime.
+/**
+ * \file
+ * Tracing facilities for the Mono Runtime.
  *
  * Author:
  *   Paolo Molaro (lupus@ximian.com)
index db97f81a287a1debb1013ca824a22e95fa10d3e6..7f6d4562f7d4a1cbcddd01128fa5981618ff1fae 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_TRACE_H__
 #define __MONO_TRACE_H__
 #include <glib.h>
index 5cf1f75540db1a921bea4ea3755ebc5edd7118dd..eb1d59340f03843479ae60fe992854a6c7a2be11 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * tramp-amd64-gsharedvt.c: libcorkscrew-based native unwinder
+/**
+ * \file
+ * libcorkscrew-based native unwinder
  *
  * Authors:
  *   Zoltan Varga <vargaz@gmail.com>
index 7ec7437eb30de65ba5895512bfc4619f583718d2..2e00450da1bcfa18985b8faeef53033bbdd3ff56 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * tramp-amd64.c: JIT trampoline code for amd64
+/**
+ * \file
+ * JIT trampoline code for amd64
  *
  * Authors:
  *   Dietmar Maurer (dietmar@ximian.com)
index acc1dd839ff1f5ed644013141850e8925389b458..fe96db64815a1b78653b7d163e7e472d2b4a62b7 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * tramp-arm-gsharedvt.c: gsharedvt support code for arm
+/**
+ * \file
+ * gsharedvt support code for arm
  *
  * Authors:
  *   Zoltan Varga <vargaz@gmail.com>
index 982e633b0411c931bc3931288f388110d87906aa..2872b1c13329feaaa1dc433d66be3f3a6883c1a3 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * tramp-arm.c: JIT trampoline code for ARM
+/**
+ * \file
+ * JIT trampoline code for ARM
  *
  * Authors:
  *   Paolo Molaro (lupus@ximian.com)
index 2e005d3c7ab703cc11d3e7c147ab1cb459df3e19..1e35f6a8521b54dc7f78066cc8cf40dce6607c11 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * tramp-arm64-gsharedvt.c: gsharedvt support code for arm64
+/**
+ * \file
+ * gsharedvt support code for arm64
  *
  * Authors:
  *   Zoltan Varga <vargaz@gmail.com>
index ed2127c4ff1dde988081623d9439f5f6deb53329..e80cd023dccd22b75239bfbde9a26d811d18c319 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * tramp-arm64.c: JIT trampoline code for ARM64
+/**
+ * \file
+ * JIT trampoline code for ARM64
  *
  * Copyright 2013 Xamarin Inc
  *
index 48338e3f757c96cdb385771aba5d2fbd97ba0478..4c2a4ee80ff498ebab969fad4eb41ca7456ab135 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * tramp-ia64.c: JIT trampoline code for ia64
+/**
+ * \file
+ * JIT trampoline code for ia64
  *
  * Authors:
  *   Zoltan Varga (vargaz@gmail.com)
index 37f17a47c89b3d7c20e638236364ae6fa25b4533..95c2eafb0aecb440fe83c961f8e448bc52a9f14b 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * tramp-mips.c: JIT trampoline code for MIPS
+/**
+ * \file
+ * JIT trampoline code for MIPS
  *
  * Authors:
  *    Mark Mason (mason@broadcom.com)
index 32ab65ba8cda81118f2a16007cef51fda25a7b5a..364dcacae6a6ce4bba2f912408de565511def8a2 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * tramp-ppc.c: JIT trampoline code for PowerPC
+/**
+ * \file
+ * JIT trampoline code for PowerPC
  *
  * Authors:
  *   Dietmar Maurer (dietmar@ximian.com)
index db7e3d9ad0f2ea907ed0398dbaf9af0bcd95b086..c89f2038b2047c1013a92b712a7c5359310229ea 100644 (file)
@@ -1,20 +1,19 @@
-/*------------------------------------------------------------------*/
-/*                                                                 */
-/* Name        - tramp-s390x.c                                     */
-/*                                                                 */
-/* Function    - JIT trampoline code for S/390.                     */
-/*                                                                 */
-/* Name               - Neale Ferguson (Neale.Ferguson@SoftwareAG-usa.com) */
-/*                                                                 */
-/* Date        - January, 2004                                     */
-/*                                                                 */
-/* Derivation  - From exceptions-x86 & exceptions-ppc              */
-/*              Paolo Molaro (lupus@ximian.com)                    */
-/*              Dietmar Maurer (dietmar@ximian.com)                */
-/*                                                                 */
-/* Copyright   - 2001 Ximian, Inc.                                 */
-/* Licensed under the MIT license. See LICENSE file in the project root for full license information.*/
-/*------------------------------------------------------------------*/
+/**
+ * \file
+ * Function    - JIT trampoline code for S/390.
+ *
+ * Name               - Neale Ferguson (Neale.Ferguson@SoftwareAG-usa.com)
+ *
+ * Date        - January, 2004
+ *
+ * Derivation  - From exceptions-x86 & exceptions-ppc
+ *              Paolo Molaro (lupus@ximian.com)
+ *              Dietmar Maurer (dietmar@ximian.com)
+ *
+ * Copyright   - 2001 Ximian, Inc.
+ * Licensed under the MIT license. See LICENSE file in the project root for full license information.
+ *
+ */
 
 /*------------------------------------------------------------------*/
 /*                 D e f i n e s                                    */
index ad7bcddbe85dac3c3c7f030c61bb19ea07bcafab..b88495977d9d1b5f7346d1e7ecf8e28a11a4957a 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * tramp-sparc.c: JIT trampoline code for Sparc
+/**
+ * \file
+ * JIT trampoline code for Sparc
  *
  * Authors:
  *   Mark Crichton (crichton@gimp.org)
index 5482504beac9a030f672da799d03a2c9c9edabbd..2001532d7ed9cb5ad5addab16c8724bfa8aabf85 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * tramp-x86-gsharedvt.c: gsharedvt support code for x86
+/**
+ * \file
+ * gsharedvt support code for x86
  *
  * Authors:
  *   Zoltan Varga <vargaz@gmail.com>
index eac0f3141335a7a7f08152dfe6080e3c76151dac..0caf863f70f5f03d978a58dee9f38a06b551b4e2 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * tramp-x86.c: JIT trampoline code for x86
+/**
+ * \file
+ * JIT trampoline code for x86
  *
  * Authors:
  *   Dietmar Maurer (dietmar@ximian.com)
index 18a5099d977decdb86790a83a81df355b34745f9..812c430a634225259b2e584fda24a70789eb26df 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #include <config.h>
 #include <mono/utils/mono-compiler.h>
 
index f63171e52f171eaf656667e33b5a9297c37231f2..2dc04322dc6b22a1f64feac6342fa85d39e5f334 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * unwind.c: Stack Unwinding Interface
+/**
+ * \file
+ * Stack Unwinding Interface
  *
  * Authors:
  *   Zoltan Varga (vargaz@gmail.com)
index bbf90a08b64aac4af029668e370ba1778036466c..ee8f4f79061c26081ef606cd010e4afd5d79bc0e 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * xdebug.c: Support for emitting gdb debug info for JITted code.
+/**
+ * \file
+ * Support for emitting gdb debug info for JITted code.
  *
  * Author:
  *   Zoltan Varga (vargaz@gmail.com)