Home
last modified time | relevance | path

Searched refs:NewLeaf (Results 1 – 25 of 35) sorted by relevance

12

/dports/textproc/go-yq/yq-4.7.0/vendor/github.com/timtadh/data-structures/tree/bptree/
H A Dbptree_test.go448 a := NewLeaf(2, false)
482 a := NewLeaf(2, false)
670 a := NewLeaf(3, false)
696 a := NewLeaf(3, false)
727 a := NewLeaf(3, false)
758 a := NewLeaf(3, false)
789 a := NewLeaf(3, false)
821 a := NewLeaf(2, false)
823 b := NewLeaf(2, false)
825 c := NewLeaf(2, false)
[all …]
H A Dbpmap.go15 root: NewLeaf(node_size, true),
60 self.root = NewLeaf(ns, true)
H A Dbptree.go20 root: NewLeaf(node_size, false),
101 self.root = NewLeaf(ns, false)
H A Dbptree_node.go27 func NewLeaf(size int, no_dup bool) *BpNode { func
315 b = NewLeaf(self.NodeSize(), self.no_dup)
347 a = NewLeaf(self.NodeSize(), self.no_dup)
363 b = NewLeaf(self.NodeSize(), self.no_dup)
/dports/security/clamav-lts/clamav-0.103.5/libclamav/c++/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp177 BasicBlock* NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in newLeafBlock() local
179 F->getBasicBlockList().insert(++FI, NewLeaf); in newLeafBlock()
185 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, in newLeafBlock()
191 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in newLeafBlock()
195 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in newLeafBlock()
202 NewLeaf); in newLeafBlock()
204 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in newLeafBlock()
211 BranchInst::Create(Succ, Default, Comp, NewLeaf); in newLeafBlock()
226 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in newLeafBlock()
229 return NewLeaf; in newLeafBlock()
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/Vlv2TbltDevicePkg/PlatformDxe/Observable/
H A DObservable.c353 OBS_LEAF* NewLeaf = NULL; in Subscribe()
370 NewLeaf = AllocateZeroPool(sizeof(OBS_LEAF)); in Subscribe()
371 if (!NewLeaf) { in Subscribe()
374 NewLeaf->Next = NULL; in Subscribe()
375 NewLeaf->Observer = CallbackInterface; in Subscribe()
402 gBS->FreePool(NewLeaf); in Subscribe()
408 TempLeaf->Next = NewLeaf; in Subscribe()
414 TempTree->Leaf = NewLeaf; in Subscribe()
/dports/sysutils/edk2/edk2-platforms-89f6170d/Platform/Intel/Vlv2TbltDevicePkg/PlatformDxe/Observable/
H A DObservable.c341 OBS_LEAF* NewLeaf = NULL; in Subscribe()
358 NewLeaf = AllocateZeroPool(sizeof(OBS_LEAF)); in Subscribe()
359 if (!NewLeaf) { in Subscribe()
362 NewLeaf->Next = NULL; in Subscribe()
363 NewLeaf->Observer = CallbackInterface; in Subscribe()
390 gBS->FreePool(NewLeaf); in Subscribe()
396 TempLeaf->Next = NewLeaf; in Subscribe()
402 TempTree->Leaf = NewLeaf; in Subscribe()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp160 BasicBlock *NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in NewLeafBlock() local
161 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in NewLeafBlock()
168 new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, Leaf.Low, "SwitchLeaf"); in NewLeafBlock()
173 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in NewLeafBlock()
177 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in NewLeafBlock()
181 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in NewLeafBlock()
187 Val, NegLo, Val->getName() + ".off", NewLeaf); in NewLeafBlock()
189 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in NewLeafBlock()
196 BranchInst::Create(Succ, Default, Comp, NewLeaf); in NewLeafBlock()
210 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in NewLeafBlock()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp332 BasicBlock* NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in newLeafBlock() local
333 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in newLeafBlock()
339 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, in newLeafBlock()
345 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in newLeafBlock()
349 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in newLeafBlock()
353 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in newLeafBlock()
360 NewLeaf); in newLeafBlock()
362 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in newLeafBlock()
369 BranchInst::Create(Succ, Default, Comp, NewLeaf); in newLeafBlock()
384 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in newLeafBlock()
[all …]
/dports/devel/llvm10/llvm-10.0.1.src/lib/Transforms/Utils/
H A DLowerSwitch.cpp339 BasicBlock* NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in newLeafBlock() local
340 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in newLeafBlock()
346 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, in newLeafBlock()
352 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in newLeafBlock()
356 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in newLeafBlock()
360 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in newLeafBlock()
367 NewLeaf); in newLeafBlock()
369 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in newLeafBlock()
376 BranchInst::Create(Succ, Default, Comp, NewLeaf); in newLeafBlock()
391 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in newLeafBlock()
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp160 BasicBlock *NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in NewLeafBlock() local
161 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in NewLeafBlock()
168 new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, Leaf.Low, "SwitchLeaf"); in NewLeafBlock()
173 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in NewLeafBlock()
177 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in NewLeafBlock()
181 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in NewLeafBlock()
187 Val, NegLo, Val->getName() + ".off", NewLeaf); in NewLeafBlock()
189 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in NewLeafBlock()
196 BranchInst::Create(Succ, Default, Comp, NewLeaf); in NewLeafBlock()
210 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in NewLeafBlock()
[all …]
/dports/graphics/llvm-mesa/llvm-13.0.1.src/lib/Transforms/Utils/
H A DLowerSwitch.cpp160 BasicBlock *NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in NewLeafBlock() local
161 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in NewLeafBlock()
168 new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, Leaf.Low, "SwitchLeaf"); in NewLeafBlock()
173 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in NewLeafBlock()
177 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in NewLeafBlock()
181 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in NewLeafBlock()
187 Val, NegLo, Val->getName() + ".off", NewLeaf); in NewLeafBlock()
189 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in NewLeafBlock()
196 BranchInst::Create(Succ, Default, Comp, NewLeaf); in NewLeafBlock()
210 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in NewLeafBlock()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp160 BasicBlock *NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in NewLeafBlock() local
161 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in NewLeafBlock()
168 new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, Leaf.Low, "SwitchLeaf"); in NewLeafBlock()
173 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in NewLeafBlock()
177 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in NewLeafBlock()
181 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in NewLeafBlock()
187 Val, NegLo, Val->getName() + ".off", NewLeaf); in NewLeafBlock()
189 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in NewLeafBlock()
196 BranchInst::Create(Succ, Default, Comp, NewLeaf); in NewLeafBlock()
210 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in NewLeafBlock()
[all …]
/dports/devel/llvm11/llvm-11.0.1.src/lib/Transforms/Utils/
H A DLowerSwitch.cpp332 BasicBlock* NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in newLeafBlock() local
333 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in newLeafBlock()
339 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, in newLeafBlock()
345 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in newLeafBlock()
349 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in newLeafBlock()
353 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in newLeafBlock()
360 NewLeaf); in newLeafBlock()
362 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in newLeafBlock()
369 BranchInst::Create(Succ, Default, Comp, NewLeaf); in newLeafBlock()
384 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in newLeafBlock()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp160 BasicBlock *NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in NewLeafBlock() local
161 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in NewLeafBlock()
168 new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, Leaf.Low, "SwitchLeaf"); in NewLeafBlock()
173 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in NewLeafBlock()
177 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in NewLeafBlock()
181 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in NewLeafBlock()
187 Val, NegLo, Val->getName() + ".off", NewLeaf); in NewLeafBlock()
189 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in NewLeafBlock()
196 BranchInst::Create(Succ, Default, Comp, NewLeaf); in NewLeafBlock()
210 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in NewLeafBlock()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp339 BasicBlock* NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in newLeafBlock() local
340 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in newLeafBlock()
346 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, in newLeafBlock()
352 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in newLeafBlock()
356 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in newLeafBlock()
360 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in newLeafBlock()
367 NewLeaf); in newLeafBlock()
369 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in newLeafBlock()
376 BranchInst::Create(Succ, Default, Comp, NewLeaf); in newLeafBlock()
391 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in newLeafBlock()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp160 BasicBlock *NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in NewLeafBlock() local
161 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in NewLeafBlock()
168 new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, Leaf.Low, "SwitchLeaf"); in NewLeafBlock()
173 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in NewLeafBlock()
177 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in NewLeafBlock()
181 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in NewLeafBlock()
187 Val, NegLo, Val->getName() + ".off", NewLeaf); in NewLeafBlock()
189 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in NewLeafBlock()
196 BranchInst::Create(Succ, Default, Comp, NewLeaf); in NewLeafBlock()
210 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in NewLeafBlock()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp160 BasicBlock *NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in NewLeafBlock() local
161 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in NewLeafBlock()
168 new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, Leaf.Low, "SwitchLeaf"); in NewLeafBlock()
173 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in NewLeafBlock()
177 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in NewLeafBlock()
181 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in NewLeafBlock()
187 Val, NegLo, Val->getName() + ".off", NewLeaf); in NewLeafBlock()
189 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in NewLeafBlock()
196 BranchInst::Create(Succ, Default, Comp, NewLeaf); in NewLeafBlock()
210 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in NewLeafBlock()
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp160 BasicBlock *NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in NewLeafBlock() local
161 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in NewLeafBlock()
168 new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, Leaf.Low, "SwitchLeaf"); in NewLeafBlock()
173 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in NewLeafBlock()
177 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in NewLeafBlock()
181 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in NewLeafBlock()
187 Val, NegLo, Val->getName() + ".off", NewLeaf); in NewLeafBlock()
189 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in NewLeafBlock()
196 BranchInst::Create(Succ, Default, Comp, NewLeaf); in NewLeafBlock()
210 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in NewLeafBlock()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp339 BasicBlock* NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in newLeafBlock() local
340 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in newLeafBlock()
346 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, in newLeafBlock()
352 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in newLeafBlock()
356 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in newLeafBlock()
360 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in newLeafBlock()
367 NewLeaf); in newLeafBlock()
369 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in newLeafBlock()
376 BranchInst::Create(Succ, Default, Comp, NewLeaf); in newLeafBlock()
391 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in newLeafBlock()
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp160 BasicBlock *NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in NewLeafBlock() local
161 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in NewLeafBlock()
168 new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, Leaf.Low, "SwitchLeaf"); in NewLeafBlock()
173 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in NewLeafBlock()
177 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in NewLeafBlock()
181 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in NewLeafBlock()
187 Val, NegLo, Val->getName() + ".off", NewLeaf); in NewLeafBlock()
189 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in NewLeafBlock()
196 BranchInst::Create(Succ, Default, Comp, NewLeaf); in NewLeafBlock()
210 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in NewLeafBlock()
[all …]
/dports/devel/llvm90/llvm-9.0.1.src/lib/Transforms/Utils/
H A DLowerSwitch.cpp338 BasicBlock* NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in newLeafBlock() local
339 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in newLeafBlock()
345 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, in newLeafBlock()
351 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in newLeafBlock()
355 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in newLeafBlock()
359 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in newLeafBlock()
366 NewLeaf); in newLeafBlock()
368 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in newLeafBlock()
375 BranchInst::Create(Succ, Default, Comp, NewLeaf); in newLeafBlock()
390 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in newLeafBlock()
[all …]
/dports/devel/llvm80/llvm-8.0.1.src/lib/Transforms/Utils/
H A DLowerSwitch.cpp312 BasicBlock* NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in newLeafBlock() local
313 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in newLeafBlock()
319 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, in newLeafBlock()
325 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in newLeafBlock()
329 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in newLeafBlock()
336 NewLeaf); in newLeafBlock()
338 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in newLeafBlock()
345 BranchInst::Create(Succ, Default, Comp, NewLeaf); in newLeafBlock()
360 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in newLeafBlock()
363 return NewLeaf; in newLeafBlock()
/dports/devel/llvm70/llvm-7.0.1.src/lib/Transforms/Utils/
H A DLowerSwitch.cpp312 BasicBlock* NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock"); in newLeafBlock() local
313 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in newLeafBlock()
319 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val, in newLeafBlock()
325 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in newLeafBlock()
329 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in newLeafBlock()
336 NewLeaf); in newLeafBlock()
338 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in newLeafBlock()
345 BranchInst::Create(Succ, Default, Comp, NewLeaf); in newLeafBlock()
360 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in newLeafBlock()
363 return NewLeaf; in newLeafBlock()
/dports/www/grafana8/grafana-8.3.6/pkg/macaron/
H A Dtree.go136 func NewLeaf(parent *Tree, pattern string, handle Handle) *Leaf { func
198 leaf := NewLeaf(t, pattern, handle)

12