Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Refactor RyuJIT/x86 long decomposition code #6202

Merged
merged 1 commit into from
Jul 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/jit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ if(CLR_CMAKE_TARGET_ARCH_AMD64)
elseif(CLR_CMAKE_TARGET_ARCH_ARM)
set( ARCH_SOURCES
codegenarm.cpp
decomposelongs.cpp
emitarm.cpp
lowerarm.cpp
targetarm.cpp
Expand All @@ -92,6 +93,7 @@ elseif(CLR_CMAKE_TARGET_ARCH_ARM)
elseif(CLR_CMAKE_TARGET_ARCH_I386)
set( ARCH_SOURCES
codegenxarch.cpp
decomposelongs.cpp
emitxarch.cpp
lowerxarch.cpp
simd.cpp
Expand Down
4 changes: 4 additions & 0 deletions src/jit/compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -1385,6 +1385,10 @@ class Compiler
friend class LclVarDsc;
friend class TempDsc;

#ifndef _TARGET_64BIT_
friend class DecomposeLongs;
#endif // !_TARGET_64BIT_

/*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Expand Down
Loading