Searched defs:line (Results 1 - 9 of 9) sorted by relevance

/art/runtime/base/
H A Dlogging.cc65 // Stash the command line for later use. We can use /proc/self/cmdline on Linux to recover this,
122 LogMessageData::LogMessageData(const char* file, int line, LogSeverity severity, int error) argument
124 line_number(line),
H A Dlogging.h194 LogMessageData(const char* file, int line, LogSeverity severity, int error);
207 LogMessage(const char* file, int line, LogSeverity severity, int error) argument
208 : data_(new LogMessageData(file, line, severity, error)) {
301 // and the "-verbose:" command line argument.
/art/compiler/dex/quick/
H A Dresource_mask.cc53 // This should be a two-dimensions array, kSingleRegMasks[][32] and each line should be
62 // NOTE: Each line is 512B of constant data, 3KiB in total.
129 constexpr bool CheckTwoRegsMaskLine(size_t line, size_t lower = 0u) { argument
130 return (lower == line) ||
131 (CheckTwoRegsMask(line, lower) && CheckTwoRegsMaskLine(line, lower + 1u));
/art/compiler/dex/
H A Dverified_method.cc129 verifier::RegisterLine* line = method_verifier->GetRegLine(i); local
130 line->WriteReferenceBitMap(dex_gc_map_, ref_bitmap_bytes);
152 verifier::RegisterLine* line = method_verifier->GetRegLine(i); local
154 if (line->GetRegisterType(j).IsNonZeroReferenceTypes()) {
160 // If a register doesn't contain a reference then the bitmap may be shorter than the line.
180 verifier::RegisterLine* line = method_verifier->GetRegLine(i); local
181 max_ref_reg = line->GetMaxNonZeroReferenceReg(max_ref_reg);
216 verifier::RegisterLine* line = method_verifier->GetRegLine(dex_pc); local
220 reg_type(line->GetRegisterType(is_range ? inst->VRegC_3rc() : inst->VRegC_35c()));
284 const verifier::RegisterLine* line local
[all...]
/art/compiler/
H A Dcommon_compiler_test.cc79 std::string line; local
80 std::getline(in, line);
82 if (line.find("Features") != std::string::npos) {
83 if (line.find("idivt") != std::string::npos) {
/art/compiler/utils/
H A Dassembler_test.h247 std::string line = FindTool(GetAssemblerCmdName()); local
248 if (line.length() == 0) {
249 return line;
252 resolved_assembler_cmd_ = line + GetAssemblerParameters();
254 return line;
274 std::string line = FindTool(GetObjdumpCmdName()); local
275 if (line.length() == 0) {
276 return line;
279 resolved_objdump_cmd_ = line + GetObjdumpParameters();
281 return line;
300 std::string line = FindTool(GetDisassembleCmdName()); local
437 std::string line; local
672 std::string line; local
[all...]
/art/runtime/
H A Dprofiler.cc719 // Read a single line into the given string. Returns true if everything OK, false
721 static bool ReadProfileLine(int fd, std::string& line) { argument
723 line.clear();
732 line += buf[0];
741 std::string line; local
743 // The first line contains summary information.
744 if (!ReadProfileLine(fd, line)) {
748 Split(line, '/', summary_info);
757 // Now read each line until the end of file. Each line consist
819 std::string line; local
[all...]
H A Ddex_file.cc706 // "line number == -2" is how libcore tells from StackTraceElement.
714 // A method with no line number info should return -1
757 uint32_t line = DecodeUnsignedLeb128(&stream); local
825 line += DecodeSignedLeb128(&stream);
903 line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE);
906 if (position_cb(context, address, line)) {
940 // The line number from the previous positions callback
/art/runtime/verifier/
H A Dmethod_verifier.cc1343 * Sanity check: retrieve the stored register line (assuming
1373 * down the line, possibly in the verifier.
1423 monitor_enter_dex_pcs_->clear(); // The new work line is more accurate than the previous one.
1473 // We need to ensure the work line is consistent while performing validation. When we spot a
1474 // peephole pattern we compute a new line for either the fallthrough instruction or the
2890 // needed. If the merge changes the state of the registers then the work line will be
4089 RegisterLine* line = reg_table_.GetLine(dex_pc); local
4090 DCHECK(line != nullptr) << "No register line at DEX pc " << StringPrintf("0x%x", dex_pc);
4092 for (size_t i = 0; i < line
[all...]

Completed in 2499 milliseconds