Home | History | Annotate | Download | only in pub

Lines Matching refs:IRConst

289    IRConst 'c' has c.tag equal to Ico_U32, then it's a 32-bit constant,
308 IRConst;
310 /* IRConst constructors */
311 extern IRConst* IRConst_U1 ( Bool );
312 extern IRConst* IRConst_U8 ( UChar );
313 extern IRConst* IRConst_U16 ( UShort );
314 extern IRConst* IRConst_U32 ( UInt );
315 extern IRConst* IRConst_U64 ( ULong );
316 extern IRConst* IRConst_F32 ( Float );
317 extern IRConst* IRConst_F32i ( UInt );
318 extern IRConst* IRConst_F64 ( Double );
319 extern IRConst* IRConst_F64i ( ULong );
320 extern IRConst* IRConst_V128 ( UShort );
321 extern IRConst* IRConst_V256 ( UInt );
323 /* Deep-copy an IRConst */
324 extern IRConst* deepCopyIRConst ( const IRConst* );
326 /* Pretty-print an IRConst */
327 extern void ppIRConst ( const IRConst* );
330 extern Bool eqIRConst ( const IRConst*, const IRConst* );
2050 IRConst* con; /* The constant itself */
2174 extern IRExpr* IRExpr_Const ( IRConst* con );
2901 IRConst* dst; /* Jump target (constant only) */
2926 extern IRStmt* IRStmt_Exit ( IRExpr* guard, IRJumpKind jk, IRConst* dst,
3014 extern IRType typeOfIRConst ( const IRConst* );