Home | History | Annotate | Download | only in Analysis

Lines Matching full:behavior

11 // which produce undefined or likely unintended behavior in LLVM IR.
31 // for the same kinds of things and turns instructions with undefined behavior
195 // This isn't undefined behavior, it's just a little unusual, and it's a
213 "Undefined behavior: Caller and callee calling convention differ",
221 "Undefined behavior: Call argument count mismatches callee "
226 "Undefined behavior: Call return type mismatches "
239 "Undefined behavior: Call argument type mismatches "
271 "Undefined behavior: Call with \"tail\" keyword references "
302 "Undefined behavior: memcpy source and destination overlap", &I);
324 "Undefined behavior: va_start called in a non-varargs function",
382 "Undefined behavior: Null pointer dereference", &I);
384 "Undefined behavior: Undef pointer dereference", &I);
394 Assert(!GV->isConstant(), "Undefined behavior: Write to read-only memory",
398 "Undefined behavior: Write to text section", &I);
404 "Undefined behavior: Load from block address", &I);
408 "Undefined behavior: Call to block address", &I);
413 "Undefined behavior: Branch to non-blockaddress", &I);
452 "Undefined behavior: Buffer overflow", &I);
459 "Undefined behavior: Memory reference address is misaligned", &I);
549 "Undefined behavior: Division by zero", &I);
554 "Undefined behavior: Division by zero", &I);
559 "Undefined behavior: Division by zero", &I);
564 "Undefined behavior: Division by zero", &I);
569 // This isn't undefined behavior, it's just an obvious pessimization.
586 "Undefined behavior: indirectbr with no destinations", &I);
604 // This isn't undefined behavior, it's merely suspicious.