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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Bred <bredpetr@gmail.com>2017-06-22 17:31:14 +0300
committerJan Kotas <jkotas@microsoft.com>2017-06-22 17:31:14 +0300
commit9660ccd8800ffafd960e87b4e48f8154a8e11282 (patch)
tree0ea129ac4614a81972e535ec8132f51aabe8b457 /src/System.Private.Jit
parentcd2c26981a64d8695e0cff26bea3b8ccbd312e67 (diff)
Add more informative logs for arm (#3949)
Signed-off-by: Petr Bred <bredpetr@gmail.com>
Diffstat (limited to 'src/System.Private.Jit')
-rw-r--r--src/System.Private.Jit/src/Internal/Runtime/JitSupport/JitNodeFactory.cs1
-rw-r--r--src/System.Private.Jit/src/System.Private.Jit.csproj1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/System.Private.Jit/src/Internal/Runtime/JitSupport/JitNodeFactory.cs b/src/System.Private.Jit/src/Internal/Runtime/JitSupport/JitNodeFactory.cs
index 01615055d..989efecdf 100644
--- a/src/System.Private.Jit/src/Internal/Runtime/JitSupport/JitNodeFactory.cs
+++ b/src/System.Private.Jit/src/Internal/Runtime/JitSupport/JitNodeFactory.cs
@@ -111,6 +111,7 @@ namespace ILCompiler.DependencyAnalysis
public IMethodNode ShadowConcreteMethod(MethodDesc method, bool isUnboxingStub = false) { throw new NotImplementedException(); }
internal IMethodNode StringAllocator(MethodDesc stringConstructor) { throw new NotImplementedException(); }
public ISymbolNode ExternSymbol(string name) { throw new NotImplementedException(); }
+ public ISymbolNode ConstantUtf8String(string str) { throw new NotImplementedException(); }
public IEETypeNode NecessaryTypeSymbol(TypeDesc type) { return ConstructedTypeSymbol(type); }
internal JitInterfaceDispatchCellNode InterfaceDispatchCell(MethodDesc method) { throw new NotImplementedException(); }
public ISymbolNode RuntimeMethodHandle(MethodDesc method) { throw new NotImplementedException(); }
diff --git a/src/System.Private.Jit/src/System.Private.Jit.csproj b/src/System.Private.Jit/src/System.Private.Jit.csproj
index 656cfd209..20b57f47d 100644
--- a/src/System.Private.Jit/src/System.Private.Jit.csproj
+++ b/src/System.Private.Jit/src/System.Private.Jit.csproj
@@ -104,6 +104,7 @@
<Compile Include="$(ILCompilerBasePath)\Compiler\DependencyAnalysis\Target_ARM\ARMEmitter.cs" />
<Compile Include="$(ILCompilerBasePath)\Compiler\DependencyAnalysis\Target_ARM\Register.cs" />
<Compile Include="$(ILCompilerBasePath)\Compiler\DependencyAnalysis\Target_ARM\ARMReadyToRunHelperNode.cs" />
+ <Compile Include="$(ILCompilerBasePath)\Compiler\DependencyAnalysis\Target_ARM\ARMDebug.cs" />
<Compile Include="$(ILCompilerBasePath)\Compiler\DependencyAnalysis\AssemblyStubNode.cs" />
<Compile Include="$(ILCompilerBasePath)\Compiler\DependencyAnalysis\HelperEntrypoint.cs" />
<Compile Include="$(ILCompilerBasePath)\Compiler\DependencyAnalysis\INodeWithDebugInfo.cs" />