Searched refs:opcodes (Results 1 – 12 of 12) sorted by relevance
/art/compiler/debug/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<Vector>& opcodes, in WriteCIE() argument 73 writer.PushData(opcodes.data()); in WriteCIE() 85 const ArrayRef<const uint8_t>& opcodes, in WriteFDE() argument 120 writer.PushData(opcodes.data(), opcodes.size()); in WriteFDE() 161 const DebugLineOpCodeWriter<Vector>& opcodes, in WriteDebugLineTable() argument 173 writer.PushUint8(1 << opcodes.GetCodeFactorBits()); in WriteDebugLineTable() 196 writer.PushData(opcodes.data()); in WriteDebugLineTable() 199 for (uintptr_t patch_location : opcodes.GetPatchLocations()) { in WriteDebugLineTable()
|
/art/compiler/debug/ |
D | elf_debug_frame_writer.h | 42 dwarf::DebugFrameOpCodeWriter<> opcodes; in WriteCIE() local 43 opcodes.DefCFA(Reg::ArmCore(13), 0); // R13(SP). in WriteCIE() 47 opcodes.Undefined(Reg::ArmCore(reg)); in WriteCIE() 49 opcodes.SameValue(Reg::ArmCore(reg)); in WriteCIE() 55 opcodes.Undefined(Reg::ArmFp(reg)); in WriteCIE() 57 opcodes.SameValue(Reg::ArmFp(reg)); in WriteCIE() 61 WriteCIE(is64bit, return_reg, opcodes, format, buffer); in WriteCIE() 65 dwarf::DebugFrameOpCodeWriter<> opcodes; in WriteCIE() local 66 opcodes.DefCFA(Reg::Arm64Core(31), 0); // R31(SP). in WriteCIE() 70 opcodes.Undefined(Reg::Arm64Core(reg)); in WriteCIE() [all …]
|
D | elf_debug_line_writer.h | 86 dwarf::DebugLineOpCodeWriter<> opcodes(is64bit, code_factor_bits_); in WriteCompilationUnit() 168 opcodes.SetAddress(method_address); in WriteCompilationUnit() 170 opcodes.SetISA(dwarf_isa); in WriteCompilationUnit() 216 opcodes.SetFile(file_index); in WriteCompilationUnit() 245 opcodes.SetIsStmt(false); in WriteCompilationUnit() 246 opcodes.AddRow(method_address, first_line); in WriteCompilationUnit() 247 opcodes.SetPrologueEnd(); in WriteCompilationUnit() 249 opcodes.SetIsStmt(default_is_stmt); in WriteCompilationUnit() 250 opcodes.AddRow(method_address + pc, line); in WriteCompilationUnit() 251 } else if (line != opcodes.CurrentLine()) { in WriteCompilationUnit() [all …]
|
/art/runtime/interpreter/mterp/ |
D | gen_mterp.py | 196 index = opcodes.index(tokens[1]) 216 index = opcodes.index(tokens[1]) 255 opcodes = [] 262 opcodes.append("op_" + match.group(2).lower()) 265 if len(opcodes) != kNumPackedOpcodes: 267 % (len(opcodes), kNumPackedOpcodes) 269 return opcodes 280 assert len(opcodes) == kNumPackedOpcodes 292 op = opcodes[i] 335 op = opcodes[opindex] [all …]
|
D | README.txt | 85 opcodes are emitted when this is seen, followed by any code that 91 Typically the form in which most opcodes currently exist is used in
|
/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.
|
/art/test/955-lambda-smali/smali/ |
D | BoxUnbox.smali | 90 # Test exceptions are thrown as expected when used opcodes incorrectly 112 # Test exceptions are thrown as expected when used opcodes incorrectly 135 # Test exceptions are thrown as expected when used opcodes incorrectly
|
D | TrivialHelloWorld.smali | 75 # Test exceptions are thrown as expected when used opcodes incorrectly
|
D | CaptureVariables.smali | 292 # Test exceptions are thrown as expected when used opcodes incorrectly
|