Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ARMDebug.cs « Target_ARM « DependencyAnalysis « Compiler « src « ILCompiler.Compiler « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0d8ab2eeae0a840ee8cb8d17b7d830a3bd52f15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System;
using ILCompiler.DependencyAnalysis.ARM;

namespace ILCompiler.DependencyAnalysis
{
    public static class ARMDebug
    {
        [System.Diagnostics.Conditional("DEBUG")]
        public static void EmitNYIAssert(NodeFactory factory, ref ARMEmitter encoder, string message,
                                         [System.Runtime.CompilerServices.CallerFilePath] string sourceFilePath = null,
                                         [System.Runtime.CompilerServices.CallerMemberName] string memberName = null,
                                         [System.Runtime.CompilerServices.CallerLineNumber] int sourceLineNumber = 0)
        {
            ISymbolNode NYI_Assert = factory.ExternSymbol("NYI_Assert");
            String CallInfoPrefix = " " + sourceFilePath + "(" + sourceLineNumber.ToString() + "): method " + memberName + ": ";
            ISymbolNode messageSymbol = factory.ConstantUtf8String(CallInfoPrefix + message);
            encoder.EmitMOV(encoder.TargetRegister.Arg0, messageSymbol);
            encoder.EmitJMP(NYI_Assert);
        }

       [System.Diagnostics.Conditional("DEBUG")]
        public static void EmitHelperNYIAssert(NodeFactory factory, ref ARMEmitter encoder, ReadyToRunHelperId hId,
                                               [System.Runtime.CompilerServices.CallerFilePath] string sourceFilePath = null,
                                               [System.Runtime.CompilerServices.CallerMemberName] string memberName = null,
                                               [System.Runtime.CompilerServices.CallerLineNumber] int sourceLineNumber = 0)
        {
            EmitNYIAssert(factory, ref encoder, hId.ToString() + " is not implemented", sourceFilePath, memberName, sourceLineNumber);
        }
    }
}