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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp207 bool check_value_mask(intptr_t mask, intptr_t masked_value) const { function in class:LIR_OprDesc
352 bool is_pointer() const { return check_value_mask(pointer_mask, pointer_value); }
371 bool is_stack() const { validate_type(); return check_value_mask(kind_mask, stack_value); }
372 bool is_single_stack() const { validate_type(); return check_value_mask(kind_mask | size_mask, stack_value | single_size); }
373 bool is_double_stack() const { validate_type(); return check_value_mask(kind_mask | size_mask, stack_value | double_size); }
375 bool is_cpu_register() const { validate_type(); return check_value_mask(kind_mask, cpu_register); }
376 bool is_virtual_cpu() const { validate_type(); return check_value_mask(kind_mask | virtual_mask, cpu_register | virtual_mask); }
377 bool is_fixed_cpu() const { validate_type(); return check_value_mask(kind_mask | virtual_mask, cpu_register); }
378 bool is_single_cpu() const { validate_type(); return check_value_mask(kind_mask | size_mask, cpu_register | single_size); }
379 bool is_double_cpu() const { validate_type(); return check_value_mask(kind_mas
[all...]

Completed in 375 milliseconds