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

  /external/llvm/lib/Target/AArch64/
AArch64PBQPRegAlloc.h 25 SmallSetVector<unsigned, 32> Chains;
33 // Add constraints between existing chains
AArch64PBQPRegAlloc.cpp 248 if (Chains.count(Ra)) {
252 Chains.remove(Ra);
253 Chains.insert(Rd);
258 Chains.insert(Rd);
264 for (auto r : Chains) {
289 // Enforce that cost is higher with all other Chains of the same parity
335 Chains.clear(); // FIXME: really needed ? Could not work at MF level ?
339 // Forget Chains which have expired
340 for (auto r : Chains) {
349 Chains.remove(toDel.back())
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoadStoreVectorizer.cpp 720 auto Chains = splitOddVectorElts(Chain, Sz);
721 return vectorizeStoreChain(Chains.first, InstructionsProcessed) |
722 vectorizeStoreChain(Chains.second, InstructionsProcessed);
874 auto Chains = splitOddVectorElts(Chain, Sz);
875 return vectorizeLoadChain(Chains.first, InstructionsProcessed) |
876 vectorizeLoadChain(Chains.second, InstructionsProcessed);
    [all...]
  /prebuilts/go/darwin-x86/test/
torture.go 163 // A chains of type assertions.
315 // Chains of divisions. See issue 4201.
nosplit.go 25 # These are test cases for the linker analysis that detects chains of
71 # Chains of ordinary functions okay.
76 # Chains of nosplit must fit in the stack limit, 128 bytes.
82 # Larger chains.
  /prebuilts/go/linux-x86/test/
torture.go 163 // A chains of type assertions.
315 // Chains of divisions. See issue 4201.
nosplit.go 25 # These are test cases for the linker analysis that detects chains of
71 # Chains of ordinary functions okay.
76 # Chains of nosplit must fit in the stack limit, 128 bytes.
82 # Larger chains.
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.cpp 372 SmallVector<SDValue, 8> Chains;
381 Chains.push_back(DAG.getStore(
385 if (!Chains.empty())
386 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
  /prebuilts/go/darwin-x86/src/crypto/x509/
root_windows.go 142 // to build certificate chains and verify them.
143 func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) {
193 // continues building additional simple chains until the first
218 chain, err := extractSimpleChain(chainCtx.Chains, int(chainCtx.ChainCount))
223 chains = append(chains, chain)
225 return chains, nil
verify.go 621 // the CN as a hostname. Chains modern enough to be
776 // Verify attempts to verify c by building one or more chains from c to a
778 // needed. If successful, it returns one or more chains where the first
795 func (c *Certificate) Verify(opts VerifyOptions) (chains [][]*Certificate, err error) {
882 func (c *Certificate) buildChains(cache map[int][][]*Certificate, currentChain []*Certificate, opts *VerifyOptions) (chains [][]*Certificate, err error) {
898 chains = append(chains, appendToFreshChain(currentChain, root))
920 chains = append(chains, childChains...)
923 if len(chains) > 0
    [all...]
  /prebuilts/go/linux-x86/src/crypto/x509/
root_windows.go 142 // to build certificate chains and verify them.
143 func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) {
193 // continues building additional simple chains until the first
218 chain, err := extractSimpleChain(chainCtx.Chains, int(chainCtx.ChainCount))
223 chains = append(chains, chain)
225 return chains, nil
verify.go 621 // the CN as a hostname. Chains modern enough to be
776 // Verify attempts to verify c by building one or more chains from c to a
778 // needed. If successful, it returns one or more chains where the first
795 func (c *Certificate) Verify(opts VerifyOptions) (chains [][]*Certificate, err error) {
882 func (c *Certificate) buildChains(cache map[int][][]*Certificate, currentChain []*Certificate, opts *VerifyOptions) (chains [][]*Certificate, err error) {
898 chains = append(chains, appendToFreshChain(currentChain, root))
920 chains = append(chains, childChains...)
923 if len(chains) > 0
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 72 // Limit the width of DAG chains. This is important in general to prevent
750 SmallVector<SDValue, 8> Chains(NumRegs);
760 Chains[i] = Part.getValue(0);
774 Chain = Chains[NumRegs-1];
776 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
    [all...]
DAGCombiner.cpp     [all...]
  /external/tensorflow/tensorflow/compiler/jit/
mark_for_compilation_pass_test.cc 71 TEST(XlaCompilationTest, Chains) {
  /external/llvm/tools/llvm-readobj/
ELFDumper.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp 459 // We want to find all load dependencies for long chains of stores to enable
787 SmallVector<SDValue, 8> Chains;
794 Chains.push_back(LowerConstantInitializer(Elt, GV, Ptr, Chain, DAG));
    [all...]
SIISelLowering.cpp 731 SmallVector<SDValue, 16> Chains;
753 Chains.push_back(Arg.getValue(1));
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 103 // Limit the width of DAG chains. This is important in general to prevent
769 SmallVector<SDValue, 8> Chains(NumRegs);
779 Chains[i] = Part.getValue(0);
793 Chain = Chains[NumRegs-1];
795 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
    [all...]
DAGCombiner.cpp 396 /// consecutive chains with better chains. Return true only if St is
399 /// Notice that other chains may still be replaced even if the function
432 SmallVectorImpl<SDValue> &Chains,
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
types_windows.go 860 Chains **CertSimpleChain
  /prebuilts/go/linux-x86/src/syscall/
types_windows.go 860 Chains **CertSimpleChain
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 2516 milliseconds