Searched refs:CodeLocation (Results 1 – 5 of 5) sorted by relevance
64 struct CodeLocation;95 virtual bool Visit(CodeLocation* location) { return false; } in Visit()232 struct CodeLocation : public Operand { struct235 explicit CodeLocation(Label* label) : label(label) {} in CodeLocation() function
213 auto label = bytecode->CastOperand<CodeLocation>(0)->label; in Visit()230 auto label = bytecode->CastOperand<CodeLocation>(0)->label; in Visit()248 auto label = bytecode->CastOperand<CodeLocation>(1)->label; in Visit()267 auto label = bytecode->CastOperand<CodeLocation>(2)->label; in Visit()285 auto label = bytecode->CastOperand<CodeLocation>(1)->label; in Visit()
485 instr->operands.push_back(Alloc<CodeLocation>(label)); in DecodeBytecode()494 instr->operands.push_back(Alloc<CodeLocation>(label)); in DecodeBytecode()522 instr->operands.push_back(Alloc<CodeLocation>(label)); in DecodeBytecode()
38 virtual bool Visit(lir::CodeLocation* location) override;
108 bool PrintCodeIrVisitor::Visit(lir::CodeLocation* target) { in Visit()