Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Begin testing emitted LLVM IR #5073

Closed
bstrie opened this issue Feb 21, 2013 · 5 comments
Closed

Begin testing emitted LLVM IR #5073

bstrie opened this issue Feb 21, 2013 · 5 comments
Labels
A-codegen Area: Code generation A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-testsuite Area: The testsuite used to check the correctness of rustc C-enhancement Category: An issue proposing an enhancement or a PR with one. I-slow Issue: Problems and improvements with respect to performance of generated code. P-low Low priority

Comments

@bstrie
Copy link
Contributor

bstrie commented Feb 21, 2013

<@pcwalton> strcat: it would be nice to have if foo == true just compile
            into mov eax,foo; test eax,eax; jne ... instead of mov
            eax,whatever; cmp eax,1; jne ...
<@pcwalton> err
<@pcwalton> mov eax,whatever; cmp al,1; jne ...
< strcat> yeah
< strcat> pcwalton: once the range asserts are there, LLVM will compile
          trunc to i1 and then a br to that
< strcat> that's what clang does
< strcat> if you don't put range asserts, it uses an AND for the trunc
<@pcwalton> eww
<@pcwalton> and al,feh I guess?
<@pcwalton> err
<@pcwalton> what am I on
<@pcwalton> and al,1
< strcat> pcwalton: yeah
< strcat> that's one of the things the range asserts will be good for
<@pcwalton> does and set the condition codes?
< strcat> pcwalton: not sure
< strcat> pcwalton: I'm just trying to copy clang as closely as possible
          and not worry about the details :P
< strcat> pcwalton: the LLVM optimizations seem to be very specialized
          for what clang outputs
<@pcwalton> not surprising
< strcat> pcwalton: because even with the range assert, I don't think it
          will avoid the cmp unless you do the trunc and br yourself
< strcat> they do a specific optimization for trunc when ranges are known
          (for clang)

It would be nice to begin testing the emitted LLVM IR to ensure that an expected optimization isn't suddenly deactivated under our noses, especially if LLVM bases its optimizations off of Clang-specific patterns.

@catamorphism
Copy link
Contributor

I'm not sure whether this was ever nominated properly, but maturity #4 seems right to me.

@graydon
Copy link
Contributor

graydon commented Aug 2, 2013

We are now doing codegen tests against clang, with ratcheting turned on. #7461 / #7623 at least gives us those. Would you want to get more-specific than that? I suppose we can try to replicate the search-for-a-pattern directives that we have in the other compiletests, to scan the generated .ll file for a specific idiom? Or a specific instruction-count? Currently we're just ratcheting the rustc:clang LLVM code size ratio on each testcase.

@pnkfelix
Copy link
Member

Need not block 1.0. Assigning P-low.

@steveklabnik steveklabnik added the C-enhancement Category: An issue proposing an enhancement or a PR with one. label Apr 16, 2015
@sanxiyn
Copy link
Member

sanxiyn commented Oct 5, 2015

Can this be closed now? We now run tests under src/test/codegen using LLVM's FileCheck tool.

@dotdash
Copy link
Contributor

dotdash commented Oct 5, 2015

Yeah, since this says "begin testing", I think it's fair to close this. We'll probably want to extend tests to check for optimizations and/or assembly results later on, but that's no longer in the scope of this issue I think.

@dotdash dotdash closed this as completed Oct 5, 2015
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
A-codegen Area: Code generation A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-testsuite Area: The testsuite used to check the correctness of rustc C-enhancement Category: An issue proposing an enhancement or a PR with one. I-slow Issue: Problems and improvements with respect to performance of generated code. P-low Low priority
Projects
None yet
Development

No branches or pull requests

7 participants