Searched refs:stackSlot (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/x64/ |
H A D | macro_assembler_x64.cpp | 41 void MacroAssemblerX64::Cmp(const StackSlotOperand &stackSlot, Immediate value) in Cmp() argument 43 x64::Register baseReg = (stackSlot.IsFrameBase()) ? x64::rbp : x64::rsp; in Cmp() 44 x64::Operand opnd(baseReg, stackSlot.GetOffset()); in Cmp()
|
H A D | macro_assembler_x64.h | 39 void Cmp(const StackSlotOperand &stackSlot, Immediate value) override;
|
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/ |
H A D | macro_assembler.h | 78 virtual void Cmp(const StackSlotOperand &stackSlot, Immediate value) = 0;
|
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/ |
H A D | macro_assembler_aarch64.cpp | 58 void MacroAssemblerAArch64::Cmp(const StackSlotOperand &stackSlot, Immediate value) in Cmp() argument 60 aarch64::Register baseReg = (stackSlot.IsFrameBase()) ? aarch64::Register(aarch64::FP) : in Cmp() 62 aarch64::MemoryOperand opnd(baseReg, static_cast<int64_t>(stackSlot.GetOffset())); in Cmp()
|
H A D | macro_assembler_aarch64.h | 44 void Cmp(const StackSlotOperand &stackSlot, Immediate value) override;
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | reg_alloc_lsra.h | 130 return stackSlot; in GetStackSlot() 135 stackSlot = newStkSlot; in SetStackSlot() 281 uint32 stackSlot = -1; member in maplebe::LSRALinearScanRegAllocator::LiveInterval
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | inst_generator.cpp | 237 int stackSlot = 0; in PopulateStoreArrayPair() local 238 auto array = CreateParamInst(graph, DataType::REFERENCE, stackSlot++); in PopulateStoreArrayPair() 241 index = CreateParamInst(graph, DataType::INT32, stackSlot++); in PopulateStoreArrayPair() 243 auto val1 = CreateParamInst(graph, inst->GetType(), stackSlot++); in PopulateStoreArrayPair() 244 auto val2 = CreateParamInst(graph, inst->GetType(), stackSlot++); in PopulateStoreArrayPair()
|
Completed in 7 milliseconds