美文网首页LLVM
OpenMP编译成LLVMIR

OpenMP编译成LLVMIR

作者: HaoMengHIT | 来源:发表于2019-03-15 13:50 被阅读0次

https://clang-omp.github.io/

介绍

目前clang/llvm编译器已经支持OpenMP,目前,OpenMP 3.1已经被clang/llvm 3.7完全支持。

方法

这是一个openmp程序


#include <omp.h>

#include <stdio.h>

int main() {

#pragma omp parallel

printf("Hello from thread %d, nthreads %d\n", omp_get_thread_num(), omp_get_num_threads());

}

将更改程序转化为相应的IR代码:


clang -fopenmp -emit-llvm -S test.c -o test.ll

IR代码如下:


; ModuleID = 'test.bc'

target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"

target triple = "x86_64-pc-linux-gnu"

%ident_t = type { i32, i32, i32, i32, i8* }

@.str = private unnamed_addr constant [35 x i8] c"Hello from thread %d, nthreads %d\0A\00", align 1

@.str.1 = private unnamed_addr constant [23 x i8] c";unknown;unknown;0;0;;\00", align 1

@0 = private unnamed_addr constant %ident_t { i32 0, i32 2, i32 0, i32 0, i8* getelementptr inbounds ([23 x i8], [23 x i8]* @.str.1, i32 0, i32 0) }, align 8

; Function Attrs: nounwind uwtable

define i32 @main() #0 {

  call void (%ident_t*, i32, void (i32*, i32*, ...)*, ...) @__kmpc_fork_call(%ident_t* @0, i32 0, void (i32*, i32*, ...)* bitcast (void (i32*, i32*)* @.omp_outlined. to void (i32*, i32*, ...)*))

  ret i32 0

}

; Function Attrs: nounwind uwtable

define internal void @.omp_outlined.(i32* noalias %.global_tid., i32* noalias %.bound_tid.) #0 {

  %1 = alloca i32*, align 8

  %2 = alloca i32*, align 8

  store i32* %.global_tid., i32** %1, align 8

  store i32* %.bound_tid., i32** %2, align 8

  %3 = call i32 @omp_get_thread_num()

  %4 = call i32 @omp_get_num_threads()

  %5 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([35 x i8], [35 x i8]* @.str, i32 0, i32 0), i32 %3, i32 %4)

  ret void

}

declare i32 @printf(i8*, ...) #1

declare i32 @omp_get_thread_num() #1

declare i32 @omp_get_num_threads() #1

declare void @__kmpc_fork_call(%ident_t*, i32, void (i32*, i32*, ...)*, ...)

attributes #0 = { nounwind uwtable "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2" "unsafe-fp-math"="false" "use-soft-float"="false" }

attributes #1 = { "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2" "unsafe-fp-math"="false" "use-soft-float"="false" }

!llvm.ident = !{!0}

!0 = !{!"clang version 3.8.0-2ubuntu4 (tags/RELEASE_380/final)"}

其中mpc_fork_call是OpenMP定义的运行时函数,用来生成线程池,每个线程将执行函数omp_outlined中的代码,该函数的代码就是对应并行域中的代码。

相关文章

  • OpenMP编译成LLVMIR

    https://clang-omp.github.io/ 介绍 目前clang/llvm编译器已经支持OpenMP...

  • OpenMP入门指南

    What's OpenMP The OpenMP API supports multi-platform shar...

  • Cython:OpenMP配置

    在Cython中使用parallel、prange或者OpenMP时,除了添加/openmp编译参数,还需要将vc...

  • openMP 函数总结(并行程序设计导论)

    本篇文章只是记录api的用法和回顾,方便记忆 openMP openMP提供“基于指令”的共享内存API。这就意味...

  • Windows上配置MPI环境

    本文目标:配置MS-MPI,mpich2, openmp的运行环境,openmp配置非常简单,关键是算法。 mpi...

  • 多线程 Windows MSVC OpenMP

    Thread affinity with Windows, MSVC, and OpenMP[https://st...

  • Mac下安装OpenMP并完成编译

    OpenMP在Mac上的安装,涉及到一些编译器的历史。。。 OpenMP环境添加(Mac) 安装错误 安装错误参考...

  • 杂记

    并行计算之OpenMP入门简介 对基于数据分集的多线程程序设计,OpenMP是一个很好的选择。同时,使用OpenM...

  • 【转载】OpenMP、MPICH与OpenMPI

    原文网址 openmp比较简单,修改现有的大段代码也容易。基本上openmp只要在已有程序基础上根据需要加并行语句...

  • C++速度很快

    测试内存访问密集型 计算10亿个整型数的和,开了OpenMP,花费时间是700毫秒,不开OpenMP则更快,150...

网友评论

    本文标题:OpenMP编译成LLVMIR

    本文链接:https://www.haomeiwen.com/subject/odvlmqtx.html