Searched refs:opcodes (Results 1 – 6 of 6) sorted by relevance
/art/compiler/dwarf/ |
D | dwarf_test.cc | 46 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 …]
|
D | headers.h | 43 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/ |
D | elf_writer_debug.cc | 43 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/ |
D | info.txt | 1 A forked and extended version of IntMath from 003-omnibus-opcodes. 2 TODO: fold back into 003-omnibus-opcodes.
|
/art/test/427-bitwise/ |
D | info.txt | 1 Tests for the and/or/xor opcodes.
|
/art/test/003-omnibus-opcodes/ |
D | info.txt | 1 This is a smoke test of many Dalvik opcodes.
|