// Part of the Carbon Language project, under the Apache License v2.0 with LLVM // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/primitives.carbon // // AUTOUPDATE // TIP: To test this file alone, run: // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/builtins/int/greater_eq.carbon // TIP: To dump output, run: // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/builtins/int/greater_eq.carbon // --- int_greater_eq.carbon library "[[@TEST_NAME]]"; fn GreaterEq(a: i32, b: i32) -> bool = "int.greater_eq"; fn Negate(a: i32) -> i32 = "int.snegate"; class True {} class False {} fn F(true_: True, false_: False) { false_ as (if GreaterEq(1, 2) then True else False); true_ as (if GreaterEq(1, 1) then True else False); true_ as (if GreaterEq(1, 0) then True else False); false_ as (if GreaterEq(Negate(1), 0) then True else False); true_ as (if GreaterEq(0, Negate(1)) then True else False); } fn RuntimeCallIsValid(a: i32, b: i32) -> bool { //@dump-sem-ir-begin return GreaterEq(a, b); //@dump-sem-ir-end } // --- literal.carbon library "[[@TEST_NAME]]"; fn GreaterEq(a: Core.IntLiteral, b: Core.IntLiteral) -> bool = "int.greater_eq"; class Expect(B: bool) {} fn Test(generic B: bool) -> Expect(B) { return {}; } fn F() { Test(GreaterEq(5, 5)) as Expect(true); Test(GreaterEq(5, 6)) as Expect(false); Test(GreaterEq(6, 5)) as Expect(true); Test(GreaterEq(-1, -1)) as Expect(true); Test(GreaterEq(-1, 1)) as Expect(false); Test(GreaterEq(1, -1)) as Expect(true); } // --- mixed.carbon library "[[@TEST_NAME]]"; fn GreaterEq(a: Core.IntLiteral, b: i32) -> bool = "int.greater_eq"; class Expect(B: bool) {} fn Test(generic B: bool) -> Expect(B) { return {}; } fn F() { Test(GreaterEq(5, 5)) as Expect(true); Test(GreaterEq(5, 6)) as Expect(false); Test(GreaterEq(6, 5)) as Expect(true); Test(GreaterEq(-1, -1)) as Expect(true); Test(GreaterEq(-1, 1)) as Expect(false); Test(GreaterEq(1, -1)) as Expect(true); } // CHECK:STDOUT: --- int_greater_eq.carbon // CHECK:STDOUT: // CHECK:STDOUT: constants { // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete] // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete] // CHECK:STDOUT: %GreaterEq.type: type = fn_type @GreaterEq [concrete] // CHECK:STDOUT: %GreaterEq: %GreaterEq.type = struct_value () [concrete] // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: fn @RuntimeCallIsValid(%a.param: %i32, %b.param: %i32) -> out %return.param: bool { // CHECK:STDOUT: !entry: // CHECK:STDOUT: %GreaterEq.ref: %GreaterEq.type = name_ref GreaterEq, file.%GreaterEq.decl [concrete = constants.%GreaterEq] // CHECK:STDOUT: %a.ref: %i32 = name_ref a, %a // CHECK:STDOUT: %b.ref: %i32 = name_ref b, %b // CHECK:STDOUT: %GreaterEq.call: init bool = call %GreaterEq.ref(%a.ref, %b.ref) // CHECK:STDOUT: return %GreaterEq.call // CHECK:STDOUT: // CHECK:STDOUT: !observes: // CHECK:STDOUT: } // CHECK:STDOUT: