Searched refs:InstPtr (Results 1 - 8 of 8) sorted by relevance
/third_party/rust/crates/regex/src/ |
H A D | prog.rs | 12 /// `InstPtr` represents the index of an instruction in a regex program. 13 pub type InstPtr = usize; types 24 pub matches: Vec<InstPtr>, 35 pub start: InstPtr, 152 + (self.matches.len() * mem::size_of::<InstPtr>()) in approximate_size() 312 pub goto: InstPtr, 323 pub goto1: InstPtr, 326 pub goto2: InstPtr, 334 pub goto: InstPtr, 365 pub goto: InstPtr, [all...] |
H A D | compile.rs | 12 EmptyLook, Inst, InstBytes, InstChar, InstEmptyLook, InstPtr, InstRanges, 24 entry: InstPtr, 752 fn fill(&mut self, hole: Hole, goto: InstPtr) { in fill() 774 goto1: Option<InstPtr>, in fill_split() 775 goto2: Option<InstPtr>, in fill_split() 850 One(InstPtr), 870 Split1(InstPtr), 871 Split2(InstPtr), 875 fn fill(&mut self, goto: InstPtr) { in fill() 902 fn fill_split(&mut self, goto1: InstPtr, goto [all...] |
H A D | dfa.rs | 139 stack: Vec<InstPtr>, 266 /// `InstPtr` is a 32 bit pointer into a sequence of opcodes (i.e., it indexes 271 type InstPtr = u32; types 276 fn push_inst_ptr(data: &mut Vec<u8>, prev: &mut InstPtr, ip: InstPtr) { in push_inst_ptr() 441 + (self.stack.len() * mem::size_of::<InstPtr>()); in reset_size() 979 inst.goto as InstPtr, in exec_byte() 1055 ip: InstPtr, in follow_epsilons() 1084 ip = inst.goto as InstPtr; in follow_epsilons() 1087 ip = inst.goto as InstPtr; in follow_epsilons() [all...] |
H A D | backtrack.rs | 21 use crate::prog::{InstPtr, Program}; 75 Inst { ip: InstPtr, at: InputAt }, 192 fn step(&mut self, mut ip: InstPtr, mut at: InputAt) -> bool { in step() 264 fn has_visited(&mut self, ip: InstPtr, at: InputAt) -> bool { in has_visited()
|
H A D | pikevm.rs | 22 use crate::prog::{InstPtr, Program}; 70 IP(InstPtr),
|
/third_party/spirv-tools/source/opt/ |
H A D | debug_info_manager.h | 248 typedef Instruction* InstPtr; typedef in spvtools::opt::analysis::DebugInfoManager 250 bool operator()(const InstPtr& lhs, const InstPtr& rhs) const { in operator ()() 257 std::unordered_map<uint32_t, std::set<InstPtr, InstPtrLess>>
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86MCTargetDesc.cpp | 358 unsigned InstPtr = is64Bit ? X86::RIP : X86::EIP; in createX86MCAsmInfo() local 360 nullptr, MRI.getDwarfRegNum(InstPtr, true), stackGrowth); in createX86MCAsmInfo()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | LoopIdiomRecognize.cpp | 586 WeakTrackingVH InstPtr(&*I); in runOnLoopBlock() 593 if (!InstPtr) in runOnLoopBlock()
|
Completed in 10 milliseconds