diff options
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index 5f2d1cc3d..d70034c85 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -2276,24 +2276,47 @@ struct PrintExpressionContents o << index; } } + void printMemoryOrder(MemoryOrder order) { + switch (order) { + // Unordered should have a different base instruction, so there is nothing + // to print. We could be explicit and print seqcst, but we choose not to + // for more concise output. + case MemoryOrder::Unordered: + case MemoryOrder::SeqCst: + break; + case MemoryOrder::AcqRel: + o << "acqrel "; + break; + } + } void visitStructGet(StructGet* curr) { auto heapType = curr->ref->type.getHeapType(); const auto& field = heapType.getStruct().fields[curr->index]; + printMedium(o, "struct"); + if (curr->order != MemoryOrder::Unordered) { + printMedium(o, ".atomic"); + } if (field.type == Type::i32 && field.packedType != Field::not_packed) { if (curr->signed_) { - printMedium(o, "struct.get_s "); + printMedium(o, ".get_s "); } else { - printMedium(o, "struct.get_u "); + printMedium(o, ".get_u "); } } else { - printMedium(o, "struct.get "); + printMedium(o, ".get "); } + printMemoryOrder(curr->order); printHeapType(heapType); o << ' '; printFieldName(heapType, curr->index); } void visitStructSet(StructSet* curr) { - printMedium(o, "struct.set "); + if (curr->order == MemoryOrder::Unordered) { + printMedium(o, "struct.set "); + } else { + printMedium(o, "struct.atomic.set "); + } + printMemoryOrder(curr->order); auto heapType = curr->ref->type.getHeapType(); printHeapType(heapType); o << ' '; |