mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
a15d888abf
This commit connects the machine function analysis pass (which creates machine functions) to the MIR parser, which will initialize the machine functions with the state from the MIR file and reconstruct the machine IR. This commit introduces a new interface called 'MachineFunctionInitializer', which can be used to provide custom initialization for the machine functions. This commit also introduces a new diagnostic class called 'DiagnosticInfoMIRParser' which is used for MIR parsing errors. This commit modifies the default diagnostic handling in LLVMContext - now the the diagnostics are printed directly into llvm::errs() so that the MIR parsing errors can be printed with colours. Reviewers: Justin Bogner Differential Revision: http://reviews.llvm.org/D9928 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239753 91177308-0d34-0410-b5e6-96231b3b80d8
36 lines
898 B
YAML
36 lines
898 B
YAML
# RUN: llc -start-after branch-folder -stop-after branch-folder -o /dev/null %s | FileCheck %s
|
|
# This test ensures that the LLVM IR that's embedded with MIR is parsed
|
|
# correctly.
|
|
|
|
--- |
|
|
; CHECK: define i32 @foo(i32 %x, i32 %y)
|
|
; CHECK: %z = alloca i32, align 4
|
|
; CHECK: store i32 %x, i32* %z, align 4
|
|
; CHECK: br label %Test
|
|
; CHECK: Test:
|
|
; CHECK: %m = load i32, i32* %z, align 4
|
|
; CHECK: %cond = icmp eq i32 %y, %m
|
|
; CHECK: br i1 %cond, label %IfEqual, label %IfUnequal
|
|
; CHECK: IfEqual:
|
|
; CHECK: ret i32 1
|
|
; CHECK: IfUnequal:
|
|
; CHECK: ret i32 0
|
|
define i32 @foo(i32 %x, i32 %y) {
|
|
%z = alloca i32, align 4
|
|
store i32 %x, i32* %z, align 4
|
|
br label %Test
|
|
Test:
|
|
%m = load i32, i32* %z, align 4
|
|
%cond = icmp eq i32 %y, %m
|
|
br i1 %cond, label %IfEqual, label %IfUnequal
|
|
IfEqual:
|
|
ret i32 1
|
|
IfUnequal:
|
|
ret i32 0
|
|
}
|
|
|
|
...
|
|
---
|
|
name: foo
|
|
...
|