Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

508 validation for assigning output variables not working #616

Conversation

99NIMI
Copy link
Member

@99NIMI 99NIMI commented Oct 25, 2022

No description provided.

99NIMI and others added 8 commits October 25, 2022 08:29
VariableIndexEntries now offer a SymbolLocation that consists of a
line-nr, and offset, and a file-name
* adds failing test

* add missing test attribute

* PLC-lang#593 fix wrong test

* PLC-lang#593 case condition validation

* PLC-lang#593 remove comment

* PLC-lang#593 remove prints

Co-authored-by: Michael HASELBERGER <Michael.HASELBERGER@bachmann.info>
Co-authored-by: Ghaith Hachem <ghaith.hachem@gmail.com>
VariableIndexEntries now offer a SymbolLocation that consists of a
line-nr, and offset, and a file-name
@99NIMI 99NIMI linked an issue Oct 25, 2022 that may be closed by this pull request
@99NIMI 99NIMI marked this pull request as ready for review October 25, 2022 12:27
@99NIMI 99NIMI requested a review from ghaith October 25, 2022 12:28
@@ -2626,13 +2631,14 @@ impl<'ink, 'b> ExpressionCodeGenerator<'ink, 'b> {
/// If the parameter is already implicit, it does nothing.
/// if the parameter is explicit ´param := value´,
/// it returns the location of the parameter in the function declaration
/// as well as the parameter value (right side) ´param := value´ => ´value´
/// as well as the parameter value (right side) ´param := value´ => ´value´
/// and `true` for implicit / `false` for explicit parameters
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This this method is called "get_implicit" it's strange to return a boolean saying if the return value is actually implicit.. it should always be.
I would prefer having a new function "is_implicit" that returns that info (Should be a match on Assignment/Output Assingment with no further checks

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the idea was to safe another check when it is exactly what we are doing in this function
i would maybe change the name to get_call_parameter we pass explicit and implicit parameters to the function ?
if not im ok if we make another function is_implicit

@@ -40,11 +41,11 @@ entry:

define void @main(%main* %0) {
entry:
%1 = alloca i32, align 4
store i32 1, i32* %1, align 4
%1 = alloca i16, align 2
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why would the type change here?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

function declaration

FUNCTION func : DINT
VAR_INPUT {ref}
 byRef1 : INT;
...

function call
func(1,2,3,4);
before we passed 1 as i32 it should be i16

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this change is no longer in this PR
i still think we should generate an i16
but i would create a new issue for this

@99NIMI 99NIMI requested a review from ghaith October 27, 2022 11:31
@codecov-commenter
Copy link

codecov-commenter commented Oct 27, 2022

Codecov Report

Base: 93.70% // Head: 93.73% // Increases project coverage by +0.03% 🎉

Coverage data is based on head (1e91905) compared to base (af83338).
Patch coverage: 100.00% of modified lines in pull request are covered.

Additional details and impacted files
@@            Coverage Diff             @@
##           master     #616      +/-   ##
==========================================
+ Coverage   93.70%   93.73%   +0.03%     
==========================================
  Files          46       46              
  Lines       17461    17530      +69     
==========================================
+ Hits        16361    16431      +70     
+ Misses       1100     1099       -1     
Impacted Files Coverage Δ
src/codegen/generators/expression_generator.rs 89.09% <100.00%> (+0.04%) ⬆️
src/diagnostics.rs 80.91% <100.00%> (+0.15%) ⬆️
src/index.rs 97.42% <100.00%> (+0.03%) ⬆️
src/validation.rs 96.65% <100.00%> (+0.54%) ⬆️

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

Copy link
Collaborator

@riederm riederm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 good implementation - I suggested some minor improvements which are kind of tricky. The decision to not change the semantics of the get_intrinsic_type method is hard to explain - it feels not quite right for me - but I think in general you were on the right track.
we can talk this through if you have some questions!

.index
.get_effective_type_or_void_by_name(param.get_type_name())
});
let right_type = context.ast_annotation.get_type(right, context.index);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we need to check against context.ast_annotation.get_type_hint(right, context.index).or_else(|| context.ast_annotation.get_type(...)); because the annotator may already requested a cast which will be reflected by the type-hint.

--> and we should get a helper in the annotation-struct since we do this again and again.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we will always annotate if the cast can be done or not
-> trying to pass a string to int parameter -> we will have an annotation to the int type therefore we will always have the same type and never get the correct validation

@99NIMI 99NIMI requested a review from riederm November 2, 2022 07:55
riederm
riederm previously approved these changes Nov 4, 2022
@ghaith ghaith merged commit 5be0e70 into PLC-lang:master Nov 10, 2022
@99NIMI 99NIMI deleted the 508-validation-for-assigning-output-variables-not-working branch November 10, 2022 07:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Validation for assigning output variables not working
4 participants