//-----------------------------memory_inputs-------------------------------- const MachOper* MachNode::memory_inputs(Node* &base, Node* &index) const { const MachOper* oper = memory_operand(); if (oper == (MachOper*)-1) { base = NodeSentinel; index = NodeSentinel; } else { base = NULL; index = NULL; if (oper != NULL) { // It has a unique memory operand. Find its index. int oper_idx = num_opnds(); while (--oper_idx >= 0) { if (_opnds[oper_idx] == oper) break; } int oper_pos = operand_index(oper_idx); int base_pos = oper->base_position(); if (base_pos >= 0) { base = _in[oper_pos+base_pos]; } int index_pos = oper->index_position(); if (index_pos >= 0) { index = _in[oper_pos+index_pos]; } } } return oper; }
int long_memory_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED) { return (memory_operand (op, mode)) && ( #line 938 "../.././gcc/config/i386/predicates.md" (memory_address_length (op) != 0)); }
int call_insn_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED) { return (constant_call_address_operand (op, mode)) || ((call_register_no_elim_operand (op, mode)) || (memory_operand (op, mode))); }
int cmpxchg8b_pic_memory_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED) { return (memory_operand (op, mode)) && ( (cmpxchg8b_pic_memory_operand_1 (op, mode))); }
int memory_displacement_only_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED) { return (memory_operand (op, mode)) && ( (memory_displacement_only_operand_1 (op, mode))); }