HomeSort by relevance Sort by last modified time
    Searched refs:DebugInfo (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/v8/src/objects/
debug-objects-inl.h 20 CAST_ACCESSOR(DebugInfo)
24 SMI_ACCESSORS(DebugInfo, flags, kFlagsOffset)
25 ACCESSORS(DebugInfo, shared, SharedFunctionInfo, kSharedFunctionInfoOffset)
26 SMI_ACCESSORS(DebugInfo, debugger_hints, kDebuggerHintsOffset)
27 ACCESSORS(DebugInfo, script, Object, kScriptOffset)
28 ACCESSORS(DebugInfo, original_bytecode_array, Object,
30 ACCESSORS(DebugInfo, break_points, FixedArray, kBreakPointsStateOffset)
31 ACCESSORS(DebugInfo, coverage_info, Object, kCoverageInfoOffset)
33 BIT_FIELD_ACCESSORS(DebugInfo, debugger_hints, side_effect_state,
34 DebugInfo::SideEffectStateBits
    [all...]
debug-objects.h 20 // The DebugInfo class holds additional information for a function being
22 class DebugInfo : public Struct, public NeverReadOnlySpaceObject {
51 // DebugInfo can be detached from the SharedFunctionInfo iff it is empty.
97 static bool ClearBreakPoint(Isolate* isolate, Handle<DebugInfo> debug_info,
100 static void SetBreakPoint(Isolate* isolate, Handle<DebugInfo> debug_info,
107 Handle<DebugInfo> debug_info,
162 DECL_CAST(DebugInfo)
165 DECL_PRINTER(DebugInfo)
166 DECL_VERIFIER(DebugInfo)
185 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugInfo);
    [all...]
debug-objects.cc 12 bool DebugInfo::IsEmpty() const {
16 bool DebugInfo::HasBreakInfo() const { return (flags() & kHasBreakInfo) != 0; }
18 DebugInfo::ExecutionMode DebugInfo::DebugExecutionMode() const {
22 void DebugInfo::SetDebugExecutionMode(ExecutionMode value) {
27 void DebugInfo::ClearBreakInfo(Isolate* isolate) {
43 void DebugInfo::SetBreakAtEntry() {
48 void DebugInfo::ClearBreakAtEntry() {
53 bool DebugInfo::BreakAtEntry() const { return (flags() & kBreakAtEntry) != 0; }
55 bool DebugInfo::CanBreakAtEntry() const
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-dwarfdump/
Makefile 12 LINK_COMPONENTS = DebugInfo Object
  /art/compiler/debug/
debug_info.h 31 struct DebugInfo {
elf_debug_writer.h 41 const DebugInfo& debug_info);
50 const DebugInfo& debug_info);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITDebugRegisterer.h 58 struct DebugInfo {
64 DebugInfo() : FnStart(0), FnEnd(0), EhStart(0), EhEnd(0) {}
73 /// whenever a function is JITed, create a DebugInfo struct and pass it to the
86 std::string MakeELF(const Function *F, DebugInfo &I);
99 void RegisterFunction(const Function *F, DebugInfo &I);
  /external/swiftshader/third_party/LLVM/tools/llvm-objdump/
Makefile 12 LINK_COMPONENTS = $(TARGETS_TO_BUILD) DebugInfo MC MCParser MCDisassembler \
  /external/swiftshader/third_party/LLVM/lib/
Makefile 14 Target ExecutionEngine Linker MC Object DebugInfo
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiDxeDebugLibReportStatusCode/
DebugLib.c 48 EFI_DEBUG_INFO *DebugInfo;
74 DebugInfo = (EFI_DEBUG_INFO *)Buffer;
75 DebugInfo->ErrorLevel = (UINT32)ErrorLevel;
81 for (Index = 0, ArgumentPointer = (UINT64 *)(DebugInfo + 1); Index < 12; Index++, ArgumentPointer++) {
93 DebugInfo,
  /art/dex2oat/linker/
elf_writer.h 70 virtual void PrepareDebugInfo(const debug::DebugInfo& debug_info) = 0;
78 virtual void WriteDebugInfo(const debug::DebugInfo& debug_info) = 0;
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/PrePiLib/
ReportStatusCode.c 143 EFI_DEBUG_INFO *DebugInfo;
160 DebugInfo = (EFI_DEBUG_INFO *)(Data + 1);
162 *ErrorLevel = DebugInfo->ErrorLevel;
168 *Marker = (BASE_LIST) (DebugInfo + 1);
195 EFI_DEBUG_INFO *DebugInfo;
242 DebugInfo = (EFI_DEBUG_INFO *) (Data + 1);
243 Marker = (BASE_LIST) (DebugInfo + 1);
244 Format = (CHAR8 *) (((UINT64 *) (DebugInfo + 1)) + 12);
  /external/v8/src/debug/
debug.h 67 static BreakLocation FromFrame(Handle<DebugInfo> debug_info,
70 static void AllAtCurrentStatement(Handle<DebugInfo> debug_info,
89 bool HasBreakPoint(Isolate* isolate, Handle<DebugInfo> debug_info) const;
115 static int BreakIndexFromCodeOffset(Handle<DebugInfo> debug_info,
133 explicit BreakIterator(Handle<DebugInfo> debug_info);
159 Handle<DebugInfo> debug_info_;
173 DebugInfoListNode(Isolate* isolate, DebugInfo* debug_info);
178 Handle<DebugInfo> debug_info() { return Handle<DebugInfo>(debug_info_); }
182 DebugInfo** debug_info_
    [all...]
debug.cc 99 BreakLocation BreakLocation::FromFrame(Handle<DebugInfo> debug_info,
113 Handle<DebugInfo> debug_info, JavaScriptFrame* frame,
145 int BreakLocation::BreakIndexFromCodeOffset(Handle<DebugInfo> debug_info,
165 Handle<DebugInfo> debug_info) const {
198 BreakIterator::BreakIterator(Handle<DebugInfo> debug_info)
389 DebugInfoListNode::DebugInfoListNode(Isolate* isolate, DebugInfo* debug_info)
430 Handle<DebugInfo> debug_info(shared->GetDebugInfo(), isolate_);
521 MaybeHandle<FixedArray> Debug::CheckBreakPoints(Handle<DebugInfo> debug_info,
544 Handle<DebugInfo> debug_info(function->shared()->GetDebugInfo(), isolate_);
601 Handle<DebugInfo> debug_info(shared->GetDebugInfo(), isolate_)
    [all...]
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
NativeObjRegistry.java 23 private final Map<Long, DebugInfo> idToDebugInfoMap;
76 DebugInfo debugInfo = idToDebugInfoMap.get(nativeId);
77 if (debugInfo != null) {
80 debugInfo.registrationTrace.printStackTrace(System.out);
89 idToDebugInfoMap.put(nativeId, new DebugInfo(new Trace(o)));
111 DebugInfo debugInfo = idToDebugInfoMap.get(nativeId);
112 debugInfo.unregistrationTraces.add(new Trace(o));
113 if (debugInfo.unregistrationTraces.size() > 1)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedMethodImplementation.java 37 import org.jf.dexlib2.dexbacked.util.DebugInfo;
126 private DebugInfo getDebugInfo() {
130 return DebugInfo.newOrEmpty(dexFile, 0, this);
134 return DebugInfo.newOrEmpty(dexFile, 0, this);
138 return DebugInfo.newOrEmpty(dexFile, 0, this);
140 return DebugInfo.newOrEmpty(dexFile, debugOffset, this);
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/HalRuntimeServicesExampleLib/
ReportStatusCode.c 43 EFI_DEBUG_INFO *DebugInfo;
91 DebugInfo = (EFI_DEBUG_INFO *) (Data + 1);
92 Marker = (VA_LIST) (DebugInfo + 1);
93 Format = (CHAR8 *) (((UINT64 *) (DebugInfo + 1)) + 12);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
CVDebugRecord.h 46 union DebugInfo {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DWARFVisitor.h 35 T &DebugInfo;
68 VisitorImpl(T &DI) : DebugInfo(DI) {}
DWARFEmitter.cpp 142 writeInitialLength(CU.Length, OS, DebugInfo.IsLittleEndian);
143 writeInteger((uint16_t)CU.Version, OS, DebugInfo.IsLittleEndian);
145 writeInteger((uint8_t)CU.Type, OS, DebugInfo.IsLittleEndian);
146 writeInteger((uint8_t)CU.AddrSize, OS, DebugInfo.IsLittleEndian);
147 writeInteger((uint32_t)CU.AbbrOffset, OS, DebugInfo.IsLittleEndian);
149 writeInteger((uint32_t)CU.AbbrOffset, OS, DebugInfo.IsLittleEndian);
150 writeInteger((uint8_t)CU.AddrSize, OS, DebugInfo.IsLittleEndian);
160 writeInteger(U, OS, DebugInfo.IsLittleEndian);
164 writeInteger(U, OS, DebugInfo.IsLittleEndian);
168 writeInteger(U, OS, DebugInfo.IsLittleEndian)
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/Library/DxeCoreReportStatusCodeLibFromHob/
ReportStatusCodeLib.c 236 EFI_DEBUG_INFO *DebugInfo;
253 DebugInfo = (EFI_DEBUG_INFO *)(Data + 1);
255 *ErrorLevel = DebugInfo->ErrorLevel;
261 *Marker = (BASE_LIST) (DebugInfo + 1);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
ReportStatusCode.c 321 EFI_DEBUG_INFO *DebugInfo;
327 DebugInfo = (EFI_DEBUG_INFO *)(Data + 1);
329 *ErrorLevel = DebugInfo->ErrorLevel;
340 *Marker = (VA_LIST) (DebugInfo + 1);
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/
ReportStatusCodeLib.c 166 EFI_DEBUG_INFO *DebugInfo;
183 DebugInfo = (EFI_DEBUG_INFO *)(Data + 1);
185 *ErrorLevel = DebugInfo->ErrorLevel;
196 *Marker = (BASE_LIST) (DebugInfo + 1);
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/
DebugLib.c 57 EFI_DEBUG_INFO *DebugInfo;
84 // DebugInfo->|------------------------|
109 // just makes address of BaseListMarker, which follows DebugInfo, 64-bit aligned.
111 DebugInfo = (EFI_DEBUG_INFO *)(Buffer) + 1;
112 DebugInfo->ErrorLevel = (UINT32)ErrorLevel;
113 BaseListMarker = (BASE_LIST)(DebugInfo + 1);
114 FormatString = (CHAR8 *)((UINT64 *)(DebugInfo + 1) + 12);
224 // Send the DebugInfo record
232 DebugInfo,
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/
DebugLib.c 57 EFI_DEBUG_INFO *DebugInfo;
83 // DebugInfo->|------------------------|
108 // just makes address of BaseListMarker, which follows DebugInfo, 64-bit aligned.
110 DebugInfo = (EFI_DEBUG_INFO *)(Buffer) + 1;
111 DebugInfo->ErrorLevel = (UINT32)ErrorLevel;
112 BaseListMarker = (BASE_LIST)(DebugInfo + 1);
113 FormatString = (CHAR8 *)((UINT64 *)(DebugInfo + 1) + 12);
217 // Send the DebugInfo record
225 DebugInfo,

Completed in 357 milliseconds

1 2 3 4 5