• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /barrelfish-2018-10-04/kernel/include/target/x86_64/

Lines Matching refs:tmp

200     union x86_64_pdir_entry tmp;
201 tmp.raw = X86_64_PTABLE_CLEAR;
203 tmp.d.present = 1;
204 tmp.d.read_write = 1;
205 tmp.d.user_supervisor = 1;
206 tmp.d.base_addr = base >> 12;
208 *entry = tmp;
224 union x86_64_ptable_entry tmp;
225 tmp.raw = X86_64_PTABLE_CLEAR;
227 tmp.huge.present = bitmap & X86_64_PTABLE_PRESENT ? 1 : 0;
228 tmp.huge.read_write = bitmap & X86_64_PTABLE_READ_WRITE ? 1 : 0;
229 tmp.huge.user_supervisor = bitmap & X86_64_PTABLE_USER_SUPERVISOR ? 1 : 0;
230 tmp.huge.write_through = bitmap & X86_64_PTABLE_WRITE_THROUGH ? 1 : 0;
231 tmp.huge.cache_disabled = bitmap & X86_64_PTABLE_CACHE_DISABLED ? 1 : 0;
232 tmp.huge.global = bitmap & X86_64_PTABLE_GLOBAL_PAGE ? 1 : 0;
233 tmp.huge.attr_index = bitmap & X86_64_PTABLE_ATTR_INDEX ? 1 : 0;
234 tmp.huge.execute_disable = bitmap & X86_64_PTABLE_EXECUTE_DISABLE ? 1 : 0;
235 tmp.huge.always1 = 1;
236 tmp.huge.base_addr = base >> X86_64_HUGE_PAGE_BITS;
238 *entry = tmp;
254 union x86_64_ptable_entry tmp;
255 tmp.raw = X86_64_PTABLE_CLEAR;
257 tmp.large.present = bitmap & X86_64_PTABLE_PRESENT ? 1 : 0;
258 tmp.large.read_write = bitmap & X86_64_PTABLE_READ_WRITE ? 1 : 0;
259 tmp.large.user_supervisor = bitmap & X86_64_PTABLE_USER_SUPERVISOR ? 1 : 0;
260 tmp.large.write_through = bitmap & X86_64_PTABLE_WRITE_THROUGH ? 1 : 0;
261 tmp.large.cache_disabled = bitmap & X86_64_PTABLE_CACHE_DISABLED ? 1 : 0;
264 tmp.large.global = 0;
266 tmp.large.global = bitmap & X86_64_PTABLE_GLOBAL_PAGE ? 1 : 0;
268 tmp.large.attr_index = bitmap & X86_64_PTABLE_ATTR_INDEX ? 1 : 0;
269 tmp.large.execute_disable = bitmap & X86_64_PTABLE_EXECUTE_DISABLE ? 1 : 0;
270 tmp.large.always1 = 1;
271 tmp.large.vtd_snoop = bitmap & X86_64_VTD_PAGE_SNOOP ? 1 : 0;
272 tmp.large.base_addr = base >> 21;
274 *entry = tmp;
290 union x86_64_ptable_entry tmp;
291 tmp.raw = X86_64_PTABLE_CLEAR;
293 tmp.base.present = bitmap & X86_64_PTABLE_PRESENT ? 1 : 0;
294 tmp.base.read_write = bitmap & X86_64_PTABLE_READ_WRITE ? 1 : 0;
295 tmp.base.user_supervisor = bitmap & X86_64_PTABLE_USER_SUPERVISOR ? 1 : 0;
296 tmp.base.write_through = bitmap & X86_64_PTABLE_WRITE_THROUGH ? 1 : 0;
297 tmp.base.cache_disabled = bitmap & X86_64_PTABLE_CACHE_DISABLED ? 1 : 0;
298 tmp.base.attr_index = bitmap & X86_64_PTABLE_ATTR_INDEX ? 1 : 0;
301 tmp.base.global = 0;
303 tmp.base.global = bitmap & X86_64_PTABLE_GLOBAL_PAGE ? 1 : 0;
305 tmp.base.execute_disable = bitmap & X86_64_PTABLE_EXECUTE_DISABLE ? 1 : 0;
306 tmp.base.vtd_snoop = bitmap & X86_64_VTD_PAGE_SNOOP ? 1 : 0;
307 tmp.base.base_addr = base >> 12;
309 *entry = tmp;
325 union x86_64_ptable_entry tmp = *entry;
327 tmp.huge.present = bitmap & X86_64_PTABLE_PRESENT ? 1 : 0;
328 tmp.huge.read_write = bitmap & X86_64_PTABLE_READ_WRITE ? 1 : 0;
329 tmp.huge.user_supervisor = bitmap & X86_64_PTABLE_USER_SUPERVISOR ? 1 : 0;
330 tmp.huge.write_through = bitmap & X86_64_PTABLE_WRITE_THROUGH ? 1 : 0;
331 tmp.huge.cache_disabled = bitmap & X86_64_PTABLE_CACHE_DISABLED ? 1 : 0;
333 tmp.huge.global = 0;
335 tmp.huge.global = bitmap & X86_64_PTABLE_GLOBAL_PAGE ? 1 : 0;
337 tmp.huge.attr_index = bitmap & X86_64_PTABLE_ATTR_INDEX ? 1 : 0;
338 tmp.huge.execute_disable = bitmap & X86_64_PTABLE_EXECUTE_DISABLE ? 1 : 0;
339 tmp.huge.always1 = 1;
341 *entry = tmp;
357 union x86_64_ptable_entry tmp = *entry;
359 tmp.large.present = bitmap & X86_64_PTABLE_PRESENT ? 1 : 0;
360 tmp.large.read_write = bitmap & X86_64_PTABLE_READ_WRITE ? 1 : 0;
361 tmp.large.user_supervisor = bitmap & X86_64_PTABLE_USER_SUPERVISOR ? 1 : 0;
362 tmp.large.write_through = bitmap & X86_64_PTABLE_WRITE_THROUGH ? 1 : 0;
363 tmp.large.cache_disabled = bitmap & X86_64_PTABLE_CACHE_DISABLED ? 1 : 0;
366 tmp.large.global = 0;
368 tmp.large.global = bitmap & X86_64_PTABLE_GLOBAL_PAGE ? 1 : 0;
370 tmp.large.attr_index = bitmap & X86_64_PTABLE_ATTR_INDEX ? 1 : 0;
371 tmp.large.execute_disable = bitmap & X86_64_PTABLE_EXECUTE_DISABLE ? 1 : 0;
372 tmp.large.always1 = 1;
374 *entry = tmp;
389 union x86_64_ptable_entry tmp = *entry;
391 tmp.base.present = bitmap & X86_64_PTABLE_PRESENT ? 1 : 0;
392 tmp.base.read_write = bitmap & X86_64_PTABLE_READ_WRITE ? 1 : 0;
393 tmp.base.user_supervisor = bitmap & X86_64_PTABLE_USER_SUPERVISOR ? 1 : 0;
394 tmp.base.write_through = bitmap & X86_64_PTABLE_WRITE_THROUGH ? 1 : 0;
395 tmp.base.cache_disabled = bitmap & X86_64_PTABLE_CACHE_DISABLED ? 1 : 0;
396 tmp.base.attr_index = bitmap & X86_64_PTABLE_ATTR_INDEX ? 1 : 0;
399 tmp.base.global = 0;
401 tmp.base.global = bitmap & X86_64_PTABLE_GLOBAL_PAGE ? 1 : 0;
403 tmp.base.execute_disable = bitmap & X86_64_PTABLE_EXECUTE_DISABLE ? 1 : 0;
405 *entry = tmp;
410 union x86_64_pdir_entry tmp = *entry;
412 tmp.d.present = bitmap & X86_64_PTABLE_PRESENT ? 1 : 0;
413 tmp.d.read_write = bitmap & X86_64_PTABLE_READ_WRITE ? 1 : 0;
414 tmp.d.user_supervisor = bitmap & X86_64_PTABLE_USER_SUPERVISOR ? 1 : 0;
415 tmp.d.write_through = bitmap & X86_64_PTABLE_WRITE_THROUGH ? 1 : 0;
416 tmp.d.cache_disabled = bitmap & X86_64_PTABLE_CACHE_DISABLED ? 1 : 0;
417 tmp.d.execute_disable = bitmap & X86_64_PTABLE_EXECUTE_DISABLE ? 1 : 0;
419 *entry = tmp;