HomeSort by relevance Sort by last modified time
    Searched refs:Preds (Results 1 - 25 of 263) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/llvm/include/llvm/Analysis/
TypeMetadataUtils.h 42 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses, CallInst *CI);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
TypeMetadataUtils.h 42 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
TypeMetadataUtils.h 42 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Analysis/
TypeMetadataUtils.h 49 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Analysis/
TypeMetadataUtils.h 49 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Analysis/
TypeMetadataUtils.h 49 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Analysis/
TypeMetadataUtils.h 49 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Analysis/
TypeMetadataUtils.h 49 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Analysis/
TypeMetadataUtils.h 49 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Analysis/
TypeMetadataUtils.h 49 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Analysis/
TypeMetadataUtils.h 49 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Analysis/
TypeMetadataUtils.h 49 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Analysis/
TypeMetadataUtils.h 49 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Analysis/
TypeMetadataUtils.h 49 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Analysis/
TypeMetadataUtils.h 49 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses,
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
critical.go 17 if len(b.Preds) <= 1 {
43 for i := 0; i < len(b.Preds); {
44 e := b.Preds[i]
87 p.Succs[pi] = Edge{d, len(d.Preds)}
88 d.Preds = append(d.Preds, Edge{p, pi})
94 n := len(b.Preds)
109 b.Preds[i] = Edge{d, 0}
110 d.Preds = append(d.Preds, Edge{p, pi}
    [all...]
trim.go 20 p, i := b.Preds[0].b, b.Preds[0].i
22 ns := len(s.Preds)
24 s.Preds[j] = Edge{p, i}
26 for _, e := range b.Preds[1:] {
28 p.Succs[i] = Edge{s, len(s.Preds)}
29 s.Preds = append(s.Preds, Edge{p, i})
120 return s != b && (len(s.Preds) == 1 || emptyBlock(b))
145 for j := 1; j < len(b.Preds); j++
    [all...]