/dports/lang/mono/mono-5.10.1.57/external/corert/src/ILCompiler.WebAssembly/src/CodeGen/ |
H A D | WebAssemblyObjectWriter.cs | 293 var bitCast = LLVM.ConstBitCast(valRef, pointerType); in ToLLVMValueRef() 344 var ptrValue = LLVM.ConstBitCast(pointedAtValue, intPtrType); in Fill() 359 var ptrValue = LLVM.ConstBitCast(ptrValAsInt8Ptr, intPtrType); in Fill() 457 var pointerToRealSymbol = LLVM.ConstBitCast(realSymbol, int8PtrType); in EmitSymbolDef() 460 var symbolPointerDataAsInt32Ptr = LLVM.ConstBitCast(symbolPointerData, intPtrType); in EmitSymbolDef()
|
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llgo/irgen/ |
H A D | ssa.go | 188 global = llvm.ConstBitCast(global, u.llvmtypes.ToLLVM(v.Type())) 217 global = llvm.ConstBitCast(global, llvm.PointerType(llvm.Int8Type(), 0)) 228 llfn = llvm.ConstBitCast(llfn, llvm.PointerType(llvm.Int8Type(), 0)) 249 llfd = llvm.ConstBitCast(llfd, llvm.PointerType(llvm.Int8Type(), 0)) 309 llfd.SetInitializer(llvm.ConstBitCast(llfn, llvm.PointerType(llvm.Int8Type(), 0))) 584 …fr.runtime.registerGcRoots.callOnly(fr, llvm.ConstBitCast(rootsglobal, llvm.PointerType(llvm.Int8T… 691 llglobal = llvm.ConstBitCast(llglobal, fr.llvmtypes.ToLLVM(v.Type())) 879 ptr := llvm.ConstBitCast(global, llvm.PointerType(llvm.Int8Type(), 0)) 1074 llfn = llvm.ConstBitCast(llfn, llvm.PointerType(llvm.Int8Type(), 0)) 1296 llfn = llvm.ConstBitCast(llfn, llvm.PointerType(llvm.Int8Type(), 0))
|
H A D | attribute.go | 134 curr.ReplaceAllUsesWith(llvm.ConstBitCast(v, curr.Type()))
|
H A D | typemap.go | 371 return llvm.ConstBitCast(tm.getTypeDescriptorPointer(t), llvm.PointerType(llvm.Int8Type(), 0)) 1211 tdi.gc.ReplaceAllUsesWith(llvm.ConstBitCast(newGc, tdi.gc.Type())) 1214 tdi.gcPtr = llvm.ConstBitCast(newGc, i8ptr) 1465 fn = llvm.ConstBitCast(fn, tm.funcValType.StructElementTypes()[0]) 1509 ptr := llvm.ConstBitCast(global, llvm.PointerType(tm.commonTypeType, 0)) 1513 gcPtr := llvm.ConstBitCast(gc, llvm.PointerType(tm.ctx.Int8Type(), 0)) 1585 imtptr := llvm.ConstBitCast(imt, i8ptr) 2008 strglobal = llvm.ConstBitCast(strglobal, llvm.PointerType(llvm.Int8Type(), 0)) 2037 globalptr = llvm.ConstBitCast(globalptr, ptrtyp)
|
H A D | value.go | 67 ptr = llvm.ConstBitCast(ptr, i8ptr)
|
/dports/devel/tinygo/tinygo-0.14.1/interp/ |
H A D | values.go | 253 newBucketPtrCast := llvm.ConstBitCast(newBucketPtr, i8ptrType) 276 llvm.ConstBitCast(bucketPtr, i8ptrType), // buckets
|
/dports/devel/tinygo/tinygo-0.14.1/compiler/llvmutil/ |
H A D | wordpack.go | 64 return llvm.ConstBitCast(global, i8ptrType)
|
/dports/devel/tinygo/tinygo-0.14.1/transform/ |
H A D | gc.go | 357 bitmapOld.ReplaceAllUsesWith(llvm.ConstBitCast(bitmapNew, bitmapOld.Type()))
|
/dports/cad/ghdl/ghdl-1.0.0/src/ortho/llvm4-nodebug/ |
H A D | ortho_llvm.adb | 774 (LLVM => ConstBitCast (Subprg.LLVM, Get_LLVM_Type (Atype)), 795 return O_Cnode'(LLVM => ConstBitCast (Lvalue.LLVM, 1209 Res := ConstBitCast (Rec.LLVM, El.Ptr_Type);
|
H A D | llvm-core.ads | 431 function ConstBitCast(ConstantVal : ValueRef; ToType : TypeRef) subprogspec 953 pragma Import (C, ConstBitCast, "LLVMConstBitCast");
|
/dports/cad/ghdl/ghdl-1.0.0/src/ortho/llvm-nodebug/ |
H A D | ortho_llvm.adb | 771 (LLVM => ConstBitCast (Subprg.LLVM, Get_LLVM_Type (Atype)), 792 return O_Cnode'(LLVM => ConstBitCast (Lvalue.LLVM, 1206 Res := ConstBitCast (Rec.LLVM, El.Ptr_Type);
|
H A D | llvm-core.ads | 453 function ConstBitCast(ConstantVal : ValueRef; ToType : TypeRef) subprogspec 985 pragma Import (C, ConstBitCast, "LLVMConstBitCast");
|
/dports/cad/ghdl/ghdl-1.0.0/src/ortho/llvm35/ |
H A D | llvm-core.ads | 459 function ConstBitCast(ConstantVal : ValueRef; ToType : TypeRef) subprogspec 1060 pragma Import (C, ConstBitCast, "LLVMConstBitCast");
|
H A D | ortho_llvm.adb | 1107 (LLVM => ConstBitCast (Subprg.LLVM, Get_LLVM_Type (Atype)), 1128 return O_Cnode'(LLVM => ConstBitCast (Lvalue.LLVM, 1549 Res := ConstBitCast (Rec.LLVM, El.Ptr_Type);
|
/dports/devel/tinygo/tinygo-0.14.1/compiler/ |
H A D | interface.go | 73 references = llvm.ConstBitCast(structGlobal, global.Type())
|
/dports/devel/llvm70/llvm-7.0.1.src/bindings/go/llvm/ |
H A D | ir.go | 928 func ConstBitCast(v Value, t Type) (rv Value) { rv.C = C.LLVMConstBitCast(v.C, t.C); return } func
|
/dports/devel/llvm80/llvm-8.0.1.src/bindings/go/llvm/ |
H A D | ir.go | 939 func ConstBitCast(v Value, t Type) (rv Value) { rv.C = C.LLVMConstBitCast(v.C, t.C); return } func
|
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/bindings/go/llvm/ |
H A D | ir.go | 966 func ConstBitCast(v Value, t Type) (rv Value) { rv.C = C.LLVMConstBitCast(v.C, t.C); return } func
|
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/bindings/go/llvm/ |
H A D | ir.go | 966 func ConstBitCast(v Value, t Type) (rv Value) { rv.C = C.LLVMConstBitCast(v.C, t.C); return } func
|
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/bindings/go/llvm/ |
H A D | ir.go | 966 func ConstBitCast(v Value, t Type) (rv Value) { rv.C = C.LLVMConstBitCast(v.C, t.C); return } func
|
/dports/devel/llvm10/llvm-10.0.1.src/bindings/go/llvm/ |
H A D | ir.go | 965 func ConstBitCast(v Value, t Type) (rv Value) { rv.C = C.LLVMConstBitCast(v.C, t.C); return } func
|
/dports/graphics/llvm-mesa/llvm-13.0.1.src/bindings/go/llvm/ |
H A D | ir.go | 966 func ConstBitCast(v Value, t Type) (rv Value) { rv.C = C.LLVMConstBitCast(v.C, t.C); return } func
|
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/bindings/go/llvm/ |
H A D | ir.go | 966 func ConstBitCast(v Value, t Type) (rv Value) { rv.C = C.LLVMConstBitCast(v.C, t.C); return } func
|
/dports/devel/llvm11/llvm-11.0.1.src/bindings/go/llvm/ |
H A D | ir.go | 966 func ConstBitCast(v Value, t Type) (rv Value) { rv.C = C.LLVMConstBitCast(v.C, t.C); return } func
|
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/bindings/go/llvm/ |
H A D | ir.go | 966 func ConstBitCast(v Value, t Type) (rv Value) { rv.C = C.LLVMConstBitCast(v.C, t.C); return } func
|