Searched refs:core (Results 1 - 14 of 14) sorted by relevance

/xnu-2782.1.97/osfmk/i386/
H A Dcpu_threads.c182 * Compute the number of threads (logical CPUs) per core.
342 lcpu->core = NULL;
356 x86_core_t *core; local
363 core = free_cores;
364 free_cores = core->next_in_die;
365 core->next_in_die = NULL;
369 core = kalloc(sizeof(x86_core_t));
370 if (core == NULL)
374 bzero((void *) core, sizeof(x86_core_t));
376 core
386 x86_core_free(x86_core_t *core) argument
444 x86_core_t *core; local
470 x86_core_t *core = lcpu->core; local
608 x86_core_t *core; local
732 x86_core_add_lcpu(x86_core_t *core, x86_lcpu_t *lcpu) argument
758 x86_die_add_core(x86_die_t *die, x86_core_t *core) argument
781 x86_package_add_core(x86_pkg_t *pkg, x86_core_t *core) argument
806 x86_core_t *core = NULL; local
936 x86_core_t *core; local
976 x86_core_t *core; local
1007 x86_core_t *core; local
1183 x86_core_t *core; local
[all...]
H A Dhpet.c115 x86_core_t *core; local
131 core = lcpu->core;
132 pkg = core->package;
150 core = lcpu->core;
151 pkg = core->package;
156 core->Hpet = (hpetTimer_t *)((uint8_t *)hpetArea + hpetReq.hpetOffset);
157 core->HpetVec = hpetReq.hpetVector;
162 core
328 x86_core_t *core; local
[all...]
H A Dcpu_threads.h46 #define _cpu_to_core(cpu) (_cpu_to_lcpu(cpu)->core)
50 #define cpu_to_core(cpu) ((cpu_to_lcpu(cpu) != NULL) ? _cpu_to_lcpu(cpu)->core : NULL)
56 #define x86_core() (x86_lcpu()->core)
H A Dcpu_topology.h118 * package, die, core, logical CPU).
128 struct x86_lcpu *next_in_core; /* next logical cpu in core */
132 struct x86_core *core; /* core containing the logical cpu */ member in struct:x86_lcpu
138 uint32_t lnum; /* logical cpu number (within core) */
151 #define X86CORE_FL_PRESENT 0x80000000 /* core is present */
152 #define X86CORE_FL_READY 0x40000000 /* core struct is init'd */
153 #define X86CORE_FL_HAS_HPET 0x10000000 /* core has HPET assigned */
154 #define X86CORE_FL_HALTED 0x00008000 /* core is halted */
155 #define X86CORE_FL_IDLE 0x00004000 /* core i
[all...]
H A Dcpu_topology.c174 if (lcpup->core->num_lcpus > 1) {
H A Dmachine_routines.c415 if (this_cpu_datap->lcpu.core == NULL)
H A DpmCPU.c332 return(cpup->lcpu.core);
/xnu-2782.1.97/tools/lldbmacros/
H A DMakefile19 core/standard.py \
20 core/cvalue.py \
21 core/__init__.py \
22 core/configuration.py \
23 core/caching.py \
24 core/lazytarget.py \
25 core/kernelcore.py \
26 core/operating_system.py \
27 core/xnu_lldb_init.py \
64 $(_v)$(PYTHON) $(LLDBMACROS_SOURCE)/core/syntax_checke
[all...]
H A Dxnu.py7 import core
8 from core import caching
9 from core.standard import *
10 from core.configuration import *
11 from core.kernelcore import *
13 from core.lazytarget import *
52 out_string += obj( core.value(lldbval) )
253 array_base : core.value - representing a pointer type (ex. base of type 'ipc_entry *')
256 core.value : core
[all...]
H A Dutils.py9 from core.cvalue import *
10 from core.configuration import *
11 from core.lazytarget import *
58 str - connection type. One of ("core","kdp","gdb", "unknown")
66 elif "mach-o" in process_plugin_name and "core" in process_plugin_name:
67 retval = "core"
77 if type(sbval) == core.value:
137 obj - core.value object representing some C construct in lldb
H A Dpmap.py289 params: pmap_addr_val - core.value representing kernel data of type pmap_addr_t
500 pmapval: core.value - representing pmap_t in kernel
533 params: pmapval - core.value representing pmap_t in kernel
604 assert(type(pmap) == core.cvalue.value)
H A Dprocess.py9 from core.lazytarget import *
1081 proc : core.value representing a struct proc * in the kernel
/xnu-2782.1.97/bsd/man/man5/
H A DMakefile11 core.5 \
/xnu-2782.1.97/osfmk/pmc/
H A Dpmc.h231 * @abstract A pointer to a method that returns if a pmc is accessible from a given logical core.
232 * @discussion A pointer to a method that returns if a pmc is accessible from a given logical core.
235 * @param core The logical core number.
236 * @result TRUE if the pmc can be read in the execution context of the given logical core, FALSE otherwise.
238 typedef boolean_t (*pmc_is_accessible_from_logical_core_method_t)(pmc_object_t pmc, uint32_t core);
426 // A value of -1 here indicates independence from a particular core
619 * @discussion This method can return a NULL list with count of 0 -- this indicates any core can read the given pmc. This method does not allocate the list,
678 * current thread, or for a pmc that is not accessible from the current logical core, the reservation will start counting the next time the thread (or task)
679 * runs on a logical core tha
[all...]

Completed in 102 milliseconds