Home
last modified time | relevance | path

Searched refs:IndexedOperand (Results 1 – 3 of 3) sorted by relevance

/tools/dexter/slicer/export/slicer/
Dcode_ir.h186 struct IndexedOperand : public Operand { struct
189 explicit IndexedOperand(dex::u4 index) : index(index) {} in IndexedOperand() function
192 struct String : public IndexedOperand {
195 String(ir::String* ir_string, dex::u4 index) : IndexedOperand(index), ir_string(ir_string) {} in String()
200 struct Type : public IndexedOperand {
203 Type(ir::Type* ir_type, dex::u4 index) : IndexedOperand(index), ir_type(ir_type) {} in Type()
208 struct Field : public IndexedOperand {
211 Field(ir::FieldDecl* ir_field, dex::u4 index) : IndexedOperand(index), ir_field(ir_field) {} in Field()
216 struct Method : public IndexedOperand {
219 Method(ir::MethodDecl* ir_method, dex::u4 index) : IndexedOperand(index), ir_method(ir_method) { in Method()
[all …]
/tools/dexter/slicer/
Dbytecode_encoder.cc334 dex::u4 C = bytecode->CastOperand<IndexedOperand>(2)->index; in Visit()
343 dex::u4 B = bytecode->CastOperand<IndexedOperand>(1)->index; in Visit()
352 dex::u4 B = bytecode->CastOperand<IndexedOperand>(1)->index; in Visit()
362 dex::u4 B = bytecode->CastOperand<IndexedOperand>(1)->index; in Visit()
384 dex::u4 B = bytecode->CastOperand<IndexedOperand>(1)->index; in Visit()
413 dex::u4 B = bytecode->CastOperand<IndexedOperand>(1)->index; in Visit()
414 dex::u4 H = bytecode->CastOperand<IndexedOperand>(2)->index; in Visit()
436 dex::u4 B = bytecode->CastOperand<IndexedOperand>(1)->index; in Visit()
438 dex::u4 H = bytecode->CastOperand<IndexedOperand>(2)->index; in Visit()
Dcode_ir.cc628 IndexedOperand* CodeIr::GetIndexedOperand(dex::InstructionIndexType index_type, in GetIndexedOperand()
657 IndexedOperand* CodeIr::GetSecondIndexedOperand(dex::InstructionIndexType index_type, in GetSecondIndexedOperand()