Home
last modified time | relevance | path

Searched refs:opcodes (Results 1 – 6 of 6) sorted by relevance

/art/compiler/dwarf/
Ddwarf_test.cc46 DebugFrameOpCodeWriter<> opcodes; in TEST_F() local
51 opcodes.AdvancePC(pc); in TEST_F()
60 opcodes.DefCFA(reg, offset); in TEST_F()
62 opcodes.DefCFA(reg, -offset); in TEST_F()
64 opcodes.DefCFARegister(reg); in TEST_F()
66 opcodes.DefCFAOffset(offset); in TEST_F()
68 opcodes.DefCFAOffset(-offset); in TEST_F()
71 opcodes.DefCFAExpression(expr, arraysize(expr)); in TEST_F()
73 opcodes.Undefined(reg); in TEST_F()
75 opcodes.SameValue(reg); in TEST_F()
[all …]
Dheaders.h43 const DebugFrameOpCodeWriter<Allocator>& opcodes, in WriteDebugFrameCIE() argument
71 writer.PushData(opcodes.data()); in WriteDebugFrameCIE()
80 const std::vector<uint8_t, Allocator>* opcodes, in WriteDebugFrameFDE() argument
104 writer.PushData(opcodes); in WriteDebugFrameFDE()
141 const DebugLineOpCodeWriter<Allocator>& opcodes, in WriteDebugLineTable() argument
153 writer.PushUint8(1 << opcodes.GetCodeFactorBits()); in WriteDebugLineTable()
176 writer.PushData(opcodes.data()); in WriteDebugLineTable()
179 for (uintptr_t patch_location : opcodes.GetPatchLocations()) { in WriteDebugLineTable()
/art/compiler/
Delf_writer_debug.cc43 DebugFrameOpCodeWriter<> opcodes; in WriteDebugFrameCIE() local
44 opcodes.DefCFA(Reg::ArmCore(13), 0); // R13(SP). in WriteDebugFrameCIE()
48 opcodes.Undefined(Reg::ArmCore(reg)); in WriteDebugFrameCIE()
50 opcodes.SameValue(Reg::ArmCore(reg)); in WriteDebugFrameCIE()
56 opcodes.Undefined(Reg::ArmFp(reg)); in WriteDebugFrameCIE()
58 opcodes.SameValue(Reg::ArmFp(reg)); in WriteDebugFrameCIE()
63 opcodes, format, eh_frame); in WriteDebugFrameCIE()
67 DebugFrameOpCodeWriter<> opcodes; in WriteDebugFrameCIE() local
68 opcodes.DefCFA(Reg::Arm64Core(31), 0); // R31(SP). in WriteDebugFrameCIE()
72 opcodes.Undefined(Reg::Arm64Core(reg)); in WriteDebugFrameCIE()
[all …]
/art/test/107-int-math2/
Dinfo.txt1 A forked and extended version of IntMath from 003-omnibus-opcodes.
2 TODO: fold back into 003-omnibus-opcodes.
/art/test/427-bitwise/
Dinfo.txt1 Tests for the and/or/xor opcodes.
/art/test/003-omnibus-opcodes/
Dinfo.txt1 This is a smoke test of many Dalvik opcodes.