Home
last modified time | relevance | path

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

/art/disassembler/
Ddisassembler_x86.cc162 uint8_t* prefix, bool load, RegFile src_reg_file, in DumpAddress() argument
228 prefix[2], load ? src_reg_file : dst_reg_file); in DumpAddress()
249 uint8_t prefix[4] = {0, 0, 0, 0}; in DumpInstruction() local
256 prefix[0] = *instr; in DumpInstruction()
265 prefix[1] = *instr; in DumpInstruction()
269 prefix[2] = *instr; in DumpInstruction()
273 prefix[3] = *instr; in DumpInstruction()
408 if (prefix[0] == 0xF2) { in DumpInstruction()
410 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode in DumpInstruction()
411 } else if (prefix[0] == 0xF3) { in DumpInstruction()
[all …]
Ddisassembler_x86.h39 bool byte_operand, bool byte_second_operand, uint8_t* prefix, bool load,
/art/runtime/base/
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()
Dbit_vector.cc333 void BitVector::Dump(std::ostream& os, const char *prefix) const { in Dump()
335 DumpHelper(prefix, buffer); in Dump()
339 void BitVector::DumpHelper(const char* prefix, std::ostringstream& buffer) const { in DumpHelper() argument
341 if (prefix != nullptr) { in DumpHelper()
342 buffer << prefix; in DumpHelper()
Dbit_vector.h239 void Dump(std::ostream& os, const char* prefix) const;
248 void DumpHelper(const char* prefix, std::ostringstream& buffer) const;
/art/runtime/
Dutils.cc937 bool StartsWith(const std::string& s, const char* prefix) { in StartsWith() argument
938 return s.compare(0, strlen(prefix), prefix) == 0; in StartsWith()
1028 static inline void WritePrefix(std::ostream* os, const char* prefix, bool odd) { in WritePrefix() argument
1029 if (prefix != nullptr) { in WritePrefix()
1030 *os << prefix; in WritePrefix()
1038 static bool RunCommand(std::string cmd, std::ostream* os, const char* prefix) { in RunCommand() argument
1057 WritePrefix(os, prefix, odd_line); in RunCommand()
1065 WritePrefix(os, prefix, odd_line); in RunCommand()
1086 const char* prefix) { in Addr2line() argument
1089 RunCommand(cmdline.c_str(), &os, prefix); in Addr2line()
[all …]
Dutils.h103 bool StartsWith(const std::string& s, const char* prefix);
223 void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix = "",
228 void DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix = "", bool include_count = tru…
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)
Dstack_map.cc204 const std::string& prefix = "v", in DumpRegisterMapping() argument
206 os << " " << prefix << dex_register_num << ": " in DumpRegisterMapping()
/art/compiler/dex/
Dpass_driver_me.h146 std::string prefix = GetDumpCFGFolder(); in RunPass() local
147 prefix += passFolder; in RunPass()
148 prefix += "/"; in RunPass()
150 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/tools/
Dchecker.py542 def __init__(self, prefix, checkStream, fileName=None): argument
544 self.prefix = prefix
550 def _extractLine(self, prefix, line): argument
556 prefix + r":"
573 startLine = self._extractLine(self.prefix + "-START", line)
578 plainLine = self._extractLine(self.prefix, line)
583 dagLine = self._extractLine(self.prefix + "-DAG", line)
588 notLine = self._extractLine(self.prefix + "-NOT", line)
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:]
3705 prefix = line[:matched.start()]
3706 if prefix.endswith('std::') or not prefix.endswith('::'):
/art/compiler/optimizing/
Dliveness_test.cc37 const char* prefix) { in DumpBitVector() argument
38 buffer << prefix; in DumpBitVector()
/art/compiler/dex/quick/x86/
Dassemble_x86.cc338 #define EXT_0F_ENCODING_MAP(opname, prefix, opcode, reg_def) \ argument
339 { kX86 ## opname ## RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0…
340 { kX86 ## opname ## RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0…
341 { kX86 ## opname ## RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE12, { prefix, 0, 0x0…
345 #define EXT_0F_R8_FORM_ENCODING_MAP(opname, prefix, opcode, reg_def) \ argument
346 { kX86 ## opname ## RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0…
347 { kX86 ## opname ## RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0…
348 { kX86 ## opname ## RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE12, { prefix, 0, 0x0…
350 #define EXT_0F_REX_W_ENCODING_MAP(opname, prefix, opcode, reg_def) \ argument
351 { kX86 ## opname ## RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE1, { prefix, REX_W,…
[all …]
Dcodegen_x86.h160 void DumpResourceMask(LIR* lir, const ResourceMask& mask, const char* prefix) OVERRIDE;
Dtarget_x86.cc422 void X86Mir2Lir::DumpResourceMask(LIR *x86LIR, const ResourceMask& mask, const char *prefix) { in DumpResourceMask() argument
460 LOG(INFO) << prefix << ": " << buf; in DumpResourceMask()
/art/compiler/dex/quick/arm64/
Dtarget_arm64.cc546 void Arm64Mir2Lir::DumpResourceMask(LIR* arm_lir, const ResourceMask& mask, const char* prefix) { in DumpResourceMask() argument
588 LOG(INFO) << prefix << ": " << buf; in DumpResourceMask()
Dcodegen_arm64.h116 void DumpResourceMask(LIR* lir, const ResourceMask& mask, const char* prefix) OVERRIDE;
/art/compiler/dex/quick/arm/
Dtarget_arm.cc515 void ArmMir2Lir::DumpResourceMask(LIR* arm_lir, const ResourceMask& mask, const char* prefix) { in DumpResourceMask() argument
557 LOG(INFO) << prefix << ": " << buf; in DumpResourceMask()
Dcodegen_arm.h128 void DumpResourceMask(LIR* lir, const ResourceMask& mask, const char* prefix) OVERRIDE;
/art/compiler/dex/quick/mips/
Dtarget_mips.cc465 void MipsMir2Lir::DumpResourceMask(LIR *mips_lir, const ResourceMask& mask, const char *prefix) { in DumpResourceMask() argument
506 LOG(INFO) << prefix << ": " << buf; in DumpResourceMask()
Dcodegen_mips.h127 void DumpResourceMask(LIR* lir, const ResourceMask& mask, const char* prefix) OVERRIDE;
/art/cmdline/
DREADME.md85 `-orange:` prefix and then strip it, leaving only the remains to be parsed.
/art/compiler/dex/quick/
Dmir_to_lir.h1259 virtual void DumpResourceMask(LIR* lir, const ResourceMask& mask, const char* prefix) = 0;