Home
last modified time | relevance | path

Searched refs:prefix (Results 1 – 21 of 21) sorted by relevance

/art/disassembler/
Ddisassembler_x86.cc159 uint8_t prefix[4] = {0, 0, 0, 0}; in DumpInstruction() local
167 prefix[0] = *instr; in DumpInstruction()
176 prefix[1] = *instr; in DumpInstruction()
180 prefix[2] = *instr; in DumpInstruction()
184 prefix[3] = *instr; in DumpInstruction()
309 if (prefix[0] == 0xF2) { in DumpInstruction()
311 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode in DumpInstruction()
312 } else if (prefix[0] == 0xF3) { in DumpInstruction()
314 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode in DumpInstruction()
315 } else if (prefix[2] == 0x66) { in DumpInstruction()
[all …]
/art/runtime/base/
Dbit_vector.cc397 void BitVector::Dump(std::ostream& os, const char *prefix) const { in Dump()
399 DumpHelper(prefix, buffer); in Dump()
417 void BitVector::DumpDot(FILE* file, const char* prefix, bool last_entry) const { in DumpDot() argument
419 DumpHelper(prefix, buffer); in DumpDot()
423 void BitVector::DumpIndicesDot(FILE* file, const char* prefix, bool last_entry) const { in DumpIndicesDot() argument
425 DumpIndicesHelper(prefix, buffer); in DumpIndicesDot()
429 void BitVector::DumpIndicesHelper(const char* prefix, std::ostringstream& buffer) const { in DumpIndicesHelper() argument
431 if (prefix != nullptr) { in DumpIndicesHelper()
432 buffer << prefix; in DumpIndicesHelper()
442 void BitVector::DumpHelper(const char* prefix, std::ostringstream& buffer) const { in DumpHelper() argument
[all …]
Dbit_vector.h209 void Dump(std::ostream& os, const char* prefix) const;
215 void DumpDot(FILE* file, const char* prefix, bool last_entry = false) const;
221 void DumpIndicesDot(FILE* file, const char* prefix, bool last_entry = false) const;
228 void DumpHelper(const char* prefix, std::ostringstream& buffer) const;
234 void DumpIndicesHelper(const char* prefix, std::ostringstream& buffer) const;
Dhex_dump.h32 HexDump(const void* address, size_t byte_count, bool show_actual_addresses, const char* prefix) in HexDump() argument
34 prefix_(prefix) { in HexDump()
/art/compiler/dex/
Dpass_driver_me.h132 std::string prefix = GetDumpCFGFolder(); in RunPass() local
133 prefix += passFolder; in RunPass()
134 prefix += "/"; in RunPass()
136 c_unit->mir_graph->DumpCFG(prefix.c_str(), false); in RunPass()
/art/test/005-annotations/src/android/test/anno/
DTestAnnotations.java14 static private void printAnnotationArray(String prefix, Annotation[] arr) { in printAnnotationArray() argument
23 System.out.println(prefix + " " + a); in printAnnotationArray()
24 System.out.println(prefix + " " + a.annotationType()); in printAnnotationArray()
/art/runtime/
Dutils.cc973 bool StartsWith(const std::string& s, const char* prefix) { in StartsWith() argument
974 return s.compare(0, strlen(prefix), prefix) == 0; in StartsWith()
1065 void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix, in DumpNativeStack() argument
1074 os << prefix << "(backtrace::Unwind failed for thread " << tid << ")\n"; in DumpNativeStack()
1077 os << prefix << "(no native stack frames for thread " << tid << ")\n"; in DumpNativeStack()
1091 os << prefix << StringPrintf("#%02zu pc ", it->num); in DumpNativeStack()
1123 void DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix, bool include_count) { in DumpKernelStack() argument
1132 os << prefix << "(couldn't read " << kernel_stack_filename << ")\n"; in DumpKernelStack()
1149 os << prefix; in DumpKernelStack()
Dentrypoints_order_test.cc48 #define EXPECT_OFFSET_DIFFP(type, prefix, first_field, second_field, diff) \ argument
49 EXPECT_OFFSET_DIFF(type, prefix . first_field, type, prefix . second_field, diff, \
50 type ## _ ## prefix ## _ ## first_field ## _ ## second_field)
Dutils.h310 bool StartsWith(const std::string& s, const char* prefix);
477 void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix = "",
482 void DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix = "", bool include_count = tru…
/art/compiler/optimizing/
Dliveness_test.cc33 const char* prefix) { in DumpBitVector() argument
34 buffer << prefix; in DumpBitVector()
/art/compiler/dex/quick/x86/
Dassemble_x86.cc326 #define EXT_0F_ENCODING_MAP(opname, prefix, opcode, reg_def) \ argument
327 { kX86 ## opname ## RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0…
328 { kX86 ## opname ## RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0…
329 { kX86 ## opname ## RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE12, { prefix, 0, 0x0…
333 #define EXT_0F_R8_FORM_ENCODING_MAP(opname, prefix, opcode, reg_def) \ argument
334 { kX86 ## opname ## RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0…
335 { kX86 ## opname ## RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0…
336 { kX86 ## opname ## RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE12, { prefix, 0, 0x0…
338 #define EXT_0F_REX_W_ENCODING_MAP(opname, prefix, opcode, reg_def) \ argument
339 { kX86 ## opname ## RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE1, { prefix, REX_W,…
[all …]
Dcodegen_x86.h131 void DumpResourceMask(LIR* lir, const ResourceMask& mask, const char* prefix) OVERRIDE;
Dtarget_x86.cc397 void X86Mir2Lir::DumpResourceMask(LIR *x86LIR, const ResourceMask& mask, const char *prefix) { in DumpResourceMask() argument
435 LOG(INFO) << prefix << ": " << buf; in DumpResourceMask()
/art/compiler/dex/quick/mips/
Dtarget_mips.cc287 void MipsMir2Lir::DumpResourceMask(LIR *mips_lir, const ResourceMask& mask, const char *prefix) { in DumpResourceMask() argument
328 LOG(INFO) << prefix << ": " << buf; in DumpResourceMask()
Dcodegen_mips.h72 void DumpResourceMask(LIR* lir, const ResourceMask& mask, const char* prefix) OVERRIDE;
/art/tools/
Dcpplint.py777 prefix = os.path.commonprefix([root_dir, project_dir])
778 return fullname[len(prefix) + 1:]
792 prefix = os.path.commonprefix([root_dir, project_dir])
795 return "art/" + fullname[len(prefix) + 1:]
3698 prefix = line[:matched.start()]
3699 if prefix.endswith('std::') or not prefix.endswith('::'):
/art/compiler/dex/quick/arm/
Dtarget_arm.cc491 void ArmMir2Lir::DumpResourceMask(LIR* arm_lir, const ResourceMask& mask, const char* prefix) { in DumpResourceMask() argument
533 LOG(INFO) << prefix << ": " << buf; in DumpResourceMask()
Dcodegen_arm.h72 void DumpResourceMask(LIR* lir, const ResourceMask& mask, const char* prefix) OVERRIDE;
/art/compiler/dex/quick/arm64/
Dtarget_arm64.cc520 void Arm64Mir2Lir::DumpResourceMask(LIR* arm_lir, const ResourceMask& mask, const char* prefix) { in DumpResourceMask() argument
562 LOG(INFO) << prefix << ": " << buf; in DumpResourceMask()
Dcodegen_arm64.h125 void DumpResourceMask(LIR* lir, const ResourceMask& mask, const char* prefix) OVERRIDE;
/art/compiler/dex/quick/
Dmir_to_lir.h1240 virtual void DumpResourceMask(LIR* lir, const ResourceMask& mask, const char* prefix) = 0;