Home
last modified time | relevance | path

Searched refs:rep (Results 1 - 21 of 21) sorted by relevance

/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/lib/
H A Dreport_md.rb23 attr_accessor :rep
25 def initialize(rep)
27 @rep = rep
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/
H A Dreport_md.rb23 attr_accessor :rep
25 def initialize(rep)
27 @rep = rep
/arkcompiler/ets_runtime/ecmascript/
H A Djs_hclass-inl.h116 const Representation &rep) in FindTransitions()
133 return CheckHClassForRep(cachedHClass, rep); in FindTransitions()
150 return CheckHClassForRep(JSHClass::Cast(ret.GetTaggedWeakRef()), rep); in FindTransitions()
181 inline JSHClass *JSHClass::CheckHClassForRep(JSHClass *hclass, const Representation &rep) in CheckHClassForRep() argument
186 if (rep == Representation::NONE) { in CheckHClassForRep()
195 if (rep != Representation::INT) { in CheckHClassForRep()
199 if (rep != Representation::INT && rep != Representation::DOUBLE) { in CheckHClassForRep()
386 const PropertyAttributes &attr, const Representation &rep) in SetPropertyOfObjHClass()
389 key.GetTaggedValue(), JSTaggedValue(attr.GetPropertyMetaData()), rep); in SetPropertyOfObjHClass()
115 FindTransitions(const JSTaggedValue &key, const JSTaggedValue &metaData, const Representation &rep) FindTransitions() argument
384 SetPropertyOfObjHClass(const JSThread *thread, JSHandle<JSHClass> &jshclass, const JSHandle<JSTaggedValue> &key, const PropertyAttributes &attr, const Representation &rep) SetPropertyOfObjHClass() argument
[all...]
H A Dproperty_attributes.h296 auto rep = GetRepresentation(); in IsDoubleRep() local
297 return rep == Representation::DOUBLE; in IsDoubleRep()
302 auto rep = GetRepresentation(); in IsIntRep() local
303 return rep == Representation::INT; in IsIntRep()
H A Djs_hclass.h448 const Representation &rep);
451 const Representation &rep = Representation::NONE);
2033 const Representation &rep);
2034 inline JSHClass *CheckHClassForRep(JSHClass *hclass, const Representation &rep);
2214 inline void SetRepresentation(Representation rep)
2216 RepresentationBits::Set(rep, &data_);
H A Dobject_fast_operator-inl.h891 auto rep = PropertyAttributes::TranslateToRep(valueHandle.GetTaggedValue()); in AddPropertyByName() local
893 JSHClass::AddProperty(thread, objHandle, keyHandle, attr, rep); in AddPropertyByName()
943 auto rep = PropertyAttributes::TranslateToRep(valueHandle.GetTaggedValue()); in AddPropertyByName() local
945 JSHClass::AddProperty(thread, objHandle, keyHandle, attr, rep); in AddPropertyByName()
H A Djs_hclass.cpp281 const PropertyAttributes &attr, const Representation &rep) in AddProperty()
285 JSHClass *newClass = jshclass->FindTransitions(key.GetTaggedValue(), metadata, rep); in AddProperty()
1318 auto rep = attributes.GetRepresentation(); in CreateRootHClassWithCached()
1320 JSHandle<JSHClass> child = SetPropertyOfObjHClass(thread, hclass, key, attributes, rep); in CreateRootHClassWithCached()
280 AddProperty(const JSThread *thread, const JSHandle<JSObject> &obj, const JSHandle<JSTaggedValue> &key, const PropertyAttributes &attr, const Representation &rep) AddProperty() argument
H A Dobject_factory.cpp3927 auto rep = PropertyAttributes::TranslateToRep(value); in SetLayoutInObjHClass() local
3928 newObjHclass = JSHClass::SetPropertyOfObjHClass(thread_, newObjHclass, key, attributes, rep); in SetLayoutInObjHClass()
5047 auto rep = PropertyAttributes::TranslateToRep(value); in CreateJSObjectWithProperties() local
5048 hclassHandle.Update(JSHClass::SetPropertyOfObjHClass<true>(thread_, hclassHandle, key, attr, rep)); in CreateJSObjectWithProperties()
5155 auto rep = PropertyAttributes::TranslateToRep(value); in CreateJSObjectWithNamedProperties() local
5156 hclassHandle.Update(JSHClass::SetPropertyOfObjHClass<true>(thread_, hclassHandle, key, attr, rep)); in CreateJSObjectWithNamedProperties()
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/
H A Dtest_result.py254 rep = RunReport.from_obj(**obj)
256 test.assertTrue(2 == len(rep.tests))
257 test.assertTrue(6 == len(rep.tests[0].execution_forks[0].iterations))
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/plugins/hooks/
H A Dgclog.py72 rep = reporter.generate_report(events, adjust_time=time_adjustments)
73 bu.result.gc_stats = GCStats(**rep)
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/
H A Dreport.py590 rep = RunReport(ext_info=ext_info, machine=info,
595 rep.run.start_time = Timer.format(timer.begin)
596 rep.run.end_time = Timer.format(timer.end)
598 rep.run.end_time = Timer.format(datetime.now(timezone.utc))
599 vmb_rep = VMBReport(report=rep)
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/
H A Dllvm_ir_builder.h311 LLVMTypeRef GetMachineRepType(MachineRep rep) const;
322 LLVMValueRef PointerAdd(LLVMValueRef baseAddr, LLVMValueRef offsetInByte, LLVMTypeRef rep);
H A Dllvm_ir_builder.cpp523 LLVMTypeRef LLVMIRBuilder::GetMachineRepType(MachineRep rep) const in GetMachineRepType()
526 switch (rep) { in GetMachineRepType()
1726 LLVMValueRef LLVMIRBuilder::PointerAdd(LLVMValueRef baseAddr, LLVMValueRef offsetInByte, LLVMTypeRef rep) in PointerAdd() argument
1730 LLVMValueRef result = LLVMBuildPointerCast(builder_, dstRef8, rep, ""); in PointerAdd()
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dnumber_speculative_retype.cpp68 GateRef NumberSpeculativeRetype::SetOutputType(GateRef gate, Representation rep) in SetOutputType() argument
72 if (rep == Representation::INT) { in SetOutputType()
74 } else if (rep == Representation::DOUBLE) { in SetOutputType()
503 GateRef rep = builder_.ConvertCharToEcmaString(left); in VisitStringCompare() local
504 acc_.ReplaceValueIn(gate, rep, 0); in VisitStringCompare()
507 GateRef rep = builder_.ConvertCharToEcmaString(right); in VisitStringCompare() local
508 acc_.ReplaceValueIn(gate, rep, 1); in VisitStringCompare()
H A Dgate_matchers.h286 template <typename LeftExpr, typename RightExpr, MachineType rep> struct BinopMatcher : public GateMatcher {
306 // static constexpr MachineType representation = rep;
H A Dnumber_speculative_retype.h70 GateRef SetOutputType(GateRef gate, Representation rep);
H A Dstub_builder-inl.h2311 GateRef glue, GateRef array, GateRef index, GateRef val, GateRef rep, Label *repChange) in SetValueToTaggedArrayWithRep()
2315 SetValueWithRep(glue, array, dataOffset, val, rep, repChange); in SetValueToTaggedArrayWithRep()
2844 inline GateRef StubBuilder::IsIntRepInPropAttr(GateRef rep) in IsIntRepInPropAttr() argument
2846 return Int32Equal(rep, Int32(static_cast<int32_t>(Representation::INT))); in IsIntRepInPropAttr()
2849 inline GateRef StubBuilder::IsDoubleRepInPropAttr(GateRef rep) in IsDoubleRepInPropAttr() argument
2851 return Int32Equal(rep, Int32(static_cast<int32_t>(Representation::DOUBLE))); in IsDoubleRepInPropAttr()
2856 GateRef rep = GetRepInPropAttr(attr); in IsTaggedRepInPropAttr() local
2857 return BitAnd(BoolNot(IsDoubleRepInPropAttr(rep)), BoolNot(IsIntRepInPropAttr(rep))); in IsTaggedRepInPropAttr()
2310 SetValueToTaggedArrayWithRep( GateRef glue, GateRef array, GateRef index, GateRef val, GateRef rep, Label *repChange) SetValueToTaggedArrayWithRep() argument
H A Dstub_builder.cpp1009 GateRef rep = GetRepInPropAttr(attr); in JSObjectGetProperty() local
1031 BRANCH(IsDoubleRepInPropAttr(rep), &doubleToTagged, &nonDoubleToTagged); in JSObjectGetProperty()
1040 BRANCH(IsIntRepInPropAttr(rep), &intToTagged, &exit); in JSObjectGetProperty()
1713 GateRef rep = GetRepInPropAttr(attr); in SetValueWithAttr() local
1714 SetValueWithRep(glue, obj, offset, value, rep, &repChange); in SetValueWithAttr()
1728 GateRef glue, GateRef obj, GateRef offset, GateRef value, GateRef rep, Label *repChange) in SetValueWithRep()
1737 BRANCH(IsDoubleRepInPropAttr(rep), &repIsDouble, &repIsNonDouble); in SetValueWithRep()
1771 BRANCH(IsIntRepInPropAttr(rep), &repIsInt, &repIsTagged); in SetValueWithRep()
2388 GateRef rep = HandlerBaseGetRep(handlerInfo); in LoadFromField() local
2389 BRANCH(IsDoubleRepInPropAttr(rep), in LoadFromField()
1727 SetValueWithRep( GateRef glue, GateRef obj, GateRef offset, GateRef value, GateRef rep, Label *repChange) SetValueWithRep() argument
3049 GateRef rep = HandlerBaseGetRep(handler); StoreField() local
3144 GateRef rep = HandlerBaseGetRep(handlerInfo); StoreWithTransition() local
[all...]
H A Dstub_builder.h594 GateRef glue, GateRef array, GateRef index, GateRef val, GateRef rep, Label *repChange);
639 GateRef CheckHClassForRep(GateRef hClass, GateRef rep);
741 void SetValueWithRep(GateRef glue, GateRef obj, GateRef offset, GateRef value, GateRef rep, Label *repChange);
/arkcompiler/ets_runtime/ecmascript/compiler/aot_snapshot/
H A Dsnapshot_constantpool_data.cpp104 auto rep = PropertyAttributes::TranslateToRep(value); in TryGetHClassFromCached() local
105 newClass = newClass->FindTransitions(key.GetTaggedValue(), metadata, rep); in TryGetHClassFromCached()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H A Dbuiltins_object_stub_builder.cpp815 GateRef rep = GetRepInPropAttr(attr); in IsUninitializedProperty() local
824 BRANCH(IsDoubleRepInPropAttr(rep), &doubleToTagged, &nonDoubleToTagged); in IsUninitializedProperty()
834 BRANCH(IsIntRepInPropAttr(rep), &intToTagged, &exit); in IsUninitializedProperty()

Completed in 61 milliseconds