Home
last modified time | relevance | path

Searched refs:rep (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/templates/
Dreport.erb15 Total number of tests: <%= rep['tests']['total']%>
16 Tests accepted for coverage: <%= rep['tests']['counted_for_coverage']%>
17 Tests with not matching assertions: <%= rep['tests']['orphaned']%>
20 …Total number of assertions: <%= rep['assertions']['testable'] + rep['assertions']['non_testable']%>
21 Testable assertions: <%= rep['assertions']['testable']%>
22 Non-testable assertions: <%= rep['assertions']['non_testable']%>
23 Covered assertions: <%= rep['assertions']['covered']%>
24 Not covered assertions: <%= rep['assertions']['not_covered']%>
26 Coverage by Groups:<% rep['coverage_by_groups'].each do |g| %>
30 Overall Coverage Metric: <%= rep['coverage_metric']%>
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/
Dreport_md.rb25 def initialize(rep) argument
27 @rep = rep
/arkcompiler/ets_runtime/ecmascript/
Dproperty_attributes.h240 auto rep = GetRepresentation(); in IsDoubleRep() local
241 return rep == Representation::DOUBLE; in IsDoubleRep()
246 auto rep = GetRepresentation(); in IsIntRep() local
247 return rep == Representation::INT; in IsIntRep()
Djs_hclass.h1812 inline void SetRepresentation(Representation rep) in SetRepresentation() argument
1814 RepresentationBits::Set(rep, &data_); in SetRepresentation()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dnumber_speculative_retype.h60 GateRef SetOutputType(GateRef gate, Representation rep);
Dllvm_ir_builder.h395 LLVMTypeRef GetMachineRepType(MachineRep rep) const;
406 LLVMValueRef PointerAdd(LLVMValueRef baseAddr, LLVMValueRef offsetInByte, LLVMTypeRef rep);
Dnumber_speculative_retype.cpp54 GateRef NumberSpeculativeRetype::SetOutputType(GateRef gate, Representation rep) in SetOutputType() argument
58 if (rep == Representation::INT) { in SetOutputType()
60 } else if (rep == Representation::DOUBLE) { in SetOutputType()
Dstub_builder-inl.h1700 GateRef glue, GateRef array, GateRef index, GateRef val, GateRef rep, Label *repChange) in SetValueToTaggedArrayWithRep() argument
1704 SetValueWithRep(glue, array, dataOffset, val, rep, repChange); in SetValueToTaggedArrayWithRep()
2061 inline GateRef StubBuilder::IsIntRepInPropAttr(GateRef rep) in IsIntRepInPropAttr() argument
2063 return Int32Equal(rep, Int32(static_cast<int32_t>(Representation::INT))); in IsIntRepInPropAttr()
2066 inline GateRef StubBuilder::IsDoubleRepInPropAttr(GateRef rep) in IsDoubleRepInPropAttr() argument
2068 return Int32Equal(rep, Int32(static_cast<int32_t>(Representation::DOUBLE))); in IsDoubleRepInPropAttr()
Dstub_builder.cpp459 GateRef rep = GetRepInPropAttr(attr); in JSObjectGetProperty() local
481 Branch(IsDoubleRepInPropAttr(rep), &doubleToTagged, &nonDoubleToTagged); in JSObjectGetProperty()
490 Branch(IsIntRepInPropAttr(rep), &intToTagged, &exit); in JSObjectGetProperty()
1035 GateRef rep = GetRepInPropAttr(attr); in SetValueWithAttr() local
1036 SetValueWithRep(glue, obj, offset, value, rep, &repChange); in SetValueWithAttr()
1050 GateRef glue, GateRef obj, GateRef offset, GateRef value, GateRef rep, Label *repChange) in SetValueWithRep() argument
1059 Branch(IsDoubleRepInPropAttr(rep), &repIsDouble, &repIsNonDouble); in SetValueWithRep()
1093 Branch(IsIntRepInPropAttr(rep), &repIsInt, &repIsTagged); in SetValueWithRep()
1477 GateRef rep = HandlerBaseGetRep(handlerInfo); in LoadFromField() local
1478 Branch(IsDoubleRepInPropAttr(rep), &doubleToTagged, &nonDoubleToTagged); in LoadFromField()
[all …]
Dstub_builder.h419 GateRef glue, GateRef array, GateRef index, GateRef val, GateRef rep, Label *repChange);
535 …void SetValueWithRep(GateRef glue, GateRef obj, GateRef offset, GateRef value, GateRef rep, Label …
Dllvm_ir_builder.cpp444 LLVMTypeRef LLVMIRBuilder::GetMachineRepType(MachineRep rep) const in GetMachineRepType()
447 switch (rep) { in GetMachineRepType()
1464 …lueRef LLVMIRBuilder::PointerAdd(LLVMValueRef baseAddr, LLVMValueRef offsetInByte, LLVMTypeRef rep) in PointerAdd() argument
1468 LLVMValueRef result = LLVMBuildPointerCast(builder_, dstRef8, rep, ""); in PointerAdd()