Searched defs:debug_info (Results 1 - 20 of 20) sorted by relevance

/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFTypeUnit.cpp16 bool DWARFTypeUnit::extractImpl(DataExtractor debug_info, argument
18 if (!DWARFUnit::extractImpl(debug_info, offset_ptr))
20 TypeHash = debug_info.getU64(offset_ptr);
21 TypeOffset = debug_info.getU32(offset_ptr);
H A DDWARFUnit.cpp76 bool DWARFUnit::extractImpl(DataExtractor debug_info, uint32_t *offset_ptr) { argument
77 Length = debug_info.getU32(offset_ptr);
78 Version = debug_info.getU16(offset_ptr);
79 uint64_t AbbrOffset = debug_info.getU32(offset_ptr);
91 AddrSize = debug_info.getU8(offset_ptr);
93 bool LengthOK = debug_info.isValidOffset(getNextUnitOffset() - 1);
104 bool DWARFUnit::extract(DataExtractor debug_info, uint32_t *offset_ptr) { argument
109 if (debug_info.isValidOffset(*offset_ptr)) {
110 if (extractImpl(debug_info, offset_ptr))
/external/vboot_reference/tests/
H A Dvboot_display_tests.c31 static char debug_info[4096]; variable
85 *debug_info = 0;
92 strncpy(debug_info, info_str, sizeof(debug_info));
93 debug_info[sizeof(debug_info) - 1] = '\0';
140 TEST_NEQ(*debug_info, '\0', "Some debug info was displayed");
176 TEST_EQ(*debug_info, '\0', "DisplayKey q = does nothing");
181 TEST_NEQ(*debug_info, '\0', "DisplayKey tab = display");
H A Dtlcl_tests.c24 static char debug_info[4096]; variable
50 *debug_info = 0;
/external/v8/src/wasm/
H A Dwasm-debug.cc26 ByteArray *GetOrCreateFunctionOffsetTable(Handle<WasmDebugInfo> debug_info) { argument
27 Object *offset_table = debug_info->get(kWasmDebugInfoFunctionByteOffsets);
28 Isolate *isolate = debug_info->GetIsolate();
35 wasm::GetWasmBytes(debug_info->wasm_object());
51 debug_info->set(kWasmDebugInfoFunctionByteOffsets, arr);
56 std::pair<int, int> GetFunctionOffsetAndLength(Handle<WasmDebugInfo> debug_info, argument
58 ByteArray *arr = GetOrCreateFunctionOffsetTable(debug_info);
68 Vector<const uint8_t> GetFunctionBytes(Handle<WasmDebugInfo> debug_info, argument
71 wasm::GetWasmBytes(debug_info->wasm_object());
73 GetFunctionOffsetAndLength(debug_info, func_inde
125 DisassembleFunction( Handle<WasmDebugInfo> debug_info, int func_index) argument
150 GetFunctionOffsetTable( Handle<WasmDebugInfo> debug_info, int func_index) argument
[all...]
/external/v8/src/
H A Dperf-jit.cc274 PerfJitCodeDebugInfo debug_info; local
276 debug_info.event_ = PerfJitCodeLoad::kDebugInfo;
277 debug_info.time_stamp_ = GetTimestamp();
278 debug_info.address_ = reinterpret_cast<uint64_t>(code->instruction_start());
279 debug_info.entry_count_ = entry_count;
281 uint32_t size = sizeof(debug_info);
289 debug_info.size_ = size + padding;
291 LogWriteBytes(reinterpret_cast<const char*>(&debug_info), sizeof(debug_info));
H A Dfactory.cc2249 Handle<DebugInfo> debug_info = local
2251 debug_info->set_shared(*shared);
2255 debug_info->set_abstract_code(AbstractCode::cast(shared->bytecode_array()));
2257 debug_info->set_abstract_code(AbstractCode::cast(shared->code()));
2259 debug_info->set_break_points(*break_points);
2264 debug_info->set_abstract_code(AbstractCode::cast(*copy));
2268 shared->set_debug_info(*debug_info);
2270 return debug_info;
H A Dobjects.cc18253 void DebugInfo::ClearBreakPoint(Handle<DebugInfo> debug_info, int code_offset, argument
18255 Isolate* isolate = debug_info->GetIsolate();
18256 Handle<Object> break_point_info(debug_info->GetBreakPointInfo(code_offset),
18264 void DebugInfo::SetBreakPoint(Handle<DebugInfo> debug_info, int code_offset, argument
18267 Isolate* isolate = debug_info->GetIsolate();
18268 Handle<Object> break_point_info(debug_info->GetBreakPointInfo(code_offset),
18280 for (int i = 0; i < debug_info->break_points()->length(); i++) {
18281 if (debug_info->break_points()->get(i)->IsUndefined(isolate)) {
18289 FixedArray::cast(debug_info->break_points()), isolate);
18295 debug_info
18343 FindBreakPointInfo( Handle<DebugInfo> debug_info, Handle<Object> break_point_object) argument
[all...]
/external/opencv3/3rdparty/jinja2/
H A Denvironment.py945 t._debug_info = namespace['debug_info']
1036 for template_line, code_line in reversed(self.debug_info):
1049 def debug_info(self): member in class:Template
/external/v8/src/arm/
H A Dbuiltins-arm.cc1014 Register debug_info = kInterpreterBytecodeArrayRegister; local
1015 DCHECK(!debug_info.is(r0));
1016 __ ldr(debug_info, FieldMemOperand(r0, SharedFunctionInfo::kDebugInfoOffset));
1017 __ cmp(debug_info, Operand(DebugInfo::uninitialized()));
1022 FieldMemOperand(debug_info, DebugInfo::kAbstractCodeIndex), ne);
/external/v8/src/arm64/
H A Dbuiltins-arm64.cc1017 Register debug_info = kInterpreterBytecodeArrayRegister; local
1019 DCHECK(!debug_info.is(x0));
1020 __ Ldr(debug_info, FieldMemOperand(x0, SharedFunctionInfo::kDebugInfoOffset));
1021 __ Cmp(debug_info, Operand(DebugInfo::uninitialized()));
1096 FieldMemOperand(debug_info, DebugInfo::kAbstractCodeIndex));
/external/v8/src/debug/
H A Ddebug.h69 static BreakLocation FromCodeOffset(Handle<DebugInfo> debug_info, int offset);
71 static BreakLocation FromFrame(Handle<DebugInfo> debug_info,
74 static void AllForStatementPosition(Handle<DebugInfo> debug_info,
78 static BreakLocation FromPosition(Handle<DebugInfo> debug_info, int position,
124 BreakLocation(Handle<DebugInfo> debug_info, DebugBreakType type,
145 explicit Iterator(Handle<DebugInfo> debug_info);
162 CodeIterator(Handle<DebugInfo> debug_info, BreakLocatorType type);
186 BytecodeArrayIterator(Handle<DebugInfo> debug_info, BreakLocatorType type);
206 static Iterator* GetIterator(Handle<DebugInfo> debug_info,
212 static int BreakIndexFromCodeOffset(Handle<DebugInfo> debug_info, in
234 Handle<DebugInfo> debug_info() { return Handle<DebugInfo>(debug_info_); } function in class:v8::internal::DebugInfoListNode
[all...]
H A Ddebug.cc62 BreakLocation::BreakLocation(Handle<DebugInfo> debug_info, DebugBreakType type, argument
65 : debug_info_(debug_info),
72 Handle<DebugInfo> debug_info, BreakLocatorType type) {
73 if (debug_info->abstract_code()->IsBytecodeArray()) {
74 return new BytecodeArrayIterator(debug_info, type);
76 return new CodeIterator(debug_info, type);
80 BreakLocation::Iterator::Iterator(Handle<DebugInfo> debug_info) argument
81 : debug_info_(debug_info),
95 BreakLocation::CodeIterator::CodeIterator(Handle<DebugInfo> debug_info, argument
97 : Iterator(debug_info),
71 GetIterator( Handle<DebugInfo> debug_info, BreakLocatorType type) argument
182 BytecodeArrayIterator( Handle<DebugInfo> debug_info, BreakLocatorType type) argument
256 FromCodeOffset(Handle<DebugInfo> debug_info, int offset) argument
270 FromFrame(Handle<DebugInfo> debug_info, JavaScriptFrame* frame) argument
278 AllForStatementPosition(Handle<DebugInfo> debug_info, int statement_position, List<BreakLocation>* result_out) argument
289 BreakIndexFromCodeOffset(Handle<DebugInfo> debug_info, int offset) argument
309 FromPosition(Handle<DebugInfo> debug_info, int position, BreakPositionAlignment alignment) argument
507 DebugInfoListNode(DebugInfo* debug_info) argument
852 Handle<DebugInfo> debug_info = node->debug_info(); local
1559 Handle<DebugInfo> debug_info = isolate_->factory()->NewDebugInfo(shared); local
1568 RemoveDebugInfoAndClearFromShared(Handle<DebugInfo> debug_info) argument
[all...]
/external/v8/src/ia32/
H A Dbuiltins-ia32.cc663 Register debug_info = kInterpreterBytecodeArrayRegister; local
664 __ mov(debug_info, FieldOperand(eax, SharedFunctionInfo::kDebugInfoOffset));
666 FieldOperand(debug_info, DebugInfo::kAbstractCodeIndex));
/external/v8/src/mips/
H A Dbuiltins-mips.cc1007 Register debug_info = kInterpreterBytecodeArrayRegister; local
1008 DCHECK(!debug_info.is(a0));
1009 __ lw(debug_info, FieldMemOperand(a0, SharedFunctionInfo::kDebugInfoOffset));
1010 __ Branch(&load_debug_bytecode_array, ne, debug_info,
1087 FieldMemOperand(debug_info, DebugInfo::kAbstractCodeIndex));
/external/v8/src/mips64/
H A Dbuiltins-mips64.cc993 Register debug_info = kInterpreterBytecodeArrayRegister; local
994 DCHECK(!debug_info.is(a0));
995 __ ld(debug_info, FieldMemOperand(a0, SharedFunctionInfo::kDebugInfoOffset));
996 __ Branch(&load_debug_bytecode_array, ne, debug_info,
1073 FieldMemOperand(debug_info, DebugInfo::kAbstractCodeIndex));
/external/v8/src/ppc/
H A Dbuiltins-ppc.cc1037 Register debug_info = r5; local
1038 DCHECK(!debug_info.is(r3));
1039 __ LoadP(debug_info,
1044 __ CmpSmiLiteral(debug_info, DebugInfo::uninitialized(), r0);
1047 FieldMemOperand(debug_info, DebugInfo::kAbstractCodeIndex));
/external/v8/src/s390/
H A Dbuiltins-s390.cc1017 Register debug_info = r4; local
1018 DCHECK(!debug_info.is(r2));
1019 __ LoadP(debug_info,
1024 __ CmpSmiLiteral(debug_info, DebugInfo::uninitialized(), r0);
1027 FieldMemOperand(debug_info, DebugInfo::kAbstractCodeIndex));
/external/v8/src/x64/
H A Dbuiltins-x64.cc745 Register debug_info = kInterpreterBytecodeArrayRegister; local
746 __ movp(debug_info, FieldOperand(rax, SharedFunctionInfo::kDebugInfoOffset));
748 FieldOperand(debug_info, DebugInfo::kAbstractCodeIndex));
/external/v8/src/x87/
H A Dbuiltins-x87.cc664 Register debug_info = kInterpreterBytecodeArrayRegister; local
665 __ mov(debug_info, FieldOperand(eax, SharedFunctionInfo::kDebugInfoOffset));
667 FieldOperand(debug_info, DebugInfo::kAbstractCodeIndex));

Completed in 2050 milliseconds