Displaying 2 results from an estimated 2 matches for "_const".
Did you mean:
const
2010 Jun 04
5
[LLVMdev] Speculative phi elimination at the top of a loop?
...oop bb.i, calling a C++ inner class virtual method in SSA:
---------
define void @test() {
entry:
%0 = alloca %struct.Foo, align 8
br label %bb.i
bb.i:
%1 = phi %struct.Foo* [ %11, %bb.i ], [ %0, %entry ]
%t = phi %struct.Baseclass* [ %5, %bb.i ], [ getelementptr inbounds (%struct.Bar* @_Const, i64 0, i32 0), %entry ]
%2 = getelementptr inbounds %struct.Baseclass* %t, i64 0, i32 1
%3 = load %struct.Innerclass** %2, align 8
%4 = getelementptr inbounds %struct.Innerclass* %3, i64 0, i32 1
%5 = load %struct.Baseclass** %4, align 8
%6 = getelementptr inbounds %struct.Baseclass* %5,...
2009 Dec 31
1
[PATCH] Autogenerate uureg opcode macros
...188 100644
--- a/src/gallium/programs/galliumut/uureg.h
+++ b/src/gallium/programs/galliumut/uureg.h
@@ -60,7 +60,7 @@ static inline struct ureg_src _src(const struct ureg_src& src) {return src;}
#define _OUTPUT(v, n, i) struct ureg_dst v = ureg_DECL_output(ureg, TGSI_SEMANTIC_##n, i)
#define _CONST_(v, i) struct ureg_src v = ureg_DECL_constant(ureg, i)
#define _CONST(v, s) UREG_CONST(v, ureg, s)
- #define _CONST_MAT3(v, s) UREG_CONST_MAT3(v, ureg, s)
+#define _CONST_MAT3(v, s) UREG_CONST_MAT3(v, ureg, s)
#define _CONST_MAT4(v, s) UREG_CONST_MAT4(v, ureg, s)
#define _ADDRESS(v) struct ureg_...