static void fixnum_or(JITOperations& ops, Inliner& i) { Value* lint = ops.cast_int(i.recv()); Value* rint = ops.cast_int(i.arg(0)); Value* anded = BinaryOperator::CreateAnd(lint, rint, "fixnums_anded", ops.current_block()); Value* fix_mask = ConstantInt::get(ops.NativeIntTy, TAG_FIXNUM_MASK); Value* fix_tag = ConstantInt::get(ops.NativeIntTy, TAG_FIXNUM); Value* masked = BinaryOperator::CreateAnd(anded, fix_mask, "masked", ops.current_block()); Value* cmp = ops.create_equal(masked, fix_tag, "is_fixnum"); BasicBlock* push = ops.new_block("push_bit_or"); BasicBlock* send = i.failure(); ops.create_conditional_branch(push, send, cmp); ops.set_block(push); Value* ored = BinaryOperator::CreateOr(lint, rint, "fixnums_ored", ops.current_block()); i.exception_safe(); i.set_result(ops.as_obj(ored)); }
static void call_tuple_put(JITOperations& ops, Inliner& i) { Value* rec = i.recv(); Value* cmp = ops.check_type_bits(rec, rubinius::Tuple::type); BasicBlock* is_tuple = ops.new_block("is_tuple"); BasicBlock* access = ops.new_block("tuple_put"); BasicBlock* is_other = i.failure(); ops.create_conditional_branch(is_tuple, is_other, cmp); ops.set_block(is_tuple); Value* index_val = i.arg(0); Value* fix_cmp = ops.check_if_fixnum(index_val); Value* tup = ops.upcast(rec, "Tuple"); Value* index = ops.fixnum_to_native(index_val); Value* full_size = ops.get_tuple_size(tup); Value* size_cmp = ops.create_less_than(index, full_size, "is_in_bounds"); // Combine fix_cmp and size_cmp to validate entry into access code Value* access_cmp = ops.create_and(fix_cmp, size_cmp, "access_cmp"); ops.create_conditional_branch(access, is_other, access_cmp); ops.set_block(access); Value* value = i.arg(1); Value* idx[] = { ConstantInt::get(ops.state()->Int32Ty, 0), ConstantInt::get(ops.state()->Int32Ty, offset::tuple_field), index }; Value* gep = ops.create_gep(tup, idx, 3, "field_pos"); ops.create_store(value, gep); ops.write_barrier(tup, value); i.exception_safe(); i.set_result(value); }
static void fixnum_compare(MathOperation op, JITOperations& ops, Inliner& i) { Value* lint = ops.cast_int(i.recv()); Value* rint = ops.cast_int(i.arg(0)); Value* anded = BinaryOperator::CreateAnd(lint, rint, "fixnums_anded", ops.current_block()); Value* fix_mask = ConstantInt::get(ops.NativeIntTy, TAG_FIXNUM_MASK); Value* fix_tag = ConstantInt::get(ops.NativeIntTy, TAG_FIXNUM); Value* masked = BinaryOperator::CreateAnd(anded, fix_mask, "masked", ops.current_block()); Value* cmp = ops.create_equal(masked, fix_tag, "is_fixnum"); BasicBlock* push = ops.new_block("push_le"); BasicBlock* send = i.failure(); ops.create_conditional_branch(push, send, cmp); ops.set_block(push); Value* performed = 0; switch(op) { case cEqual: performed = ops.b().CreateICmpEQ(lint, rint, "fixnum.eq"); break; case cLessThan: performed = ops.b().CreateICmpSLT(lint, rint, "fixnum.lt"); break; case cLessThanEqual: performed = ops.b().CreateICmpSLE(lint, rint, "fixnum.le"); break; case cGreaterThan: performed = ops.b().CreateICmpSGT(lint, rint, "fixnum.gt"); break; case cGreaterThanEqual: performed = ops.b().CreateICmpSGE(lint, rint, "fixnum.ge"); break; default: abort(); } Value* le = ops.b().CreateSelect( performed, ops.constant(Qtrue), ops.constant(Qfalse)); i.use_send_for_failure(); i.exception_safe(); i.set_result(ops.as_obj(le)); }
static void fixnum_neg(JITOperations& ops, Inliner& i) { BasicBlock* use_send = i.failure(); BasicBlock* inlined = ops.new_block("fixnum_neg"); Value* self = i.recv(); Value* cmp = ops.check_if_fixnum(self); ops.create_conditional_branch(inlined, use_send, cmp); ops.set_block(inlined); Value* native = ops.fixnum_strip(self); Value* neg = BinaryOperator::CreateSub( ops.Zero, native, "to_neg", ops.current_block()); Value* more = BinaryOperator::CreateShl(neg, ops.One, "shl", ops.current_block()); Value* tagged = BinaryOperator::CreateOr(more, ops.One, "or", ops.current_block()); i.exception_safe(); i.set_result(ops.as_obj(tagged)); }