clang 使用以下方案在 llvm ir 中定义具体类型:
%"mytype" = type {virtual_method_types, field_types, super_types}
为了调用虚拟方法(例如 virtual int f(){}),使用了以下方案:
%0 = load %"mytype"** %this
%1 = bitcast %"mytype"* %0 to i32 (%"mytype"*)***
%vtable = load i32 (%"mytype"*)*** %1
%method = getelementptr inbounds i32 (%"mytype"*)** %vtable, i64 0 (index of f() in vt)
%ld = load i32 (%"mytype"*)** %method
%call = call i32 (%"mytype"*)* %ld (%"mytype"* %0)
但是,如果改用下面的方案,上面的代码应该做些什么来防止 seg fault 呢?
%"mytype" = type {field_types, super_types, virtual_method_types}