/freebsd/contrib/processor-trace/libipt/src/ |
H A D | pt_cpu.c | 96 long family, model, stepping; in pt_cpu_parse() local 119 /* stepping was omitted, it defaults to 0 */ in pt_cpu_parse() 120 stepping = 0; in pt_cpu_parse() 125 stepping = strtol(s, &endptr, 0); in pt_cpu_parse() 129 if (stepping < 0 || stepping > UCHAR_MAX) in pt_cpu_parse() 136 cpu->stepping = (uint8_t) stepping; in pt_cpu_parse() 161 cpu->stepping = (info>>0) & 0xf; in pt_cpu_read()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ThreadPlanStepInstruction.cpp | 69 s->Printf("Stepping one instruction past "); in GetDescription() 75 s->Printf(" stepping over calls"); in GetDescription() 77 s->Printf(" stepping into calls"); in GetDescription() 84 // Since we read the instruction we're stepping over from the thread, this in ValidatePlan() 114 // If the current frame is younger than the start frame and we are stepping in IsPlanStale() 149 // We are still stepping, reset the start pc, and in case we've in ShouldStop() 177 "we were stepping from, stopping."); in ShouldStop() 190 s.PutCString(" stepping out to: "); in ShouldStop() 207 "The stack id we are stepping in changed, but our parent frame " in ShouldStop() 208 "did not when stepping from code with no symbols. " in ShouldStop() [all …]
|
H A D | ThreadPlanStepInRange.cpp | 32 // ThreadPlanStepInRange: Step through a stack range, either stepping over or 41 "Step Range stepping in", thread, range, addr_context, in ThreadPlanStepInRange() 106 s->Printf("Stepping in"); in GetDescription() 159 // Stepping through should be done running other threads in general, since in ShouldStop() 203 // branch breakpoint, or by stepping. in ShouldStop() 346 "Stepping out of function \"%s\" because it matches the " in FrameMatchesAvoidCriteria() 396 "Stepping out of frame %s which did not match step into " in DefaultShouldStopHereCallback() 425 // stepping. in DoPlanExplainsStop()
|
H A D | ThreadPlanStepRange.cpp | 29 // ThreadPlanStepRange: Step through a stack range, either stepping over or 160 "stepping through that range: %s", in InRange() 169 // the stepping range to the line we've stepped into the middle of in InRange() 261 // Some joker added a zero size range to the stepping range... in GetInstructionsForAddress() 313 // Stepping through ranges using breakpoints doesn't work yet, but with this in SetNextBranchBreakpoint() 314 // off we fall back to instruction single stepping. in SetNextBranchBreakpoint() 406 // If all the constituents are internal, then we are probably just stepping in NextRangeBreakpointExplainsStop() 441 // instance, when stepping over inlined code that is in the middle of the in MischiefManaged()
|
H A D | ThreadPlanStepOut.cpp | 60 // While stepping out, behave as-if artificial frames are not present. in ThreadPlanStepOut() 93 // If we're already at the inlined frame we're stepping through, then in ThreadPlanStepOut() 201 s->Printf("Stepping out to inlined frame so we can walk through it."); in GetDescription() 203 s->Printf("Stepping out by stepping through inlined function."); in GetDescription() 205 s->Printf("Stepping out from "); in GetDescription() 285 // We don't explain signals or breakpoints (breakpoints that handle stepping in DoPlanExplainsStop()
|
H A D | ThreadPlanShouldStopHere.cpp | 73 LLDB_LOGF(log, "Stepping out of frame with no debug info"); in DefaultShouldStopHereCallback() 100 // If we are stepping through code at line number 0, then we need to step in DefaultStepFromHereCallback() 122 "stepping out."); in DefaultStepFromHereCallback()
|
H A D | ThreadPlanStepOverBreakpoint.cpp | 28 // first in the thread plan stack when stepping over in ThreadPlanStepOverBreakpoint() 44 s->Printf("Single stepping past breakpoint site %" PRIu64 " at 0x%" PRIx64, in GetDescription() 140 // Otherwise, re-enable the breakpoint we were stepping over, and we're in MischiefManaged()
|
H A D | ThreadPlanStepOverRange.cpp | 29 // ThreadPlanStepOverRange: Step through a stack range, either stepping over or 37 "Step range stepping over", thread, range, in ThreadPlanStepOverRange() 60 s->Printf("Stepping over"); in GetDescription() 139 // then we should stop. When stepping out we only stop others if we are in ShouldStop() 407 "Stepping over inlined function \"%s\" in inlined stack: ", in DoWillResume()
|
H A D | TargetProperties.td | 161 def UseFastStepping: Property<"use-fast-stepping", "Boolean">, 163 …Desc<"Use a fast stepping algorithm based on running from branch to branch rather than instruction… 242 …Desc<"If true, warn when stopped in code that is optimized where stepping and variable availabilit… 266 …Desc<"If true, stepping operations will run all threads. This is equivalent to setting the run-mo… 306 Desc<"A list of libraries that source stepping won't stop in.">;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
H A D | TraceIntelPTJSONStructs.cpp | 102 {"stepping", cpu_info.stepping}, in toJSON() 109 uint64_t family, model, stepping; in fromJSON() local 111 o.map("model", model) && o.map("stepping", stepping))) in fromJSON() 116 cpu_info.stepping = stepping; in fromJSON()
|
/freebsd/sys/x86/iommu/ |
H A D | intel_quirks.c | 71 u_int stepping; member 97 u_int ext_family, ext_model, family_code, model, stepping; in dmar_match_quirks() local 129 stepping = p[0] & CPUID_STEPPING; in dmar_match_quirks() 136 (cpu_quirk->stepping == -1 || in dmar_match_quirks() 137 cpu_quirk->stepping == stepping)) { in dmar_match_quirks() 217 .stepping = 6, .quirk = cpu_e5_am9,
|
/freebsd/contrib/processor-trace/libipt/internal/include/ |
H A D | pt_cpu.h | 34 /* Parses @s which should be of format family/model[/stepping] and 36 * The optional stepping defaults to 0 if omitted. 46 * Reads the family/model/stepping of the processor on which this function
|
/freebsd/sys/ddb/ |
H A D | db_run.c | 115 * If not stepping, then silently ignore single-step traps in db_stop_at_pc() 118 * If stepping, then abort if the trap type is unexpected. in db_stop_at_pc() 127 * stepping, then expect only breakpoints and stop, and if in db_stop_at_pc() 128 * stepping, then expect only single-steps and step. in db_stop_at_pc() 134 printf("Stepping aborted\n"); in db_stop_at_pc()
|
/freebsd/contrib/processor-trace/libipt/test/src/ |
H A D | ptunit-cpu.c | 60 ptu_uint_eq(cpu.stepping, 2); in cpu_valid() 67 ptu_uint_eq(cpu.stepping, 0xf); in cpu_valid() 74 ptu_uint_eq(cpu.stepping, 017); in cpu_valid() 81 ptu_uint_eq(cpu.stepping, 0); in cpu_valid()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/ |
H A D | ArchitectureArm.cpp | 45 // We do this because when single stepping many ARM processes, debuggers in OverrideStopInfo() 47 // to its current value". This method of stepping means we can end up in OverrideStopInfo() 51 // stepping because the debugger stops regardless due to the BVR/BCR in OverrideStopInfo() 85 // instruction which is bad. You can also run into this while single stepping in OverrideStopInfo()
|
/freebsd/sys/contrib/device-tree/src/arm/marvell/ |
H A D | kirkwood-rd88f6281-z0.dts | 3 * Marvell RD88F6181 Z0 stepping descrition 8 * stepping of the SoC. The ethernet switch has a "wan" port.
|
/freebsd/tools/tools/intel-ucode-split/ |
H A D | intel-ucode-split.c | 54 * SDM vol 2A CPUID EAX = 01h Returns Model, Family, Stepping Information. 62 unsigned family, model, stepping; in format_signature() local 66 stepping = signature & 0xf; in format_signature() 71 asprintf(&buf, "%02x-%02x-%02x", family, model, stepping); in format_signature()
|
/freebsd/sys/arm64/arm64/ |
H A D | swtch.S | 77 /* Of old == NULL skip disabling stepping */ 80 /* If we were single stepping, disable it */ 112 /* If we are single stepping, enable it */ 160 /* If we were single stepping, disable it */ 207 /* If we are single stepping, enable it */
|
/freebsd/sys/dev/hwpmc/ |
H A D | hwpmc_intel.c | 80 int error, family, model, nclasses, ncpus, stepping, verov; in pmc_intel_initialize() local 93 stepping = CPUID_TO_STEPPING(cpu_id); in pmc_intel_initialize() 96 family, model, stepping); in pmc_intel_initialize() 106 if (stepping == 0x7) { in pmc_intel_initialize()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | Thread.h | 173 /// staying on one thread while stepping over a breakpoint, etc. The is the 175 /// the stepping 527 /// Default implementation for stepping into. 537 /// If \a true, then avoid stepping into code that doesn't have 543 /// stepping out till you get to code with debug info. 552 /// Default implementation for stepping over. 567 /// Default implementation for stepping out. 676 /// Queues the plan used to step through an address range, stepping over 692 /// When dealing with stepping through inlined functions the current PC is 729 /// Queues the plan used to step through an address range, stepping into [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/net/bluetooth/ |
H A D | brcm,bcm4377-bluetooth.yaml | 44 This blob is used if the chip stepping of the Bluetooth module does not 52 This blob is used if the chip stepping of the Bluetooth module supports
|
/freebsd/sys/dev/fxp/ |
H A D | if_fxpreg.h | 497 #define FXP_REV_82558_A4 4 /* 82558 A4 stepping */ 498 #define FXP_REV_82558_B0 5 /* 82558 B0 stepping */ 499 #define FXP_REV_82559_A0 8 /* 82559 A0 stepping */ 500 #define FXP_REV_82559S_A 9 /* 82559S A stepping */ 502 #define FXP_REV_82550_C 13 /* 82550 C stepping */
|
/freebsd/lib/libc/rpc/ |
H A D | getrpcent.c | 100 int stepping; member 454 st->stepping = 0; in nis_rpcent() 465 st->stepping = 0; in nis_rpcent() 485 if (!st->stepping) { in nis_rpcent() 494 st->stepping = 1; in nis_rpcent() 504 st->stepping = 0; in nis_rpcent() 587 st->stepping = 0; in nis_setrpcent()
|
/freebsd/usr.sbin/bhyve/ |
H A D | gdb.c | 143 * When a vCPU is stepped, 'stepping' is set to true when the vCPU is 145 * the stepping trap, 'stepped' is set. 151 bool stepping; member 779 * stepping trap, stopped_vcpu will be set to the vCPU triggering the 867 * Requests vCPU single-stepping using a 894 * Checks whether single-stepping is supported for a given vCPU. 968 * Invoked by vCPU before resuming execution. This enables stepping 969 * if the vCPU is marked as stepping. 985 if (vs->stepping) { in gdb_cpu_resume() 1034 if (vs->stepping) { in gdb_cpu_step() [all …]
|
/freebsd/contrib/elftoolchain/libdwarf/ |
H A D | dwarf_next_cu_header.3 | 211 On stepping past the last compilation unit in the section, 235 On stepping past the last type unit in the debug context,
|