Home
last modified time | relevance | path

Searched refs:SymbolOperand (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Dcfi.h179 class SymbolOperand : public maplebe::OperandVisitable<SymbolOperand> {
181SymbolOperand(maple::MIRSymbol &mirSymbol, uint8 size) : OperandVisitable(kOpdStImmediate, size), … in SymbolOperand() function
184 ~SymbolOperand() = default;
185 using OperandVisitable<SymbolOperand>::OperandVisitable;
189 Operand *opnd = memPool.Clone<SymbolOperand>(*this); in Clone()
278 … public maplebe::OperandVisitors<RegOperand, ImmOperand, SymbolOperand, StrOperand, LabelOperand> {
289 void Visit(SymbolOperand *v) final;
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Dcfi.cpp96 void CFIOpndEmitVisitor::Visit(SymbolOperand *v) in Visit()