Lines Matching refs:InstPtr
139 stack: Vec<InstPtr>,
266 /// `InstPtr` is a 32 bit pointer into a sequence of opcodes (i.e., it indexes
271 type InstPtr = u32;
276 fn push_inst_ptr(data: &mut Vec<u8>, prev: &mut InstPtr, ip: InstPtr) {
441 + (self.stack.len() * mem::size_of::<InstPtr>());
979 inst.goto as InstPtr,
1055 ip: InstPtr,
1084 ip = inst.goto as InstPtr;
1087 ip = inst.goto as InstPtr;
1090 ip = inst.goto as InstPtr;
1093 ip = inst.goto as InstPtr;
1096 ip = inst.goto as InstPtr;
1101 ip = inst.goto as InstPtr;
1104 ip = inst.goto as InstPtr;
1107 ip = inst.goto as InstPtr;
1117 ip = inst.goto as InstPtr;
1120 self.cache.stack.push(inst.goto2 as InstPtr);
1121 ip = inst.goto1 as InstPtr;