Home
last modified time | relevance | path

Searched refs:HeapAlloc (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dntype_mcr_lowering.cpp140 …GateRef array = builder_.HeapAlloc(size, GateType::TaggedValue(), RegionSpaceFlag::IN_YOUNG_SPACE); in NewJSArrayLiteral()
162 …GateRef elements = builder_.HeapAlloc(elementsSize, GateType::TaggedValue(), RegionSpaceFlag::IN_Y… in NewTaggedArray()
Dnew_object_stub_builder.h54 void HeapAlloc(Variable *result, Label *exit, RegionSpaceFlag spaceType);
Dnew_object_stub_builder.cpp277 HeapAlloc(result, &initializeArray, spaceType); in NewJSArrayLiteral()
310 void NewObjectStubBuilder::HeapAlloc(Variable *result, Label *exit, RegionSpaceFlag spaceType) in HeapAlloc() function in panda::ecmascript::kungfu::NewObjectStubBuilder
Dgate_meta_data.h345 V(HeapAlloc, HEAP_ALLOC, GateFlags::NONE_FLAG, 1, 1, 1) \
Dcircuit_builder.cpp1593 GateRef CircuitBuilder::HeapAlloc(GateRef size, GateType type, RegionSpaceFlag flag) in HeapAlloc() function in panda::ecmascript::kungfu::CircuitBuilder
1598 auto ret = GetCircuit()->NewGate(circuit_->HeapAlloc(flag), MachineType::ANYVALUE, in HeapAlloc()
Dcircuit_builder.h622 GateRef HeapAlloc(GateRef size, GateType type, RegionSpaceFlag flag);
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
Dlowering_relate_gate_test.cpp103 auto array = builder.HeapAlloc(arg0, GateType::AnyType(), RegionSpaceFlag::IN_YOUNG_SPACE); in HWTEST_F_L0()