Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 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: 1 addition & 1 deletion src/coreclr/jit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ set( JIT_SOURCES
fgprofile.cpp
fgprofilesynthesis.cpp
fgstmt.cpp
fgwasm.cpp
flowgraph.cpp
forwardsub.cpp
gcinfo.cpp
Expand Down Expand Up @@ -293,6 +292,7 @@ set( JIT_RISCV64_SOURCES
set( JIT_WASM_SOURCES
codegenwasm.cpp
emitwasm.cpp
fgwasm.cpp
lowerwasm.cpp
regallocwasm.cpp
registeropswasm.cpp
Expand Down
13 changes: 11 additions & 2 deletions src/coreclr/jit/codegen.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,15 @@ class CodeGen final : public CodeGenInterface

void genCodeForBBlist();

#if defined(TARGET_WASM)
ArrayStack<WasmInterval*>* wasmControlFlowStack;
unsigned wasmCursor;
Comment thread
AndyAyersMS marked this conversation as resolved.
Outdated
unsigned findTargetDepth(BasicBlock* target);
#endif

void genEmitStartBlock(BasicBlock* block);
BasicBlock* genEmitEndBlock(BasicBlock* block);

public:
void genSpillVar(GenTree* tree);

Expand Down Expand Up @@ -890,8 +899,8 @@ class CodeGen final : public CodeGenInterface

unsigned getFirstArgWithStackSlot();

void genCompareFloat(GenTree* treeNode);
void genCompareInt(GenTree* treeNode);
void genCompareFloat(GenTreeOp* treeNode);
void genCompareInt(GenTreeOp* treeNode);
#ifdef TARGET_XARCH
bool genCanAvoidEmittingCompareAgainstZero(GenTree* tree, var_types opType);
GenTree* genTryFindFlagsConsumer(GenTree* flagsProducer, GenCondition** condition);
Expand Down
Loading
Loading