зеркало из https://github.com/github/codeql.git
Merge pull request #1391 from markshannon/python-points-to-varargs
Python points to varargs
This commit is contained in:
Коммит
58285c08dd
|
@ -168,12 +168,12 @@ class Call extends Call_ {
|
|||
|
||||
override CallNode getAFlowNode() { result = super.getAFlowNode() }
|
||||
|
||||
/** Gets a tuple (*) argument of this class definition. */
|
||||
/** Gets a tuple (*) argument of this call. */
|
||||
Expr getStarargs() {
|
||||
result = this.getAPositionalArg().(Starred).getValue()
|
||||
}
|
||||
|
||||
/** Gets a dictionary (**) argument of this class definition. */
|
||||
/** Gets a dictionary (**) argument of this call. */
|
||||
Expr getKwargs() {
|
||||
result = this.getANamedArg().(DictUnpacking).getValue()
|
||||
}
|
||||
|
@ -227,6 +227,18 @@ class Call extends Call_ {
|
|||
result = this.getKwargs().(Dict).getAKey().(StrConst).getText()
|
||||
}
|
||||
|
||||
/** Gets the positional argument count of this call, provided there is no more than one tuple (*) argument. */
|
||||
int getPositionalArgumentCount() {
|
||||
count(this.getStarargs()) < 2 and
|
||||
result = count(Expr arg | arg = this.getAPositionalArg() and not arg instanceof Starred)
|
||||
}
|
||||
|
||||
/** Gets the tuple (*) argument of this call, provided there is exactly one. */
|
||||
Expr getStarArg() {
|
||||
count(this.getStarargs()) < 2 and
|
||||
result = getStarargs()
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/** A conditional expression such as, `body if test else orelse` */
|
||||
|
|
|
@ -481,6 +481,12 @@ class CallNode extends ControlFlowNode {
|
|||
)
|
||||
}
|
||||
|
||||
/** Gets the tuple (*) argument of this call, provided there is exactly one. */
|
||||
ControlFlowNode getStarArg() {
|
||||
result.getNode() = this.getNode().getStarArg() and
|
||||
result.getBasicBlock().dominates(this.getBasicBlock())
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/** A control flow corresponding to an attribute expression, such as `value.attr` */
|
||||
|
|
|
@ -481,6 +481,10 @@ module ObjectInternal {
|
|||
result = TBuiltinClassObject(Builtin::special("ClassType"))
|
||||
}
|
||||
|
||||
ObjectInternal emptyTuple() {
|
||||
result.(BuiltinTupleObjectInternal).length() = 0
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/** Helper for boolean predicates returning both `true` and `false` */
|
||||
|
|
|
@ -39,7 +39,9 @@ abstract class TupleObjectInternal extends SequenceObjectInternal {
|
|||
}
|
||||
|
||||
private string contents(int n) {
|
||||
n = this.length() and result = ""
|
||||
n < 4 and n = this.length() and result = ""
|
||||
or
|
||||
n = 3 and this.length() > 3 and result = (this.length()-3).toString() + " more..."
|
||||
or
|
||||
result = this.getItem(n).toString() + ", " + this.contents(n+1)
|
||||
}
|
||||
|
@ -88,6 +90,7 @@ abstract class TupleObjectInternal extends SequenceObjectInternal {
|
|||
|
||||
}
|
||||
|
||||
/** A tuple built-in to the interpreter, including the empty tuple. */
|
||||
class BuiltinTupleObjectInternal extends TBuiltinTuple, TupleObjectInternal {
|
||||
|
||||
override predicate introducedAt(ControlFlowNode node, PointsToContext context) {
|
||||
|
@ -114,7 +117,7 @@ class BuiltinTupleObjectInternal extends TBuiltinTuple, TupleObjectInternal {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
/** A tuple declared by a tuple expression in the Python source code */
|
||||
class PythonTupleObjectInternal extends TPythonTuple, TupleObjectInternal {
|
||||
|
||||
override predicate introducedAt(ControlFlowNode node, PointsToContext context) {
|
||||
|
@ -145,6 +148,35 @@ class PythonTupleObjectInternal extends TPythonTuple, TupleObjectInternal {
|
|||
|
||||
}
|
||||
|
||||
/** A tuple created by a `*` parameter */
|
||||
class VarargsTupleObjectInternal extends TVarargsTuple, TupleObjectInternal {
|
||||
|
||||
override predicate introducedAt(ControlFlowNode node, PointsToContext context) {
|
||||
none()
|
||||
}
|
||||
|
||||
override Builtin getBuiltin() {
|
||||
none()
|
||||
}
|
||||
|
||||
override ControlFlowNode getOrigin() {
|
||||
none()
|
||||
}
|
||||
|
||||
override ObjectInternal getItem(int n) {
|
||||
exists(CallNode call, PointsToContext context, int offset, int length |
|
||||
this = TVarargsTuple(call, context, offset, length) and
|
||||
n < length and
|
||||
InterProceduralPointsTo::positional_argument_points_to(call, offset+n, context, result, _)
|
||||
)
|
||||
}
|
||||
|
||||
override int length() {
|
||||
this = TVarargsTuple(_, _, _, result)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/** The `sys.version_info` object. We treat this specially to prevent premature pruning and
|
||||
* false positives when we are unsure of the actual version of Python that the code is expecting.
|
||||
*/
|
||||
|
|
|
@ -179,6 +179,11 @@ cached newtype TObject =
|
|||
context.appliesTo(origin)
|
||||
}
|
||||
or
|
||||
/* Varargs tuple */
|
||||
TVarargsTuple(CallNode call, PointsToContext context, int offset, int length) {
|
||||
InterProceduralPointsTo::varargs_tuple(call, context, _, _, offset, length)
|
||||
}
|
||||
or
|
||||
/* `type` */
|
||||
TType()
|
||||
or
|
||||
|
|
|
@ -844,11 +844,13 @@ module InterProceduralPointsTo {
|
|||
private predicate normal_parameter_points_to(ParameterDefinition def, PointsToContext context, ObjectInternal value, ControlFlowNode origin) {
|
||||
exists(PointsToContext caller, ControlFlowNode arg |
|
||||
PointsToInternal::pointsTo(arg, caller, value, origin) and
|
||||
callsite_argument_transfer(arg, caller, def, context)
|
||||
named_argument_transfer(arg, caller, def, context)
|
||||
)
|
||||
or
|
||||
not def.isSelf() and not def.isVarargs() and not def.isKwargs() and
|
||||
context.isRuntime() and value = ObjectInternal::unknown() and origin = def.getDefiningNode()
|
||||
or
|
||||
positional_parameter_points_to(def, context, value, origin)
|
||||
}
|
||||
|
||||
pragma [noinline]
|
||||
|
@ -898,18 +900,49 @@ module InterProceduralPointsTo {
|
|||
/** Helper for parameter_points_to */
|
||||
pragma [noinline]
|
||||
private predicate special_parameter_points_to(ParameterDefinition def, PointsToContext context, ObjectInternal value, ControlFlowNode origin) {
|
||||
/* Runtime: Just an unknown tuple (or dict for `**` args) */
|
||||
special_parameter_value(def, value) and
|
||||
(
|
||||
context.isRuntime()
|
||||
or
|
||||
exists(PointsToContext caller, CallNode call |
|
||||
context.fromCall(call, caller) and
|
||||
context.appliesToScope(def.getScope()) and
|
||||
not exists(call.getArg(def.getParameter().getPosition())) and
|
||||
not exists(call.getArgByName(def.getParameter().getName()))
|
||||
)
|
||||
context.isRuntime() and
|
||||
origin = def.getDefiningNode()
|
||||
or
|
||||
/* A tuple constructed from positional arguments for a `*` parameter. */
|
||||
def.isVarargs() and
|
||||
exists(CallNode call, Function scope, PointsToContext caller, int offset, int length |
|
||||
varargs_tuple(call, caller, scope, context, offset, length) and
|
||||
value = TVarargsTuple(call, caller, offset, length) and
|
||||
def.getScope() = scope
|
||||
) and
|
||||
origin = def.getDefiningNode()
|
||||
or
|
||||
/* A `*` parameter with no surplus positional arguments; an empty tuple */
|
||||
def.isVarargs() and
|
||||
exists(Function scope |
|
||||
varargs_empty_tuple(scope, context) and
|
||||
value = ObjectInternal::emptyTuple() and
|
||||
def.getScope() = scope
|
||||
) and
|
||||
origin = def.getDefiningNode()
|
||||
}
|
||||
|
||||
/** Holds if `call` in context `caller` calls into the function scope `scope` in context `callee` and
|
||||
* that the number of position arguments (including expansion of `*` argument) exceeds the number of positional arguments by
|
||||
* `length` and that the excess arguments start at `start`.
|
||||
*/
|
||||
predicate varargs_tuple(CallNode call, PointsToContext caller, Function scope, PointsToContext callee, int start, int length) {
|
||||
exists(int parameter_offset |
|
||||
callsite_calls_function(call, caller, scope, callee, parameter_offset) and
|
||||
start = scope.getPositionalParameterCount() - parameter_offset and
|
||||
length = positional_argument_count(call, caller) - start and
|
||||
length > 0
|
||||
)
|
||||
}
|
||||
|
||||
/** Holds if for function scope `func` in context `callee` the `*` parameter will hold the empty tuple. */
|
||||
predicate varargs_empty_tuple(Function func, PointsToContext callee) {
|
||||
exists(CallNode call, PointsToContext caller, int parameter_offset |
|
||||
callsite_calls_function(call, caller, func, callee, parameter_offset) and
|
||||
func.getPositionalParameterCount() - parameter_offset >= positional_argument_count(call, caller)
|
||||
)
|
||||
}
|
||||
|
||||
/** Helper predicate for special_parameter_points_to */
|
||||
|
@ -919,16 +952,45 @@ module InterProceduralPointsTo {
|
|||
p.isKwargs() and value = TUnknownInstance(ObjectInternal::builtin("dict"))
|
||||
}
|
||||
|
||||
/** Holds if the `(argument, caller)` pair matches up with `(param, callee)` pair across call. */
|
||||
cached predicate callsite_argument_transfer(ControlFlowNode argument, PointsToContext caller, ParameterDefinition param, PointsToContext callee) {
|
||||
/** Holds if the `n`th argument in call `call` with context `caller` points-to `value` from `origin`, including values in tuples
|
||||
* expanded by a `*` argument. For example, for the call `f('a', *(`x`,`y`))` the arguments are `('a', 'x', y')`
|
||||
*/
|
||||
predicate positional_argument_points_to(CallNode call, int n, PointsToContext caller, ObjectInternal value, ControlFlowNode origin) {
|
||||
PointsToInternal::pointsTo(call.getArg(n), caller, value, origin)
|
||||
or
|
||||
exists(SequenceObjectInternal arg, int pos |
|
||||
pos = call.getNode().getPositionalArgumentCount() and
|
||||
PointsToInternal::pointsTo(origin, caller, arg, _) and
|
||||
value = arg.getItem(n-pos) and
|
||||
origin = call.getStarArg()
|
||||
)
|
||||
}
|
||||
|
||||
/** Gets the number of positional arguments including values in tuples expanded by a `*` argument.*/
|
||||
private int positional_argument_count(CallNode call, PointsToContext caller) {
|
||||
result = call.getNode().getPositionalArgumentCount() and not exists(call.getStarArg()) and caller.appliesTo(call)
|
||||
or
|
||||
exists(SequenceObjectInternal arg, int pos |
|
||||
pos = call.getNode().getPositionalArgumentCount() and
|
||||
PointsToInternal::pointsTo(call.getStarArg(), caller, arg, _) and
|
||||
result = pos + arg.length()
|
||||
)
|
||||
}
|
||||
|
||||
/** Holds if the parameter definition `def` points-to `value` from `origin` given the context `context` */
|
||||
predicate positional_parameter_points_to(ParameterDefinition def, PointsToContext context, ObjectInternal value, ControlFlowNode origin) {
|
||||
exists(CallNode call, int argument, PointsToContext caller, Function func, int offset |
|
||||
positional_argument_points_to(call, argument, caller, value, origin) and
|
||||
callsite_calls_function(call, caller, func, context, offset) and
|
||||
def.getParameter() = func.getArg(argument+offset)
|
||||
)
|
||||
}
|
||||
|
||||
/** Holds if the named `argument` given the context `caller` is transferred to the parameter `param` with conntext `callee` by a call. */
|
||||
cached predicate named_argument_transfer(ControlFlowNode argument, PointsToContext caller, ParameterDefinition param, PointsToContext callee) {
|
||||
exists(CallNode call, Function func, int offset |
|
||||
callsite_calls_function(call, caller, func, callee, offset)
|
||||
|
|
||||
exists(int n |
|
||||
argument = call.getArg(n) and
|
||||
param.getParameter() = func.getArg(n+offset)
|
||||
)
|
||||
or
|
||||
exists(string name |
|
||||
argument = call.getArgByName(name) and
|
||||
param.getParameter() = func.getArgByName(name)
|
||||
|
@ -936,6 +998,9 @@ module InterProceduralPointsTo {
|
|||
)
|
||||
}
|
||||
|
||||
/** Holds if the `call` with context `caller` calls the function `scope` in context `callee`
|
||||
* and the offset from argument to parameter is `parameter_offset`
|
||||
*/
|
||||
cached predicate callsite_calls_function(CallNode call, PointsToContext caller, Function scope, PointsToContext callee, int parameter_offset) {
|
||||
exists(ObjectInternal func |
|
||||
callWithContext(call, caller, func, callee) and
|
||||
|
|
|
@ -16,6 +16,13 @@
|
|||
| l_calls.py:10 | ControlFlowNode for bar() | bar |
|
||||
| l_calls.py:24 | ControlFlowNode for Attribute() | Owner.cm |
|
||||
| l_calls.py:25 | ControlFlowNode for Attribute() | Owner.cm2 |
|
||||
| l_calls.py:37 | ControlFlowNode for f() | f |
|
||||
| l_calls.py:38 | ControlFlowNode for Attribute() | E.m |
|
||||
| l_calls.py:39 | ControlFlowNode for Attribute() | E.m |
|
||||
| l_calls.py:42 | ControlFlowNode for f() | f |
|
||||
| l_calls.py:51 | ControlFlowNode for g() | g |
|
||||
| l_calls.py:52 | ControlFlowNode for Attribute() | F.m |
|
||||
| l_calls.py:53 | ControlFlowNode for Attribute() | F.m |
|
||||
| q_super.py:4 | ControlFlowNode for Attribute() | object.__init__ |
|
||||
| q_super.py:12 | ControlFlowNode for Attribute() | Base2.__init__ |
|
||||
| q_super.py:22 | ControlFlowNode for Attribute() | Base1.meth |
|
||||
|
|
|
@ -112,12 +112,19 @@
|
|||
| k_getsetattr.py:0 | Module code.k_getsetattr | k | Function k |
|
||||
| k_getsetattr.py:4 | Class C | meth1 | Function meth1 |
|
||||
| k_getsetattr.py:4 | Class C | meth2 | Function meth2 |
|
||||
| l_calls.py:0 | Module code.l_calls | E | class E |
|
||||
| l_calls.py:0 | Module code.l_calls | F | class F |
|
||||
| l_calls.py:0 | Module code.l_calls | Owner | class Owner |
|
||||
| l_calls.py:0 | Module code.l_calls | bar | Function bar |
|
||||
| l_calls.py:0 | Module code.l_calls | f | Function f |
|
||||
| l_calls.py:0 | Module code.l_calls | foo | Function foo |
|
||||
| l_calls.py:0 | Module code.l_calls | g | Function g |
|
||||
| l_calls.py:0 | Module code.l_calls | t | Tuple |
|
||||
| l_calls.py:12 | Class Owner | cm | classmethod() |
|
||||
| l_calls.py:12 | Class Owner | cm2 | classmethod() |
|
||||
| l_calls.py:12 | Class Owner | m | Function m |
|
||||
| l_calls.py:32 | Class E | m | Function m |
|
||||
| l_calls.py:47 | Class F | m | Function m |
|
||||
| o_no_returns.py:0 | Module code.o_no_returns | bar | Function bar |
|
||||
| o_no_returns.py:0 | Module code.o_no_returns | fail | Function fail |
|
||||
| o_no_returns.py:0 | Module code.o_no_returns | foo | Function foo |
|
||||
|
|
|
@ -75,6 +75,7 @@
|
|||
| k_getsetattr.py:15 | ControlFlowNode for Attribute() | 6 |
|
||||
| l_calls.py:4 | ControlFlowNode for Attribute() | 4 |
|
||||
| l_calls.py:9 | ControlFlowNode for foo() | 4 |
|
||||
| l_calls.py:48 | ControlFlowNode for None | 48 |
|
||||
| m_attributes.py:12 | ControlFlowNode for Attribute() | 8 |
|
||||
| m_attributes.py:13 | ControlFlowNode for Attribute() | 8 |
|
||||
| o_no_returns.py:7 | ControlFlowNode for fail() | 10 |
|
||||
|
|
|
@ -598,6 +598,73 @@ WARNING: Predicate points_to has been deprecated and may be removed in future (P
|
|||
| l_calls.py:25 | ControlFlowNode for Attribute() | int 1 | builtin-class int | 25 | runtime |
|
||||
| l_calls.py:25 | ControlFlowNode for IntegerLiteral | int 1 | builtin-class int | 25 | runtime |
|
||||
| l_calls.py:25 | ControlFlowNode for a | class Owner | builtin-class type | 12 | runtime |
|
||||
| l_calls.py:29 | ControlFlowNode for FunctionExpr | Function f | builtin-class function | 29 | import |
|
||||
| l_calls.py:29 | ControlFlowNode for args | args | builtin-class tuple | 29 | runtime |
|
||||
| l_calls.py:29 | ControlFlowNode for f | Function f | builtin-class function | 29 | import |
|
||||
| l_calls.py:30 | ControlFlowNode for args | args | builtin-class tuple | 29 | code/l_calls.py:37 from import |
|
||||
| l_calls.py:30 | ControlFlowNode for args | args | builtin-class tuple | 29 | code/l_calls.py:42 from import |
|
||||
| l_calls.py:30 | ControlFlowNode for args | args | builtin-class tuple | 29 | runtime |
|
||||
| l_calls.py:32 | ControlFlowNode for ClassExpr | class E | builtin-class type | 32 | import |
|
||||
| l_calls.py:32 | ControlFlowNode for E | class E | builtin-class type | 32 | import |
|
||||
| l_calls.py:32 | ControlFlowNode for object | builtin-class object | builtin-class type | 32 | import |
|
||||
| l_calls.py:33 | ControlFlowNode for FunctionExpr | Function m | builtin-class function | 33 | import |
|
||||
| l_calls.py:33 | ControlFlowNode for args | args | builtin-class tuple | 33 | runtime |
|
||||
| l_calls.py:33 | ControlFlowNode for m | Function m | builtin-class function | 33 | import |
|
||||
| l_calls.py:34 | ControlFlowNode for self | E() | class E | 38 | code/l_calls.py:38 from import |
|
||||
| l_calls.py:34 | ControlFlowNode for self | int 3 | builtin-class int | 39 | code/l_calls.py:39 from import |
|
||||
| l_calls.py:34 | ControlFlowNode for self | self | class E | 33 | runtime |
|
||||
| l_calls.py:35 | ControlFlowNode for args | args | builtin-class tuple | 33 | code/l_calls.py:38 from import |
|
||||
| l_calls.py:35 | ControlFlowNode for args | args | builtin-class tuple | 33 | code/l_calls.py:39 from import |
|
||||
| l_calls.py:35 | ControlFlowNode for args | args | builtin-class tuple | 33 | runtime |
|
||||
| l_calls.py:37 | ControlFlowNode for IntegerLiteral | int 1 | builtin-class int | 37 | import |
|
||||
| l_calls.py:37 | ControlFlowNode for IntegerLiteral | int 2 | builtin-class int | 37 | import |
|
||||
| l_calls.py:37 | ControlFlowNode for IntegerLiteral | int 3 | builtin-class int | 37 | import |
|
||||
| l_calls.py:37 | ControlFlowNode for f | Function f | builtin-class function | 29 | import |
|
||||
| l_calls.py:37 | ControlFlowNode for f() | args | builtin-class tuple | 29 | import |
|
||||
| l_calls.py:38 | ControlFlowNode for Attribute | Attribute | builtin-class method | 38 | import |
|
||||
| l_calls.py:38 | ControlFlowNode for Attribute() | args | builtin-class tuple | 33 | import |
|
||||
| l_calls.py:38 | ControlFlowNode for E | class E | builtin-class type | 32 | import |
|
||||
| l_calls.py:38 | ControlFlowNode for E() | E() | class E | 38 | import |
|
||||
| l_calls.py:38 | ControlFlowNode for IntegerLiteral | int 2 | builtin-class int | 38 | import |
|
||||
| l_calls.py:38 | ControlFlowNode for IntegerLiteral | int 3 | builtin-class int | 38 | import |
|
||||
| l_calls.py:38 | ControlFlowNode for IntegerLiteral | int 4 | builtin-class int | 38 | import |
|
||||
| l_calls.py:39 | ControlFlowNode for Attribute | Function m | builtin-class function | 33 | import |
|
||||
| l_calls.py:39 | ControlFlowNode for Attribute() | args | builtin-class tuple | 33 | import |
|
||||
| l_calls.py:39 | ControlFlowNode for E | class E | builtin-class type | 32 | import |
|
||||
| l_calls.py:39 | ControlFlowNode for IntegerLiteral | int 3 | builtin-class int | 39 | import |
|
||||
| l_calls.py:39 | ControlFlowNode for IntegerLiteral | int 4 | builtin-class int | 39 | import |
|
||||
| l_calls.py:39 | ControlFlowNode for IntegerLiteral | int 5 | builtin-class int | 39 | import |
|
||||
| l_calls.py:41 | ControlFlowNode for Str | 'a' | builtin-class str | 41 | import |
|
||||
| l_calls.py:41 | ControlFlowNode for Str | 'b' | builtin-class str | 41 | import |
|
||||
| l_calls.py:41 | ControlFlowNode for Str | 'c' | builtin-class str | 41 | import |
|
||||
| l_calls.py:41 | ControlFlowNode for Tuple | Tuple | builtin-class tuple | 41 | import |
|
||||
| l_calls.py:41 | ControlFlowNode for t | Tuple | builtin-class tuple | 41 | import |
|
||||
| l_calls.py:42 | ControlFlowNode for f | Function f | builtin-class function | 29 | import |
|
||||
| l_calls.py:42 | ControlFlowNode for f() | args | builtin-class tuple | 29 | import |
|
||||
| l_calls.py:42 | ControlFlowNode for t | Tuple | builtin-class tuple | 41 | import |
|
||||
| l_calls.py:44 | ControlFlowNode for FunctionExpr | Function g | builtin-class function | 44 | import |
|
||||
| l_calls.py:44 | ControlFlowNode for g | Function g | builtin-class function | 44 | import |
|
||||
| l_calls.py:45 | ControlFlowNode for a | 'a' | builtin-class str | 51 | code/l_calls.py:51 from import |
|
||||
| l_calls.py:47 | ControlFlowNode for ClassExpr | class F | builtin-class type | 47 | import |
|
||||
| l_calls.py:47 | ControlFlowNode for F | class F | builtin-class type | 47 | import |
|
||||
| l_calls.py:47 | ControlFlowNode for object | builtin-class object | builtin-class type | 47 | import |
|
||||
| l_calls.py:48 | ControlFlowNode for FunctionExpr | Function m | builtin-class function | 48 | import |
|
||||
| l_calls.py:48 | ControlFlowNode for None | NoneType None | builtin-class NoneType | 48 | import |
|
||||
| l_calls.py:48 | ControlFlowNode for m | Function m | builtin-class function | 48 | import |
|
||||
| l_calls.py:49 | ControlFlowNode for x | 'a' | builtin-class str | 52 | code/l_calls.py:52 from import |
|
||||
| l_calls.py:49 | ControlFlowNode for x | 'b' | builtin-class str | 53 | code/l_calls.py:53 from import |
|
||||
| l_calls.py:51 | ControlFlowNode for g | Function g | builtin-class function | 44 | import |
|
||||
| l_calls.py:51 | ControlFlowNode for g() | 'a' | builtin-class str | 51 | import |
|
||||
| l_calls.py:51 | ControlFlowNode for t | Tuple | builtin-class tuple | 41 | import |
|
||||
| l_calls.py:52 | ControlFlowNode for Attribute | Attribute | builtin-class method | 52 | import |
|
||||
| l_calls.py:52 | ControlFlowNode for Attribute() | 'a' | builtin-class str | 52 | import |
|
||||
| l_calls.py:52 | ControlFlowNode for F | class F | builtin-class type | 47 | import |
|
||||
| l_calls.py:52 | ControlFlowNode for F() | F() | class F | 52 | import |
|
||||
| l_calls.py:52 | ControlFlowNode for t | Tuple | builtin-class tuple | 41 | import |
|
||||
| l_calls.py:53 | ControlFlowNode for Attribute | Function m | builtin-class function | 48 | import |
|
||||
| l_calls.py:53 | ControlFlowNode for Attribute() | 'b' | builtin-class str | 53 | import |
|
||||
| l_calls.py:53 | ControlFlowNode for F | class F | builtin-class type | 47 | import |
|
||||
| l_calls.py:53 | ControlFlowNode for t | Tuple | builtin-class tuple | 41 | import |
|
||||
| m_attributes.py:3 | ControlFlowNode for C | class C | builtin-class type | 3 | import |
|
||||
| m_attributes.py:3 | ControlFlowNode for ClassExpr | class C | builtin-class type | 3 | import |
|
||||
| m_attributes.py:3 | ControlFlowNode for object | builtin-class object | builtin-class type | 3 | import |
|
||||
|
|
|
@ -675,6 +675,69 @@ WARNING: Predicate points_to has been deprecated and may be removed in future (P
|
|||
| l_calls.py:25 | ControlFlowNode for Attribute() | int 1 | builtin-class int | 25 |
|
||||
| l_calls.py:25 | ControlFlowNode for IntegerLiteral | int 1 | builtin-class int | 25 |
|
||||
| l_calls.py:25 | ControlFlowNode for a | class Owner | builtin-class type | 12 |
|
||||
| l_calls.py:29 | ControlFlowNode for FunctionExpr | Function f | builtin-class function | 29 |
|
||||
| l_calls.py:29 | ControlFlowNode for args | args | builtin-class tuple | 29 |
|
||||
| l_calls.py:29 | ControlFlowNode for f | Function f | builtin-class function | 29 |
|
||||
| l_calls.py:30 | ControlFlowNode for args | args | builtin-class tuple | 29 |
|
||||
| l_calls.py:32 | ControlFlowNode for ClassExpr | class E | builtin-class type | 32 |
|
||||
| l_calls.py:32 | ControlFlowNode for E | class E | builtin-class type | 32 |
|
||||
| l_calls.py:32 | ControlFlowNode for object | builtin-class object | builtin-class type | 32 |
|
||||
| l_calls.py:33 | ControlFlowNode for FunctionExpr | Function m | builtin-class function | 33 |
|
||||
| l_calls.py:33 | ControlFlowNode for args | args | builtin-class tuple | 33 |
|
||||
| l_calls.py:33 | ControlFlowNode for m | Function m | builtin-class function | 33 |
|
||||
| l_calls.py:34 | ControlFlowNode for self | E() | class E | 38 |
|
||||
| l_calls.py:34 | ControlFlowNode for self | int 3 | builtin-class int | 39 |
|
||||
| l_calls.py:34 | ControlFlowNode for self | self | class E | 33 |
|
||||
| l_calls.py:35 | ControlFlowNode for args | args | builtin-class tuple | 33 |
|
||||
| l_calls.py:37 | ControlFlowNode for IntegerLiteral | int 1 | builtin-class int | 37 |
|
||||
| l_calls.py:37 | ControlFlowNode for IntegerLiteral | int 2 | builtin-class int | 37 |
|
||||
| l_calls.py:37 | ControlFlowNode for IntegerLiteral | int 3 | builtin-class int | 37 |
|
||||
| l_calls.py:37 | ControlFlowNode for f | Function f | builtin-class function | 29 |
|
||||
| l_calls.py:37 | ControlFlowNode for f() | args | builtin-class tuple | 29 |
|
||||
| l_calls.py:38 | ControlFlowNode for Attribute | Attribute | builtin-class method | 38 |
|
||||
| l_calls.py:38 | ControlFlowNode for Attribute() | args | builtin-class tuple | 33 |
|
||||
| l_calls.py:38 | ControlFlowNode for E | class E | builtin-class type | 32 |
|
||||
| l_calls.py:38 | ControlFlowNode for E() | E() | class E | 38 |
|
||||
| l_calls.py:38 | ControlFlowNode for IntegerLiteral | int 2 | builtin-class int | 38 |
|
||||
| l_calls.py:38 | ControlFlowNode for IntegerLiteral | int 3 | builtin-class int | 38 |
|
||||
| l_calls.py:38 | ControlFlowNode for IntegerLiteral | int 4 | builtin-class int | 38 |
|
||||
| l_calls.py:39 | ControlFlowNode for Attribute | Function m | builtin-class function | 33 |
|
||||
| l_calls.py:39 | ControlFlowNode for Attribute() | args | builtin-class tuple | 33 |
|
||||
| l_calls.py:39 | ControlFlowNode for E | class E | builtin-class type | 32 |
|
||||
| l_calls.py:39 | ControlFlowNode for IntegerLiteral | int 3 | builtin-class int | 39 |
|
||||
| l_calls.py:39 | ControlFlowNode for IntegerLiteral | int 4 | builtin-class int | 39 |
|
||||
| l_calls.py:39 | ControlFlowNode for IntegerLiteral | int 5 | builtin-class int | 39 |
|
||||
| l_calls.py:41 | ControlFlowNode for Str | 'a' | builtin-class str | 41 |
|
||||
| l_calls.py:41 | ControlFlowNode for Str | 'b' | builtin-class str | 41 |
|
||||
| l_calls.py:41 | ControlFlowNode for Str | 'c' | builtin-class str | 41 |
|
||||
| l_calls.py:41 | ControlFlowNode for Tuple | Tuple | builtin-class tuple | 41 |
|
||||
| l_calls.py:41 | ControlFlowNode for t | Tuple | builtin-class tuple | 41 |
|
||||
| l_calls.py:42 | ControlFlowNode for f | Function f | builtin-class function | 29 |
|
||||
| l_calls.py:42 | ControlFlowNode for f() | args | builtin-class tuple | 29 |
|
||||
| l_calls.py:42 | ControlFlowNode for t | Tuple | builtin-class tuple | 41 |
|
||||
| l_calls.py:44 | ControlFlowNode for FunctionExpr | Function g | builtin-class function | 44 |
|
||||
| l_calls.py:44 | ControlFlowNode for g | Function g | builtin-class function | 44 |
|
||||
| l_calls.py:45 | ControlFlowNode for a | 'a' | builtin-class str | 51 |
|
||||
| l_calls.py:47 | ControlFlowNode for ClassExpr | class F | builtin-class type | 47 |
|
||||
| l_calls.py:47 | ControlFlowNode for F | class F | builtin-class type | 47 |
|
||||
| l_calls.py:47 | ControlFlowNode for object | builtin-class object | builtin-class type | 47 |
|
||||
| l_calls.py:48 | ControlFlowNode for FunctionExpr | Function m | builtin-class function | 48 |
|
||||
| l_calls.py:48 | ControlFlowNode for None | NoneType None | builtin-class NoneType | 48 |
|
||||
| l_calls.py:48 | ControlFlowNode for m | Function m | builtin-class function | 48 |
|
||||
| l_calls.py:49 | ControlFlowNode for x | 'a' | builtin-class str | 52 |
|
||||
| l_calls.py:49 | ControlFlowNode for x | 'b' | builtin-class str | 53 |
|
||||
| l_calls.py:51 | ControlFlowNode for g | Function g | builtin-class function | 44 |
|
||||
| l_calls.py:51 | ControlFlowNode for g() | 'a' | builtin-class str | 51 |
|
||||
| l_calls.py:51 | ControlFlowNode for t | Tuple | builtin-class tuple | 41 |
|
||||
| l_calls.py:52 | ControlFlowNode for Attribute | Attribute | builtin-class method | 52 |
|
||||
| l_calls.py:52 | ControlFlowNode for Attribute() | 'a' | builtin-class str | 52 |
|
||||
| l_calls.py:52 | ControlFlowNode for F | class F | builtin-class type | 47 |
|
||||
| l_calls.py:52 | ControlFlowNode for F() | F() | class F | 52 |
|
||||
| l_calls.py:52 | ControlFlowNode for t | Tuple | builtin-class tuple | 41 |
|
||||
| l_calls.py:53 | ControlFlowNode for Attribute | Function m | builtin-class function | 48 |
|
||||
| l_calls.py:53 | ControlFlowNode for Attribute() | 'b' | builtin-class str | 53 |
|
||||
| l_calls.py:53 | ControlFlowNode for F | class F | builtin-class type | 47 |
|
||||
| l_calls.py:53 | ControlFlowNode for t | Tuple | builtin-class tuple | 41 |
|
||||
| s_scopes.py:4 | ControlFlowNode for True | bool True | builtin-class bool | 4 |
|
||||
| s_scopes.py:4 | ControlFlowNode for float | bool True | builtin-class bool | 4 |
|
||||
| s_scopes.py:7 | ControlFlowNode for C2 | class C2 | builtin-class type | 7 |
|
||||
|
|
|
@ -466,6 +466,64 @@
|
|||
| l_calls.py:25 | ControlFlowNode for Attribute() | runtime | int 1 | builtin-class int |
|
||||
| l_calls.py:25 | ControlFlowNode for IntegerLiteral | runtime | int 1 | builtin-class int |
|
||||
| l_calls.py:25 | ControlFlowNode for a | runtime | class Owner | builtin-class type |
|
||||
| l_calls.py:29 | ControlFlowNode for FunctionExpr | import | Function f | builtin-class function |
|
||||
| l_calls.py:30 | ControlFlowNode for args | code/l_calls.py:37 from import | (int 1, int 2, int 3, ) | builtin-class tuple |
|
||||
| l_calls.py:30 | ControlFlowNode for args | code/l_calls.py:42 from import | ('a', 'b', 'c', ) | builtin-class tuple |
|
||||
| l_calls.py:30 | ControlFlowNode for args | runtime | instance of tuple | builtin-class tuple |
|
||||
| l_calls.py:32 | ControlFlowNode for ClassExpr | import | class E | builtin-class type |
|
||||
| l_calls.py:32 | ControlFlowNode for object | import | builtin-class object | builtin-class type |
|
||||
| l_calls.py:33 | ControlFlowNode for FunctionExpr | import | Function E.m | builtin-class function |
|
||||
| l_calls.py:34 | ControlFlowNode for self | code/l_calls.py:38 from import | E() | class E |
|
||||
| l_calls.py:34 | ControlFlowNode for self | code/l_calls.py:39 from import | int 3 | builtin-class int |
|
||||
| l_calls.py:34 | ControlFlowNode for self | runtime | self instance of E | class E |
|
||||
| l_calls.py:35 | ControlFlowNode for args | code/l_calls.py:38 from import | (int 2, int 3, int 4, ) | builtin-class tuple |
|
||||
| l_calls.py:35 | ControlFlowNode for args | code/l_calls.py:39 from import | (int 4, int 5, ) | builtin-class tuple |
|
||||
| l_calls.py:35 | ControlFlowNode for args | runtime | instance of tuple | builtin-class tuple |
|
||||
| l_calls.py:37 | ControlFlowNode for IntegerLiteral | import | int 1 | builtin-class int |
|
||||
| l_calls.py:37 | ControlFlowNode for IntegerLiteral | import | int 2 | builtin-class int |
|
||||
| l_calls.py:37 | ControlFlowNode for IntegerLiteral | import | int 3 | builtin-class int |
|
||||
| l_calls.py:37 | ControlFlowNode for f | import | Function f | builtin-class function |
|
||||
| l_calls.py:37 | ControlFlowNode for f() | import | (int 1, int 2, int 3, ) | builtin-class tuple |
|
||||
| l_calls.py:38 | ControlFlowNode for Attribute | import | Method(Function E.m, E()) | builtin-class method |
|
||||
| l_calls.py:38 | ControlFlowNode for Attribute() | import | (int 2, int 3, int 4, ) | builtin-class tuple |
|
||||
| l_calls.py:38 | ControlFlowNode for E | import | class E | builtin-class type |
|
||||
| l_calls.py:38 | ControlFlowNode for E() | import | E() | class E |
|
||||
| l_calls.py:38 | ControlFlowNode for IntegerLiteral | import | int 2 | builtin-class int |
|
||||
| l_calls.py:38 | ControlFlowNode for IntegerLiteral | import | int 3 | builtin-class int |
|
||||
| l_calls.py:38 | ControlFlowNode for IntegerLiteral | import | int 4 | builtin-class int |
|
||||
| l_calls.py:39 | ControlFlowNode for Attribute | import | Function E.m | builtin-class function |
|
||||
| l_calls.py:39 | ControlFlowNode for Attribute() | import | (int 4, int 5, ) | builtin-class tuple |
|
||||
| l_calls.py:39 | ControlFlowNode for E | import | class E | builtin-class type |
|
||||
| l_calls.py:39 | ControlFlowNode for IntegerLiteral | import | int 3 | builtin-class int |
|
||||
| l_calls.py:39 | ControlFlowNode for IntegerLiteral | import | int 4 | builtin-class int |
|
||||
| l_calls.py:39 | ControlFlowNode for IntegerLiteral | import | int 5 | builtin-class int |
|
||||
| l_calls.py:41 | ControlFlowNode for Str | import | 'a' | builtin-class str |
|
||||
| l_calls.py:41 | ControlFlowNode for Str | import | 'b' | builtin-class str |
|
||||
| l_calls.py:41 | ControlFlowNode for Str | import | 'c' | builtin-class str |
|
||||
| l_calls.py:41 | ControlFlowNode for Tuple | import | ('a', 'b', 'c', ) | builtin-class tuple |
|
||||
| l_calls.py:42 | ControlFlowNode for f | import | Function f | builtin-class function |
|
||||
| l_calls.py:42 | ControlFlowNode for f() | import | ('a', 'b', 'c', ) | builtin-class tuple |
|
||||
| l_calls.py:42 | ControlFlowNode for t | import | ('a', 'b', 'c', ) | builtin-class tuple |
|
||||
| l_calls.py:44 | ControlFlowNode for FunctionExpr | import | Function g | builtin-class function |
|
||||
| l_calls.py:45 | ControlFlowNode for a | code/l_calls.py:51 from import | 'a' | builtin-class str |
|
||||
| l_calls.py:47 | ControlFlowNode for ClassExpr | import | class F | builtin-class type |
|
||||
| l_calls.py:47 | ControlFlowNode for object | import | builtin-class object | builtin-class type |
|
||||
| l_calls.py:48 | ControlFlowNode for FunctionExpr | import | Function F.m | builtin-class function |
|
||||
| l_calls.py:48 | ControlFlowNode for None | import | None | builtin-class NoneType |
|
||||
| l_calls.py:49 | ControlFlowNode for x | code/l_calls.py:52 from import | 'a' | builtin-class str |
|
||||
| l_calls.py:49 | ControlFlowNode for x | code/l_calls.py:53 from import | 'b' | builtin-class str |
|
||||
| l_calls.py:51 | ControlFlowNode for g | import | Function g | builtin-class function |
|
||||
| l_calls.py:51 | ControlFlowNode for g() | import | 'a' | builtin-class str |
|
||||
| l_calls.py:51 | ControlFlowNode for t | import | ('a', 'b', 'c', ) | builtin-class tuple |
|
||||
| l_calls.py:52 | ControlFlowNode for Attribute | import | Method(Function F.m, F()) | builtin-class method |
|
||||
| l_calls.py:52 | ControlFlowNode for Attribute() | import | 'a' | builtin-class str |
|
||||
| l_calls.py:52 | ControlFlowNode for F | import | class F | builtin-class type |
|
||||
| l_calls.py:52 | ControlFlowNode for F() | import | F() | class F |
|
||||
| l_calls.py:52 | ControlFlowNode for t | import | ('a', 'b', 'c', ) | builtin-class tuple |
|
||||
| l_calls.py:53 | ControlFlowNode for Attribute | import | Function F.m | builtin-class function |
|
||||
| l_calls.py:53 | ControlFlowNode for Attribute() | import | 'b' | builtin-class str |
|
||||
| l_calls.py:53 | ControlFlowNode for F | import | class F | builtin-class type |
|
||||
| l_calls.py:53 | ControlFlowNode for t | import | ('a', 'b', 'c', ) | builtin-class tuple |
|
||||
| m_attributes.py:3 | ControlFlowNode for ClassExpr | import | class C | builtin-class type |
|
||||
| m_attributes.py:3 | ControlFlowNode for object | import | builtin-class object | builtin-class type |
|
||||
| m_attributes.py:5 | ControlFlowNode for FunctionExpr | import | Function C.__init__ | builtin-class function |
|
||||
|
|
|
@ -24,3 +24,31 @@ class Owner(object):
|
|||
a = self.cm(0)
|
||||
return a.cm2(1)
|
||||
|
||||
# *args
|
||||
|
||||
def f(*args):
|
||||
return args
|
||||
|
||||
class E(object):
|
||||
def m(self, *args):
|
||||
self
|
||||
return args
|
||||
|
||||
f(1, 2, 3)
|
||||
E().m(2, 3, 4)
|
||||
E.m(3, 4, 5)
|
||||
|
||||
t = 'a', 'b', 'c'
|
||||
f(*t)
|
||||
|
||||
def g(a, b, c):
|
||||
return a
|
||||
|
||||
class F(object):
|
||||
def m(self, x, y, z=None):
|
||||
return x
|
||||
|
||||
g(*t)
|
||||
F().m(*t)
|
||||
F.m(*t)
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче