Lines Matching full:undefined
11 // which produce undefined or likely unintended behavior in LLVM IR.
31 // for the same kinds of things and turns instructions with undefined behavior
189 // This isn't undefined behavior, it's just a little unusual, and it's a
206 "Undefined behavior: Caller and callee calling convention differ",
215 "Undefined behavior: Call argument count mismatches callee "
219 "Undefined behavior: Call return type mismatches "
231 "Undefined behavior: Call argument type mismatches "
263 "Undefined behavior: Call with \"tail\" keyword references "
295 "Undefined behavior: memcpy source and destination overlap", &I);
320 "Undefined behavior: va_start called in a non-varargs function",
380 "Undefined behavior: Null pointer dereference", &I);
382 "Undefined behavior: Undef pointer dereference", &I);
393 "Undefined behavior: Write to read-only memory", &I);
396 "Undefined behavior: Write to text section", &I);
402 "Undefined behavior: Load from block address", &I);
406 "Undefined behavior: Call to block address", &I);
411 "Undefined behavior: Branch to non-blockaddress", &I);
450 "Undefined behavior: Buffer overflow", &I);
457 "Undefined behavior: Memory reference address is misaligned", &I);
477 "Undefined result: xor(undef, undef)", &I);
483 "Undefined result: sub(undef, undef)", &I);
490 "Undefined result: Shift count out of range", &I);
497 "Undefined result: Shift count out of range", &I);
504 "Undefined result: Shift count out of range", &I);
519 "Undefined behavior: Division by zero", &I);
524 "Undefined behavior: Division by zero", &I);
529 "Undefined behavior: Division by zero", &I);
534 "Undefined behavior: Division by zero", &I);
539 // This isn't undefined behavior, it's just an obvious pessimization.
556 "Undefined behavior: indirectbr with no destinations", &I);
564 "Undefined result: extractelement index out of range", &I);
572 "Undefined result: insertelement index out of range", &I);
576 // This isn't undefined behavior, it's merely suspicious.