This is an archive of the discontinued LLVM Phabricator instance.

[IR] Strawman for dedicated FNeg IR instruction
ClosedPublic

Authored by cameron.mcinally on Oct 30 2018, 11:01 AM.

Details

Summary

This is a first whack at a dedicated FNeg IR instruction...

I've over-engineered the UnaryOperator class a little, with the intention of adding more Unary operations in the future. E.g. integer Neg (and maybe Abs, Copysign, etc.).

I don't work on some of these parts of LLVM, so I have some questions for the group. The majority are about reordering enums without breaking public interfaces. I'll comment on this code inline shortly.

Also, changing one of the operator enums appears to have exposed a bug in the MergeFuctions pass. I'll also comment on this inline.

Diff Detail

Repository
rL LLVM

Event Timeline

include/llvm/Bitcode/LLVMBitCodes.h
346

It wasn't clear to me if it was safe to reorder these values. Any thoughts on this?

479

Same thing here about organizing the enum members.

lib/AsmParser/LLParser.cpp
3322

The lexer/parser is another area that I'm not too familiar with. A thorough review would be appreciated.

lib/Bitcode/Reader/BitcodeReader.cpp
2346

I'm not that familiar with the Bitcode format. Any suggestions on the best way to produce a test case for this? Or is it just the obvious, produce bitcode and make sure it works as expected?

cameron.mcinally added inline comments.
include/llvm-c/Core.h
143

Reordering these values appears to have exposed a bug in the MergeFunctions pass (*I think*). It seems that the hash accumulator can overflow with these larger numbers. Although, I could be mistaken.

@dyatkovskiy

include/llvm-c/Core.h
143

Ah, sorry. This was the wrong bit of code. Will correct...

include/llvm/IR/Instruction.def
221

Reordering these values appears to have exposed a bug in the MergeFunctions pass (*I think*). It seems that the hash accumulator can overflow with these larger numbers. Although, I could be mistaken.

@dyatkovskiy

with the intention of adding more Unary operations in the future. E.g. integer Neg (and maybe Abs, Copysign, etc.).

While there are very clear reasons for FNeg to exist, this isn't so true for any of the others listed here..

include/llvm-c/Core.h
66

This strongly suggests that you can not reorder/renumber the existing enumerators.

lib/Bitcode/Writer/BitcodeWriter.cpp
521

There is no integer neg opcode to handle.

with the intention of adding more Unary operations in the future. E.g. integer Neg (and maybe Abs, Copysign, etc.).

While there are very clear reasons for FNeg to exist, this isn't so true for any of the others listed here..

I don't disagree with that. On the other hand, these do seem like common enough operators to justify retiring the intrinsics and creating IR operators for them.

Also, integer Neg may have a stronger case for a dedicated IR instruction than the others. It's currently implemented as -0-x (Sub), which is pretty weird.

lib/Bitcode/Writer/BitcodeWriter.cpp
521

Right, integer Neg is handled the same as FNeg is now. I.e. -0-x (Sub). I'm suggesting that integer Neg should also have a dedicated IR instruction. Although, that case is not as clear cut as it is for FNeg.

with the intention of adding more Unary operations in the future. E.g. integer Neg (and maybe Abs, Copysign, etc.).

While there are very clear reasons for FNeg to exist, this isn't so true for any of the others listed here..

I don't disagree with that. On the other hand, these do seem like common enough operators to justify retiring the intrinsics and creating IR operators for them.

From what i know, the bar isn't "common enough operator", the bar is more like "too easy to break the existing multi-op pattern".
Funnel shift (rotates) has recently met it, and was added as an operator.
But anyway.

Also, integer Neg may have a stronger case for a dedicated IR instruction than the others. It's currently implemented as -0-x (Sub), which is pretty weird.

dexonsmith added inline comments.Oct 30 2018, 1:15 PM
include/llvm/Bitcode/LLVMBitCodes.h
346

No. Reordering will break bitcode compatibility.

lib/Bitcode/Reader/BitcodeReader.cpp
2346

New IR we usually test in test/Assembler. You should test double-round-tripping through bitcode (llvm-as | llvm-dis | llvm-as | llvm-dis) and pass through verify-uselistorder. Have a look at existing tests there.

I don't think it applies here, but in cases where you need to upgrade existing bitcode to something new, we check in tiny bitcode files generated with a known released version of llvm and test that it upgrades correctly in test/Bitcode.

lib/IR/Verifier.cpp
3011

