/xen-4.10.0-shim-comet/tools/tests/x86_emulator/ |
A D | x86-emulate.c | 66 uint32_t leaf, in emul_test_cpuid() argument 73 : "a" (leaf), "c" (subleaf)); in emul_test_cpuid() 79 if ( leaf == 1 ) in emul_test_cpuid() 86 if ( leaf == 7 && subleaf == 0 ) in emul_test_cpuid() 96 if ( leaf == 0x80000008 ) in emul_test_cpuid()
|
A D | x86-emulate.h | 171 uint32_t leaf,
|
/xen-4.10.0-shim-comet/docs/ |
A D | xen-headers | 77 our $leaf; 106 print STDERR "$leaf:$.: @_\n"; 127 $sdef{$type}{$name}{DefLocs}{"$leaf:$."} = $leaf_opath; 128 $sdef{$type}{$name}{Derefs}{"$leaf:$."} = $deref; 205 $sdef{$reftype}{$refname}{Xrefs}{$leaf,$.} = 250 $o .= "<html><head><title>$leaf - $xtitle</title></head><body><pre>\n"; 318 push @outfiles, [ $leaf, $leaf_opath ]; 376 $leaf = substr($File::Find::name, 1+length $basedir); 381 $leaf_opath = $leaf;
|
/xen-4.10.0-shim-comet/xen/arch/x86/ |
A D | xstate.c | 91 unsigned int leaf, eax, ebx, ecx, edx; in setup_xstate_features() local 105 for ( leaf = 2; leaf < xstate_features; leaf++ ) in setup_xstate_features() 109 cpuid_count(XSTATE_CPUID, leaf, &xstate_sizes[leaf], in setup_xstate_features() 110 &xstate_offsets[leaf], &ecx, &edx); in setup_xstate_features() 112 __set_bit(leaf, &xstate_align); in setup_xstate_features() 116 cpuid_count(XSTATE_CPUID, leaf, &eax, in setup_xstate_features() 118 BUG_ON(eax != xstate_sizes[leaf]); in setup_xstate_features() 119 BUG_ON(ebx != xstate_offsets[leaf]); in setup_xstate_features() 120 BUG_ON(!(ecx & XSTATE_ALIGN64) != !test_bit(leaf, &xstate_align)); in setup_xstate_features()
|
A D | cpuid.c | 33 static void cpuid_leaf(uint32_t leaf, struct cpuid_leaf *data) in cpuid_leaf() argument 35 cpuid(leaf, &data->a, &data->b, &data->c, &data->d); in cpuid_leaf() 596 void guest_cpuid(const struct vcpu *v, uint32_t leaf, in guest_cpuid() argument 611 switch ( leaf ) in guest_cpuid() 615 if ( leaf > min_t(uint32_t, p->basic.max_leaf, in guest_cpuid() 619 switch ( leaf ) in guest_cpuid() 645 *res = p->basic.raw[leaf]; in guest_cpuid() 669 *res = p->extd.raw[leaf & 0xffff]; in guest_cpuid() 691 switch ( leaf ) in guest_cpuid() 836 *res = raw_cpuid_policy.basic.raw[leaf]; in guest_cpuid() [all …]
|
A D | traps.c | 830 void cpuid_hypervisor_leaves(const struct vcpu *v, uint32_t leaf, in cpuid_hypervisor_leaves() argument 836 uint32_t idx = leaf - base; in cpuid_hypervisor_leaves() 1229 goto leaf; in __page_fault_type() 1240 goto leaf; in __page_fault_type() 1251 leaf: in __page_fault_type()
|
A D | domctl.c | 54 const struct cpuid_leaf leaf = { ctl->eax, ctl->ebx, ctl->ecx, ctl->edx }; in update_domain_cpuid_info() local 96 p->cache.raw[ctl->input[1]] = leaf; in update_domain_cpuid_info() 100 p->feat.raw[ctl->input[1]] = leaf; in update_domain_cpuid_info() 104 p->xstate.raw[ctl->input[1]] = leaf; in update_domain_cpuid_info() 108 p->basic.raw[ctl->input[0]] = leaf; in update_domain_cpuid_info() 122 p->extd.raw[ctl->input[0] - 0x80000000] = leaf; in update_domain_cpuid_info()
|
/xen-4.10.0-shim-comet/tools/libxl/ |
A D | libxl_cpuid.c | 55 uint32_t leaf; member 66 uint32_t leaf, uint32_t subleaf) in cpuid_find_match() argument 72 if ((*list)[i].input[0] == leaf && (*list)[i].input[1] == subleaf) in cpuid_find_match() 77 (*list)[i].input[0] = leaf; in cpuid_find_match() 278 entry = cpuid_find_match(cpuid, flag->leaf, flag->subleaf); in libxl_cpuid_parse_config() 338 uint32_t leaf, subleaf = XEN_CPUID_INPUT_UNUSED; in libxl_cpuid_parse_config_xend() local 346 leaf = value; in libxl_cpuid_parse_config_xend() 360 entry = cpuid_find_match(cpuid, leaf, subleaf); in libxl_cpuid_parse_config_xend()
|
/xen-4.10.0-shim-comet/tools/libacpi/ |
A D | mk_dsdt.c | 88 unsigned int s, unsigned int e, char *var, void (*leaf)(unsigned int)) in decision_tree() 92 (*leaf)(s); in decision_tree() 97 decision_tree((s+e)/2, e, var, leaf); in decision_tree() 100 decision_tree(s, (s+e)/2, var, leaf); in decision_tree()
|
/xen-4.10.0-shim-comet/xen/include/asm-x86/ |
A D | processor.h | 262 unsigned int leaf, unsigned int subleaf) in cpuid_count_ebx() argument 266 cpuid_count(leaf, subleaf, &tmp, &ebx, &tmp, &tmp); in cpuid_count_ebx() 271 static always_inline void cpuid_count_leaf(uint32_t leaf, uint32_t subleaf, in cpuid_count_leaf() argument 274 cpuid_count(leaf, subleaf, &data->a, &data->b, &data->c, &data->d); in cpuid_count_leaf() 549 void cpuid_hypervisor_leaves(const struct vcpu *v, uint32_t leaf,
|
A D | cpuid.h | 262 void guest_cpuid(const struct vcpu *v, uint32_t leaf,
|
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/ |
A D | monitor.c | 175 int hvm_monitor_cpuid(unsigned long insn_length, unsigned int leaf, in hvm_monitor_cpuid() argument 187 req.u.cpuid.leaf = leaf; in hvm_monitor_cpuid()
|
A D | viridian.c | 198 void cpuid_viridian_leaves(const struct vcpu *v, uint32_t leaf, in cpuid_viridian_leaves() argument 204 ASSERT(leaf >= 0x40000000 && leaf < 0x40000100); in cpuid_viridian_leaves() 206 leaf -= 0x40000000; in cpuid_viridian_leaves() 208 switch ( leaf ) in cpuid_viridian_leaves()
|
/xen-4.10.0-shim-comet/m4/ |
A D | paths.m4 | 54 AC_ARG_WITH([sysconfig-leaf-dir], 55 AS_HELP_STRING([--with-sysconfig-leaf-dir=SUBDIR], 67 AC_ARG_WITH([libexec-leaf-dir], 68 AS_HELP_STRING([--with-libexec-leaf-dir=SUBDIR],
|
/xen-4.10.0-shim-comet/tools/blktap2/drivers/ |
A D | block-cache.c | 87 radix_tree_leaf_t leaf; member 286 link->u.leaf.page = page; in radix_tree_insert_leaf() 287 link->u.leaf.buf = page->buf + off; in radix_tree_insert_leaf() 310 return link->u.leaf.buf; in radix_tree_find_leaf() 337 radix_tree_remove_page(tree, link->u.leaf.page); in radix_tree_add_leaf() 339 return link->u.leaf.buf; in radix_tree_add_leaf() 391 radix_tree_remove_page(tree, link->u.leaf.page); in radix_tree_delete_branch() 440 radix_tree_remove_page(tree, link->u.leaf.page); in radix_tree_prune_branch()
|
/xen-4.10.0-shim-comet/xen/include/asm-x86/hvm/ |
A D | monitor.h | 46 int hvm_monitor_cpuid(unsigned long insn_length, unsigned int leaf,
|
A D | emulate.h | 79 int hvmemul_cpuid(uint32_t leaf, uint32_t subleaf,
|
A D | viridian.h | 101 void cpuid_viridian_leaves(const struct vcpu *v, uint32_t leaf,
|
/xen-4.10.0-shim-comet/stubdom/grub.patches/ |
A D | 61btrfs.diff | 357 +/* Item header for per-leaf lookup */ 2271 + struct extent_buffer *leaf, 2393 + struct extent_buffer *leaf; 2408 + leaf = &path->nodes[0]; 2774 + * non-leaf, 2853 + * is attached to leaf node. 3283 + struct extent_buffer *leaf; 3287 + leaf = &path->nodes[0]; 3288 + sd = btrfs_item_ptr(leaf, 3291 + mode = btrfs_inode_mode(leaf, sd); [all …]
|
A D | 60ext4.diff | 193 + * level. leaf or next index could be there */ 272 + * find closest extent in the leaf level 350 + /* depth==0, we come to the leaf */
|
/xen-4.10.0-shim-comet/xen/arch/x86/mm/ |
A D | guest_walk.c | 212 goto leaf; in guest_walk_tables() 322 goto leaf; in guest_walk_tables() 355 leaf: in guest_walk_tables()
|
/xen-4.10.0-shim-comet/tools/misc/ |
A D | xen-cpuid.c | 196 static void dump_leaf(uint32_t leaf, const char **strs) in dump_leaf() argument 207 if ( leaf & (1u << i) ) in dump_leaf()
|
/xen-4.10.0-shim-comet/docs/misc/ |
A D | distro_mapping.txt | 18 --with-sysconfig-leaf-dir=SUBDIR.
|
/xen-4.10.0-shim-comet/xen/include/public/ |
A D | vm_event.h | 290 uint32_t leaf; member
|
/xen-4.10.0-shim-comet/xen/arch/x86/x86_emulate/ |
A D | x86_emulate.h | 416 uint32_t leaf,
|