本文整理汇总了Golang中e8vm/io/e8vm/g8/types.T类的典型用法代码示例。如果您正苦于以下问题:Golang T类的具体用法?Golang T怎么用?Golang T使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了T类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: arrayElementSize
func arrayElementSize(t types.T) int32 {
ret := t.Size()
if t.RegSizeAlign() {
return types.RegSizeAlignUp(ret)
}
return ret
}
示例2: buildCast
func buildCast(b *builder, from *ref, t types.T) *ref {
srcType := from.Type()
ret := b.newTemp(t)
if types.IsNil(srcType) {
size := t.Size()
if size == arch8.RegSize {
return newRef(t, ir.Num(0))
}
if _, ok := t.(*types.Slice); !ok {
panic("bug")
}
ret := b.newTemp(t)
b.b.Zero(ret.IR())
return ret
}
if c, ok := srcType.(*types.Const); ok {
if v, ok := types.NumConst(srcType); ok && types.IsInteger(t) {
return newRef(t, constNumIr(v, t))
}
// TODO: we do not support typed const right?
// so why need this line?
srcType = c.Type // using the underlying type
}
if types.IsInteger(t) && types.IsInteger(srcType) {
b.b.Arith(ret.IR(), nil, "cast", from.IR())
return ret
}
if regSizeCastable(t, srcType) {
b.b.Arith(ret.IR(), nil, "", from.IR())
return ret
}
panic("bug")
}
示例3: newGlobalVar
func (b *builder) newGlobalVar(t types.T, name string) ir.Ref {
name = b.anonyName(name)
return b.p.NewGlobalVar(t.Size(), name, types.IsByte(t), t.RegSizeAlign())
}
示例4: newLocal
func (b *builder) newLocal(t types.T, name string) ir.Ref {
return b.f.NewLocal(t.Size(), name,
types.IsByte(t), t.RegSizeAlign(),
)
}
示例5: newTempIR
func (b *builder) newTempIR(t types.T) ir.Ref {
return b.f.NewTemp(t.Size(), types.IsByte(t), t.RegSizeAlign())
}