Just caught this bad copy-and-paste. Will address in next revision...

Needs some dedicated assembler tests. In particular I would like to see parsing tests with the fast math flags

include/llvm/Bitcode/LLVMBitCodes.h
479

Any guesses for why 14 wasn't used before?

lib/Bitcode/Writer/BitcodeWriter.cpp
521

I would remove this comment. I don't think there's a reason to have an integer neg

Updating diff to add test/Assembler tests. This includes both fastmath flags and double-round-tripping tests.

Note that the constant folding test added needs work since FNeg is not currently being folded.

@arsenm @dexonsmith

cameron.mcinally marked 7 inline comments as done.Oct 31 2018, 2:07 PM
cameron.mcinally added inline comments.
include/llvm/Bitcode/LLVMBitCodes.h
479

It looks like @void removed it as part of the "unwind removal" project. There's not a whole lot of history beyond that attached. The commit is r149911, and the message says:

"[unwind removal] Remove a the obsolete 'unwind' enum value."

That line was the only one that changed in this commit.

arsenm added inline comments.Nov 1 2018, 7:56 AM
include/llvm-c/Core.h
125

If you're renumbering all of these anyway, might as well fix AddrSpaceCast to be consecutive?

lib/AsmParser/LLParser.cpp
6122–6123

Put these on separate lines?

test/Assembler/fast-math-flags.ll
81

Looks like extra whitespace in the test and output (I would hope this test would use -strict-whitespace, but it looks like this is an issue with the rest of the tests here as well)

include/llvm-c/Core.h
125

Ah, forgot about these. Are we all in agreement that it's safe to reorder these values? I don't fully understand the library interactions, so I'm not sure.

I'll go ahead and implement your suggestion. If it turns out it's not safe, I'll revert the change later.

Reorder LLVMAddrSpaceCast as @arsenm suggested.

It's still not clear whether it's safe to reorder these values though.

cameron.mcinally marked 2 inline comments as done.Nov 1 2018, 8:39 AM
cameron.mcinally added inline comments.
test/Assembler/fast-math-flags.ll
81

Created D53981 to correct the general whitespace problem.

Remove extra whitespace from test/Assembler/fast-math-flags.ll.

cameron.mcinally marked 2 inline comments as done.Nov 1 2018, 10:27 AM
jyknight added inline comments.Nov 1 2018, 11:26 AM
include/llvm-c/Core.h
66

