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

Implement Rule-1-4's rule amendment from Amendment4 (also amended in Amd3) #882

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion amendments.csv
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ c,MISRA-C-2012,Amendment4,RULE-8-9,Yes,Clarification,Yes,Import
c,MISRA-C-2012,Amendment4,RULE-9-4,Yes,Clarification,Yes,Import
c,MISRA-C-2012,Amendment4,RULE-10-1,Yes,Clarification,Yes,Import
c,MISRA-C-2012,Amendment4,RULE-18-3,Yes,Clarification,Yes,Import
c,MISRA-C-2012,Amendment4,RULE-1-4,Yes,Replace,No,Easy
c,MISRA-C-2012,Amendment4,RULE-1-4,Yes,Replace,Yes,Easy
c,MISRA-C-2012,Amendment4,RULE-9-1,Yes,Refine,Yes,Easy
c,MISRA-C-2012,Corrigendum2,DIR-4-10,Yes,Clarification,Yes,Import
c,MISRA-C-2012,Corrigendum2,RULE-7-4,Yes,Refine,Yes,Easy
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
| test.c:2:1:2:22 | #include <stdatomic.h> | Usage of emergent language feature. |
| test.c:4:1:4:20 | #include <threads.h> | Usage of emergent language feature. |
| test.c:7:1:7:32 | #define __STDC_WANT_LIB_EXT1__ 1 | Usage of emergent language feature. |
| test.c:12:26:12:40 | atomic_new_type | Usage of emergent language feature. |
| test.c:17:15:17:15 | i | Usage of emergent language feature. |
| test.c:24:27:24:28 | i3 | Usage of emergent language feature. |
| test.c:25:28:25:29 | i4 | Usage of emergent language feature. |
12 changes: 6 additions & 6 deletions c/misra/test/rules/RULE-1-4/test.c
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#include <stdalign.h> //COMPLIANT
#include <stdatomic.h> //NON_COMPLIANT
#include <stdatomic.h> //COMPLIANT
#include <stdnoreturn.h> //COMPLIANT
#include <threads.h> //NON_COMPLIANT
#include <threads.h> //COMPLIANT

#define MACRO(x) _Generic((x), int : 0, long : 1) // NON_COMPLIANT
#define MACRO(x) _Generic((x), int : 0, long : 1) // COMPLIANT
#define __STDC_WANT_LIB_EXT1__ 1 // NON_COMPLIANT

_Noreturn void f0(); // COMPLIANT

typedef int new_type; // COMPLIANT
typedef _Atomic new_type atomic_new_type; // NON_COMPLIANT
typedef _Atomic new_type atomic_new_type; // COMPLIANT

void f(int p) {
int i0 = _Generic(p, int : 0, long : 1); // COMPLIANT
Expand All @@ -21,6 +21,6 @@ void f(int p) {
int a = _Alignof(int); // COMPLIANT
int a1 = alignof(int); // COMPLIANT

static thread_local int i3; // NON_COMPLIANT
static _Thread_local int i4; // NON_COMPLIANT
static thread_local int i3; // COMPLIANT
static _Thread_local int i4; // COMPLIANT
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- `RULE-1-4` - `EmergentLanguageFeaturesUsed.ql`:
- Allow usage of atomics, `thread.h`, and `_Thread_local` as per Misra C 2012 Amendment 4.
18 changes: 0 additions & 18 deletions cpp/common/src/codingstandards/cpp/Emergent.qll
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,6 @@ import cpp
module C11 {
abstract class EmergentLanguageFeature extends Element { }

class AtomicVariableSpecifier extends EmergentLanguageFeature, Variable {
AtomicVariableSpecifier() {
getType().(DerivedType).getBaseType*().getASpecifier().getName() = "atomic"
}
}

class AtomicDeclaration extends EmergentLanguageFeature, Declaration {
AtomicDeclaration() { getASpecifier().getName() = "atomic" }
}

class ThreadLocalDeclaration extends EmergentLanguageFeature, Declaration {
ThreadLocalDeclaration() { getASpecifier().getName() = "is_thread_local" }
}

class EmergentHeader extends EmergentLanguageFeature, Include {
EmergentHeader() { getIncludedFile().getBaseName() = ["stdatomic.h", "threads.h"] }
}

class LibExt1Macro extends EmergentLanguageFeature, Macro {
LibExt1Macro() {
getName() = "__STDC_WANT_LIB_EXT1__" and
Expand Down
Loading