Searched refs:isIntKind (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
H A D | elements.h | 105 bool needCOW, bool isIntKind); 116 bool needCOW, bool isIntKind);
|
H A D | elements.cpp | 218 bool needCOW, bool isIntKind) in MigrateFromRawValueToHeapValue() 233 } else if (isIntKind) { in MigrateFromRawValueToHeapValue() 245 bool needCOW, bool isIntKind) in MigrateFromHeapValueToRawValue() 262 } else if (isIntKind) { in MigrateFromHeapValueToRawValue() 217 MigrateFromRawValueToHeapValue(const JSThread *thread, const JSHandle<JSObject> object, bool needCOW, bool isIntKind) MigrateFromRawValueToHeapValue() argument 244 MigrateFromHeapValueToRawValue(const JSThread *thread, const JSHandle<JSObject> object, bool needCOW, bool isIntKind) MigrateFromHeapValueToRawValue() argument
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | mcr_lowering.cpp | 995 GateRef isIntKind = acc_.GetValueIn(gate, 2); in LowerMigrateFromRawValueToHeapValues() local 1041 BRANCH_CIR(isIntKind, &rawValueIsInt, &rawValueIsNumber); in LowerMigrateFromRawValueToHeapValues() 1081 GateRef isIntKind = acc_.GetValueIn(gate, 2); in LowerMigrateFromHeapValueToRawValue() local 1131 BRANCH_CIR(isIntKind, &convertToInt, &convertToDouble); in LowerMigrateFromHeapValueToRawValue()
|
H A D | mcr_circuit_builder.cpp | 2116 GateRef CircuitBuilder::MigrateFromRawValueToHeapValues(GateRef object, GateRef needCOW, GateRef isIntKind) in MigrateFromRawValueToHeapValues() argument 2123 { currentControl, currentDepend, object, needCOW, isIntKind }, in MigrateFromRawValueToHeapValues() 2130 GateRef CircuitBuilder::MigrateFromHeapValueToRawValue(GateRef object, GateRef needCOW, GateRef isIntKind) in MigrateFromHeapValueToRawValue() argument 2137 { currentControl, currentDepend, object, needCOW, isIntKind }, in MigrateFromHeapValueToRawValue()
|
H A D | circuit_builder.h | 813 GateRef MigrateFromRawValueToHeapValues(GateRef object, GateRef needCOW, GateRef isIntKind); 814 GateRef MigrateFromHeapValueToRawValue(GateRef object, GateRef needCOW, GateRef isIntKind);
|
H A D | stub_builder.h | 914 GateRef MigrateFromRawValueToHeapValues(GateRef glue, GateRef object, GateRef needCOW, GateRef isIntKind); 915 GateRef MigrateFromHeapValueToRawValue(GateRef glue, GateRef object, GateRef needCOW, GateRef isIntKind);
|
H A D | stub_builder.cpp | 9805 GateRef StubBuilder::MigrateFromRawValueToHeapValues(GateRef glue, GateRef object, GateRef needCOW, GateRef isIntKind) in MigrateFromRawValueToHeapValues() argument 9856 BRANCH(isIntKind, &rawValueIsInt, &rawValueIsNumber); in MigrateFromRawValueToHeapValues() 9890 GateRef StubBuilder::MigrateFromHeapValueToRawValue(GateRef glue, GateRef object, GateRef needCOW, GateRef isIntKind) in MigrateFromHeapValueToRawValue() argument 9943 BRANCH(isIntKind, &convertToInt, &convertToDouble); in MigrateFromHeapValueToRawValue()
|
Completed in 29 milliseconds