Home
last modified time | relevance | path

Searched refs:IsArtificial (Results 1 – 18 of 18) sorted by relevance

/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/thread_step_out_or_return/
DTestSteppingOutWithArtificialFrames.py65 self.assertFalse(frame2.IsArtificial())
71 self.assertFalse(frame2.IsArtificial())
85 self.assertFalse(frame2.IsArtificial())
91 self.assertFalse(frame2.IsArtificial())
/external/llvm-project/lldb/include/lldb/API/
DSBFrame.h94 bool IsArtificial();
96 bool IsArtificial() const;
/external/llvm-project/lldb/bindings/interface/
DSBFrame.i156 frame.") IsArtificial;
158 IsArtificial();
161 IsArtificial() const;
/external/llvm-project/llvm/tools/llvm-profgen/
DPerfReader.cpp85 if (Branch.IsArtificial) in recordBranchCount()
270 bool IsArtificial = false; in extractLBRStack() local
289 IsArtificial = true; in extractLBRStack()
293 LBRStack.emplace_back(LBREntry(Src, Dst, IsArtificial)); in extractLBRStack()
DPerfReader.h73 bool IsArtificial = false; member
75 : Source(S), Target(T), IsArtificial(I) {} in LBREntry()
/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/cross_object/
DTestCrossObjectTailCalls.py60 self.assertEqual(frame.IsArtificial(), is_artificial)
/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/cross_dso/
DTestCrossDSOTailCalls.py65 self.assertEqual(frame.IsArtificial(), is_artificial)
/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/sbapi_support/
DTestTailCallFrameSBAPI.py65 self.assertEqual(frame.IsArtificial(), is_artificial)
/external/llvm-project/lldb/source/API/
DSBFrame.cpp1160 bool SBFrame::IsArtificial() { in IsArtificial() function in SBFrame
1161 LLDB_RECORD_METHOD_NO_ARGS(bool, SBFrame, IsArtificial); in IsArtificial()
1163 return static_cast<const SBFrame *>(this)->IsArtificial(); in IsArtificial()
1166 bool SBFrame::IsArtificial() const { in IsArtificial() function in SBFrame
1167 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBFrame, IsArtificial); in IsArtificial()
1174 return frame->IsArtificial(); in IsArtificial()
1359 LLDB_REGISTER_METHOD(bool, SBFrame, IsArtificial, ()); in RegisterMethods()
1360 LLDB_REGISTER_METHOD_CONST(bool, SBFrame, IsArtificial, ()); in RegisterMethods()
/external/llvm-project/lldb/include/lldb/Symbol/
DVariable.h72 bool IsArtificial() const { return m_artificial; } in IsArtificial() function
/external/llvm-project/lldb/include/lldb/Target/
DStackFrame.h368 bool IsArtificial() const;
/external/llvm-project/lldb/source/Target/
DThreadPlanStepOut.cpp60 while (return_frame_sp->IsArtificial()) { in ThreadPlanStepOut()
DStackFrame.cpp1200 bool StackFrame::IsArtificial() const { in IsArtificial() function in StackFrame
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveDebugValues.cpp1324 bool IsArtificial = ArtificialBlocks.count(&MBB); in join() local
1325 if (!IsArtificial) { in join()
/external/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
DVarLocBasedImpl.cpp1652 bool IsArtificial = ArtificialBlocks.count(&MBB); in join() local
1653 if (!IsArtificial) { in join()
/external/llvm-project/lldb/source/Expression/
DDWARFExpression.cpp757 if (!parent_frame->IsArtificial()) { in Evaluate_DW_OP_entry_value()
/external/llvm-project/lldb/source/Core/
DFormatEntity.cpp1494 return frame->IsArtificial(); in Format()
DValueObject.cpp1662 if (!GetVariable() || !GetVariable()->IsArtificial()) in IsRuntimeSupportValue()