Searched full:static_field (Results 1 – 25 of 45) sorted by relevance
12
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/ |
| D | load_static_const_folding.ets | 41 public static readonly STATIC_FIELD: number = 10 45 public static readonly STATIC_FIELD: int = 20 49 return m * ClassWithStaticIntField.STATIC_FIELD 53 return m * ClassWithStaticFloatField.STATIC_FIELD
|
| /arkcompiler/runtime_core/tests/verifier-tests/ |
| D | bug_1828.pa | 15 i32 static_field <static> 25 stobj v0, W.static_field
|
| D | bug_2086_1.pa | 38 i64 static_field <static> 53 ldobj.64 v0, W.static_field
|
| D | bug_2086_2.pa | 38 i64 static_field <static>
|
| /arkcompiler/runtime_core/static_core/tests/verifier-tests/ |
| D | bug_2086_2.pa | 38 i64 static_field <static>
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | ldobj.64.yaml | 293 i64 static_field <static> 311 - W.static_field 350 i64 static_field <static> 368 - W.static_field
|
| D | ldobj.v.64.yaml | 293 i64 static_field <static> 311 - W.static_field 350 i64 static_field <static> 368 - W.static_field
|
| D | stobj.64.yaml | 196 i64 static_field <static> 215 - W.static_field
|
| D | ldobj.yaml | 254 i32 static_field <static> 272 - W.static_field
|
| /arkcompiler/ets_frontend/ets2panda/ir/base/ |
| D | classProperty.h | 70 return isStatic ? PrivateFieldKind::STATIC_FIELD : PrivateFieldKind::FIELD; in ToPrivateFieldKind()
|
| /arkcompiler/ets_frontend/ets2panda/compiler/base/ |
| D | lreference.h | 38 STATIC_FIELD, enumerator
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/ |
| D | ldobj.64.yaml | 164 i64 static_field <static> 181 - W.static_field
|
| D | ldobj.obj.yaml | 170 W static_field <static> 192 - W.static_field
|
| D | ldobj.v.obj.yaml | 161 W static_field <static> 183 - W.static_field
|
| D | ldobj.v.64.yaml | 163 i64 static_field <static> 180 - W.static_field
|
| D | ldobj.v.yaml | 172 i32 static_field <static> 189 - W.static_field
|
| D | stobj.v.obj.yaml | 179 W static_field <static> 198 - W.static_field
|
| D | ldobj.yaml | 175 i32 static_field <static> 192 - W.static_field
|
| D | stobj.obj.yaml | 183 W static_field <static> 206 - W.static_field
|
| D | stobj.64.yaml | 182 i64 static_field <static> 200 - W.static_field
|
| D | stobj.v.64.yaml | 179 i64 static_field <static> 194 - W.static_field
|
| /arkcompiler/ets_frontend/ets2panda/checker/types/ets/ |
| D | etsObjectTypeConstants.h | 108 STATIC_FIELD, enumerator
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/ |
| D | alias_analysis.cpp | 356 * STATIC_FIELD and ARRAY_ELEMENT. They correspond to groups of memory storing 361 * Global pointers such as STATIC_FIELD and POOL_CONSTANT are checked through 381 …if (p1.GetType() == STATIC_FIELD || p2.GetType() == STATIC_FIELD || p1.GetType() == POOL_CONSTANT … in CheckMemAddress() 532 …if (ref->GetBase() != edge->GetBase() || edge->GetType() == STATIC_FIELD || edge->GetType() == OBJ… in SolveConstraintsMainLoop()
|
| D | object_type_propagation.cpp | 509 if (p.GetType() == STATIC_FIELD) { in AddDirectEdge() 670 …if (from.IsObject() && !to.IsObject() && to.GetType() != STATIC_FIELD && to.GetType() != POOL_CONS… in AddTempEdge() 689 ASSERT(from.GetType() == STATIC_FIELD || from.GetType() == POOL_CONSTANT); in AddEdge() 727 if (from.GetType() == STATIC_FIELD || from.GetType() == POOL_CONSTANT) { in AddLoadEdge() 755 if (to.GetType() == STATIC_FIELD || to.GetType() == POOL_CONSTANT) { in AddStoreEdge() 816 if (from.GetType() == STATIC_FIELD || from.GetType() == POOL_CONSTANT) { in AddCopyEdge() 819 } else if (to.GetType() == STATIC_FIELD || to.GetType() == POOL_CONSTANT) { in AddCopyEdge()
|
| /arkcompiler/ets_frontend/ets2panda/ir/ |
| D | astNodeFlags.h | 82 enum class PrivateFieldKind { FIELD, METHOD, GET, SET, STATIC_FIELD, STATIC_METHOD, STATIC_GET, STA… enumerator
|
12