[LLVMdev] RFC: Proposal for Poison Semantics (original) (raw)
Sean Silva chisophugis at gmail.com
Wed Jan 28 07:02:59 PST 2015
- Previous message: [LLVMdev] RFC: Proposal for Poison Semantics
- Next message: [LLVMdev] RFC: Proposal for Poison Semantics
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Could you maybe provide an example where replacing %always_poison with
undef will change the meaning? At least for me, the thing that I'm most
unclear about is how poison differs from undef.
-- Sean Silva
On Wed, Jan 28, 2015 at 2:50 AM, David Majnemer <david.majnemer at gmail.com> wrote:
Hello,
What follows is my attempt to describe how poison works. Let me know what you think. -- David
# LLVM Poison Semantics Poison is an LLVM concept which exists solely to enable further optimization of LLVM IR. The exact behavior of poison has been, to say the least, confusing for users, researchers and engineers working with LLVM. This document hopes to clear up some of the confusion of poison and hopefully explain why it has its semantics. ## A Quick Introduction to Poison Let's start with a concrete motivating example in C:
_ _int isSumGreater(int a, int b) {_ _return a + b > a;_ _}_ _The C specification permits us to optimize the comparison inisSumGreatertob > 0because signed overflow results in undefined behavior. A reasonable translation ofisSumGreaterto LLVM IR could be:_ _define i32 @isSumGreater(i32 %a, i32 %b) {_ _entry:_ _%add = add i32 %a, %b_ _%cmp = icmp sgt i32 %add, %a_ _%conv = zext i1 %cmp to i32_ _ret i32 %conv_ _}_ _However, LLVM cannot determine that%cmpshould not consider cases where%addresulted in signed overflow. We need a way to communicate this information to LLVM. This is where thenswandnuwflags come into play.nswis short for "no signed wrap",nuwis short for "no unsigned wrap". With these, we can come up with a new formulation of%add:add i32 nsw_ _%a, %b. LLVM can take this into account when it is optimizing the%cmpand replace it with:icmp sgt i32 %b, 0. ## Differences Between LLVM and C/C++ There are some interesting differences between what C++ and C specify and how LLVM behaves with respect to performing an operationg which is not permitted to overflow. Perhaps chief among them is that evaluating an expression in C++ or C which results performs an overflow is undefined behavior. In LLVM, executing an instruction which is markednswbut which violates signed overflow results in poison. Values which have no relationship with poisoned values are not effected by them. Let us take the following C program into consideration:_ _int calculateImportantResult(int a, int b) {_ _int result = 0;_ _if (a) {_ _result = a + b;_ _}_ _return result;_ _}_ _A straightforward lowering to LLVM IR could be:_ _define i32 @calculateImportantResult(i32 %a, i32 %b) {_ _entry:_ _%tobool = icmp ne i32 %a, 0_ _br i1 %tobool, label %if.then, label %if.end_ _if.then:_ _%add = add nsw i32 %a, %b_ _br label %if.end_ _if.end:_ _%result = phi i32 [ %add, %if.then ], [ 0, %entry ]_ _ret i32 %result_ _}_ _Moving%addto the%entryblock would be preferable and would allow further optimizations:_ _define i32 @calculateImportantResult(i32 %a, i32 %b) {_ _entry:_ _%tobool = icmp ne i32 %a, 0_ _%add = add nsw i32 %a, %b_ _%result = select i1 %tobool, i32 0, i32 %add_ _ret i32 %result_ _}_ _In the original code, the calculation of%addwas control dependent. Now,%addmight result in signed overflow in violation of thenswflag. Despite this, the program should behave as it did before because the poisoned value is masked-out by the select. The next section will dive into this in greater detail. # Computation Involving Poison Values Poison in a computation results in poison if the result cannot be constrained by its non-poison operands. Examples of this rule which will result in poison:_ _%add = add i32 %x, %alwayspoison_ _%sub = sub i32 %x, %alwayspoison_ _%xor = xor i32 %x, %alwayspoison_ _%mul = mul i32 %alwayspoison, 1_ _Examples of this rule which do not result in poison:_ _%or = or i32 %alwayspoison, 2_ _%and = and i32 %alwayspoison, 2_ _%mul = mul i32 %alwayspoison, 0_ _In fact, it would be reasonable to optimize%orto2and%andto0. In this respect, poison is not different fromundef. The following example is only poison if%condis false:_ _%sel = select i1 %cond, i32 2, %alwayspoison_ _### Is it safe to have poison as acallargument? Acallinstruction may or may not result in poison depending on exactly how the callee uses the supplied arguments, it is not necessarily the case thatcall i32 @someFunction(i32 %alwayspoison)results in poison. LLVM cannot forbid poison from enteringcallarguments without prohibiting an optimization pass from outlining code. ### Is it safe to store poison to memory?store i32 %alwayspoison, i32* %memdoes not result in undefined behavior. A subsequent load instruction like%load = load i32* %memwill result in%loadbeing a poison value. ### Is it safe to load or store a poison memory location? No. Poison works just likeundefin this respect. ### Does comparing a poison value result in poison? It depends. If the comparison couldn't solely be determined by looking at the other operand, the result is poison. For example,icmp i32 ule %alwayspoison, 4294967295istrue, not poison. However,icmp i32 ne %alwayspoison, 7is poison. ### What if the condition operand in aselectis poison? In the example%sel = select i1 %alwayspoison, i1 true, false,%selis eithertrueorfalse. Because,%seldepends on%alwayspoisonit too is poison.
LLVM Developers mailing list LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150128/b5fe5853/attachment.html>
- Previous message: [LLVMdev] RFC: Proposal for Poison Semantics
- Next message: [LLVMdev] RFC: Proposal for Poison Semantics
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]