You should _NOT_ renumber the existing constants in the llvm-c/* APIs. External users are depending on them being stable.

(Adding a comment indicating that while you're in here would be good).

include/llvm-c/Core.h
66

That settles it! Thanks, James.

So LLVMAddrSpaceCast is grouped correctly, but the value is out of order. Is that the correct way to add a new member?

Or should I just add FNeg to the end of the list?

Don't reorder the members in llvm-c/Core.h as suggested by @jyknight.

cameron.mcinally marked 3 inline comments as done.Nov 1 2018, 12:05 PM
arsenm added inline comments.Nov 1 2018, 1:05 PM
lib/IR/Verifier.cpp
3011

Missing failing verifier tests

lib/IR/Verifier.cpp
3011

I'm not familiar with the Verifier tests, so please excuse my naivete...

Is it possible to trip these asserts with llvm-as? It looks like the parser will catch an incorrect type on the operand before we get to these asserts.

Add a comment about not reordering the llvm-c/Core.h enum values, as @jyknight suggested.

Sorry, this slipped my mind yesterday...

Add newlines to lib/AsmParser/LLParser.cpp, as suggested by @arsenm.

cameron.mcinally marked an inline comment as done.Nov 7 2018, 1:25 PM
arsenm added a comment.Nov 7 2018, 1:36 PM

Bitcode compatibility tests are missing?

Bitcode compatibility tests are missing?

There's some BC coverage with the double-round-tripping test/Assembler tests that were added (I think?).

Could you point me to an example test in test/Bitcode, so that I know what I should be exercising? I don't see many tests that exercise the FP operations. Well, not directly at least.

arsenm added a comment.Nov 7 2018, 2:11 PM

Bitcode compatibility tests are missing?

There's some BC coverage with the double-round-tripping test/Assembler tests that were added (I think?).

Could you point me to an example test in test/Bitcode, so that I know what I should be exercising? I don't see many tests that exercise the FP operations. Well, not directly at least.

test/Bitcode/compatibility.ll

Ah, I think I see some problems with llvm-bcanalyzer. Will address...

<UnknownCode14 abbrevid=5 op0=1 op1=0/>

Add two test/Bitcode tests and address one llvm-bcanalyzer issue, as suggested by @arsenm.

arsenm added inline comments.Nov 7 2018, 3:00 PM
test/Bitcode/compatibility.ll
1024

Should also test the fast math flags since you had to handle those

Add bitcode tests for fastmath flags, as @arsenm suggested. Thanks for bearing with me, Matt.

arsenm accepted this revision.Nov 7 2018, 3:36 PM

LGTM

This revision is now accepted and ready to land.Nov 7 2018, 3:36 PM

Wow, that's great. Thanks, Matt!

It was mentioned earlier, but changing the enum values in Instruction.def appears to have exposed a bug in the MergeFunctions pass. I'll try to work that out with the author(s) of that pass and then commit this (assuming, of course, there are no changes to this patch).

Update test/Transforms/MergeFunc/call-and-invoke-with-ranges.ll to account for changes in the Instruction.def enum values.

This test was also touched the last time these enum values were modified, in r255522. So, it appears to just be a fragile test. I'm simply reverting the change to that test from r255522.

Apologies for the last minute revision. This patch now tests cleanly and is ready to land upon approval.

majnemer added inline comments.
include/llvm/Bitcode/LLVMBitCodes.h
479

I don't think we should reuse the function code number.

Rebase and create new function code number, as suggested by @majnemer.

cameron.mcinally marked 4 inline comments as done.Nov 12 2018, 9:22 AM

David also gave a LGTM for the call-and-invoke-with-ranges.ll change off-line. If he's okay with the function code number change in LLVMBitCodes.h, I'll go ahead and commit this patch.

Thanks again, David.

@majnemer has approved the changes offline. Will commit this patch imminently...

This revision was automatically updated to reflect the committed changes.

I just realized the LangRef changes are missing

I just realized the LangRef changes are missing

Bah! I must have inadvertently dropped them at some point along the way. I'll create a new patch now for it...

I just realized the LangRef changes are missing

Just FYI that I am working on this. Our in-house machines don't support the Sphinx package, so I'm having trouble generating the docs. Trying to find a workaround now...

lebedev.ri added inline comments.Oct 5 2019, 6:02 AM
llvm/trunk/include/llvm-c/Core.h
1523–1524 ↗(On Diff #173876)

@cameron.mcinally Should anything have been added here for UnaryOperator ?

Herald added a project: Restricted Project. · View Herald TranscriptOct 5 2019, 6:02 AM
Herald added a subscriber: hiraditya. · View Herald Transcript
lebedev.ri added inline comments.Oct 7 2019, 3:06 AM
llvm/trunk/include/llvm/Bitcode/LLVMBitCodes.h
373 ↗(On Diff #173876)

@cameron.mcinally also, shouldn't this be UNOP_FNEG?

cameron.mcinally marked 2 inline comments as done.Oct 7 2019, 8:25 AM
cameron.mcinally added inline comments.
llvm/trunk/include/llvm-c/Core.h
1523–1524 ↗(On Diff #173876)

Yes, I believe you're correct. Will add that under a separate Diff. Thanks.

llvm/trunk/include/llvm/Bitcode/LLVMBitCodes.h
373 ↗(On Diff #173876)

I'm not sure. The BINOPs are overloaded for INT/FP types. E.g. BINOP_ADD is also FP. I suppose there are no plans for an INT UNOP_NEG though. Do you feel strongly about this change?

lebedev.ri added inline comments.Oct 7 2019, 8:34 AM
llvm/trunk/include/llvm/Bitcode/LLVMBitCodes.h
373 ↗(On Diff #173876)

I don't expect we'll ever have integer neg, so the current UNOP_NEG looks at least inconsistent (you use fneg) elsewhere.
So yes please, let's change this :)

cameron.mcinally marked an inline comment as done.Oct 7 2019, 9:05 AM
cameron.mcinally added inline comments.
llvm/trunk/include/llvm-c/Core.h
1523–1524 ↗(On Diff #173876)

@lebedev.ri, do you know of any existing tests for these macros? I see a number of uses, but no unittests/etc.

lebedev.ri added inline comments.Oct 7 2019, 10:00 AM
llvm/trunk/include/llvm-c/Core.h
1523–1524 ↗(On Diff #173876)

I don't know how this can be reached, but based on the name (LLVMCCoreValues) i can guess this is for C API.