Home
last modified time | relevance | path

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

/art/tools/jvmti-agents/titrace/
Dinstruction_decoder.cc31 Bytecode::Opcode op = static_cast<Bytecode::Opcode>(opcode); in GetName()
32 return Bytecode::ToString(op); in GetName()
40 class Bytecode { class in titrace::ClassInstructionDecoder
252 static const char* ToString(Bytecode::Opcode op) { in ToString()
474 Bytecode::Opcode op = static_cast<Bytecode::Opcode>(opcode); in GetName()
475 return Bytecode::ToString(op); in GetName()
484 class Bytecode { class in titrace::DexInstructionDecoder
493 static_assert(static_cast<uint32_t>(Bytecode::Opcode::NOP) == 0, "");
494 static_assert(static_cast<uint32_t>(Bytecode::Opcode::MOVE) == 1, "");
496 static const char* ToString(Bytecode::Opcode op) { in ToString()
/art/tools/jvmti-agents/simple-force-redefine/
Dforceredefine.cc109 bool Visit(lir::Bytecode* bc) override { in Transform()
114 auto new_inst = cir_->Alloc<lir::Bytecode>(); in Transform()