Home
last modified time | relevance | path

Searched refs:Chain (Results 1 – 25 of 282) sorted by relevance

12345678910>>...12

/external/llvm/lib/Target/X86/
DX86SelectionDAGInfo.cpp48 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, in EmitTargetCodeForMemset() argument
88 CLI.setDebugLoc(dl).setChain(Chain) in EmitTargetCodeForMemset()
143 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, dl, AVT), in EmitTargetCodeForMemset()
145 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
149 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag); in EmitTargetCodeForMemset()
150 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
153 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RCX : X86::ECX, in EmitTargetCodeForMemset()
155 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
156 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RDI : X86::EDI, in EmitTargetCodeForMemset()
158 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
[all …]
/external/llvm/lib/Transforms/Vectorize/
DLoadStoreVectorizer.cpp97 getBoundaryInstrs(ArrayRef<Value *> Chain);
100 void eraseInstructions(ArrayRef<Value *> Chain);
107 splitOddVectorElts(ArrayRef<Value *> Chain, unsigned ElementSizeBits);
113 unsigned getVectorizablePrefixEndIdx(ArrayRef<Value *> Chain,
128 bool vectorizeLoadChain(ArrayRef<Value *> Chain,
132 bool vectorizeStoreChain(ArrayRef<Value *> Chain,
375 Vectorizer::getBoundaryInstrs(ArrayRef<Value *> Chain) { in getBoundaryInstrs() argument
376 Instruction *C0 = cast<Instruction>(Chain[0]); in getBoundaryInstrs()
383 if (!is_contained(Chain, &I)) in getBoundaryInstrs()
390 if (NumFound == Chain.size()) { in getBoundaryInstrs()
[all …]
/external/caliper/caliper/src/main/java/com/google/caliper/memory/
DChain.java33 public abstract class Chain { class
35 private final Chain parent;
37 Chain(Chain parent, Object value) { in Chain() method in Chain
42 static Chain root(Object value) { in root()
43 return new Chain(null, Preconditions.checkNotNull(value)) { in root()
71 public @Nonnull Chain getParent() {
114 Chain current = this;
121 Deque<Chain> reverse() {
122 Deque<Chain> reverseChain = new ArrayDeque<Chain>(8);
123 Chain current = this;
[all …]
DObjectExplorer.java100 Deque<Chain> stack = new ArrayDeque<Chain>(32); in exploreObject()
101 if (rootObject != null) stack.push(Chain.root(rootObject)); in exploreObject()
104 Chain chain = stack.pop(); in exploreObject()
157 Chain extendedChain = chain.appendField(field, childValue); in exploreObject()
175 static class AtMostOncePredicate implements Predicate<Chain> {
179 @Override public boolean apply(Chain chain) { in apply()
184 static final Predicate<Chain> notEnumFieldsOrClasses = new Predicate<Chain>() {
185 @Override public boolean apply(Chain chain) {
191 static final Function<Chain, Object> chainToObject =
192 new Function<Chain, Object>() {
[all …]
/external/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp27 unsigned Loop, SDValue Chain, SDValue Dst, in emitMemMem() argument
42 return DAG.getNode(Loop, DL, MVT::Other, Chain, Dst, Src, in emitMemMem()
45 return DAG.getNode(Sequence, DL, MVT::Other, Chain, Dst, Src, in emitMemMem()
50 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dst, SDValue Src, in EmitTargetCodeForMemcpy() argument
58 Chain, Dst, Src, CSize->getZExtValue()); in EmitTargetCodeForMemcpy()
65 static SDValue memsetStore(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in memsetStore() argument
71 return DAG.getStore(Chain, DL, in memsetStore()
78 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dst, in EmitTargetCodeForMemset() argument
101 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset()
108 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
[all …]
DSystemZSelectionDAGInfo.h28 SDValue Chain, SDValue Dst, SDValue Src,
35 SDValue Chain, SDValue Dst, SDValue Byte,
40 EmitTargetCodeForMemcmp(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain,
46 EmitTargetCodeForMemchr(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain,
51 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dest,
56 EmitTargetCodeForStrcmp(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain,
62 EmitTargetCodeForStrlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain,
67 EmitTargetCodeForStrnlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp27 unsigned Loop, SDValue Chain, SDValue Dst, in emitMemMem() argument
42 return DAG.getNode(Loop, DL, MVT::Other, Chain, Dst, Src, in emitMemMem()
45 return DAG.getNode(Sequence, DL, MVT::Other, Chain, Dst, Src, in emitMemMem()
50 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dst, SDValue Src, in EmitTargetCodeForMemcpy() argument
58 Chain, Dst, Src, CSize->getZExtValue()); in EmitTargetCodeForMemcpy()
65 static SDValue memsetStore(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in memsetStore() argument
72 Chain, DL, DAG.getConstant(StoreVal, DL, MVT::getIntegerVT(Size * 8)), in memsetStore()
77 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dst, in EmitTargetCodeForMemset() argument
100 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset()
107 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
[all …]
DSystemZSelectionDAGInfo.h28 SDValue Chain, SDValue Dst, SDValue Src,
35 SDValue Chain, SDValue Dst, SDValue Byte,
40 EmitTargetCodeForMemcmp(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain,
46 EmitTargetCodeForMemchr(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain,
51 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dest,
56 EmitTargetCodeForStrcmp(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain,
62 EmitTargetCodeForStrlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain,
67 EmitTargetCodeForStrnlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
DLoadStoreVectorizer.cpp163 getBoundaryInstrs(ArrayRef<Instruction *> Chain);
166 void eraseInstructions(ArrayRef<Instruction *> Chain);
173 splitOddVectorElts(ArrayRef<Instruction *> Chain, unsigned ElementSizeBits);
181 ArrayRef<Instruction *> getVectorizablePrefix(ArrayRef<Instruction *> Chain);
195 vectorizeLoadChain(ArrayRef<Instruction *> Chain,
200 vectorizeStoreChain(ArrayRef<Instruction *> Chain,
511 Vectorizer::getBoundaryInstrs(ArrayRef<Instruction *> Chain) { in getBoundaryInstrs() argument
512 Instruction *C0 = Chain[0]; in getBoundaryInstrs()
519 if (!is_contained(Chain, &I)) in getBoundaryInstrs()
526 if (NumFound == Chain.size()) { in getBoundaryInstrs()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86SelectionDAGInfo.cpp66 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Val, in EmitTargetCodeForMemset() argument
108 .setChain(Chain) in EmitTargetCodeForMemset()
163 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, dl, AVT), in EmitTargetCodeForMemset()
165 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
169 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Val, InFlag); in EmitTargetCodeForMemset()
170 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
173 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RCX : X86::ECX, in EmitTargetCodeForMemset()
175 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
176 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RDI : X86::EDI, in EmitTargetCodeForMemset()
178 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
[all …]
/external/llvm/lib/Target/AArch64/
DAArch64A57FPLoadBalancing.cpp112 class Chain;
143 bool colorChainSet(std::vector<Chain*> GV, MachineBasicBlock &MBB,
145 bool colorChain(Chain *G, Color C, MachineBasicBlock &MBB);
146 int scavengeRegister(Chain *G, Color C, MachineBasicBlock &MBB);
148 std::map<unsigned, Chain*> &Active,
149 std::vector<std::unique_ptr<Chain>> &AllChains);
151 std::map<unsigned, Chain*> &RegChains);
153 Chain *getAndEraseNext(Color PreferredColor, std::vector<Chain*> &L);
190 class Chain { class
208 Chain(MachineInstr *MI, unsigned Idx, Color C) in Chain() function in __anon739b2ed60211::Chain
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
DAArch64A57FPLoadBalancing.cpp108 class Chain;
139 bool colorChainSet(std::vector<Chain*> GV, MachineBasicBlock &MBB,
141 bool colorChain(Chain *G, Color C, MachineBasicBlock &MBB);
142 int scavengeRegister(Chain *G, Color C, MachineBasicBlock &MBB);
144 std::map<unsigned, Chain*> &Active,
145 std::vector<std::unique_ptr<Chain>> &AllChains);
147 std::map<unsigned, Chain*> &RegChains);
149 Chain *getAndEraseNext(Color PreferredColor, std::vector<Chain*> &L);
186 class Chain { class
204 Chain(MachineInstr *MI, unsigned Idx, Color C) in Chain() function in __anon8312c26e0211::Chain
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMachineBlockPlacement.cpp270 void merge(MachineBasicBlock *BB, BlockChain *Chain) { in merge() argument
275 if (!Chain) { in merge()
283 assert(BB == *Chain->begin() && "Passed BB is not head of Chain."); in merge()
284 assert(Chain->begin() != Chain->end()); in merge()
288 for (MachineBasicBlock *ChainBB : *Chain) { in merge()
290 assert(BlockToChain[ChainBB] == Chain && "Incoming blocks not in chain."); in merge()
400 const BlockChain &Chain, const MachineBasicBlock *LoopHeaderBB,
406 const BlockChain &Chain, const MachineBasicBlock *BB,
412 const MachineBasicBlock *BB, const BlockChain &Chain,
417 const BlockChain &Chain, const BlockFilterSet *BlockFilter,
[all …]
/external/clang/include/clang/Serialization/
DModuleManager.h35 SmallVector<ModuleFile *, 2> Chain; variable
124 ModuleIterator begin() { return Chain.begin(); } in begin()
126 ModuleIterator end() { return Chain.end(); } in end()
129 ModuleConstIterator begin() const { return Chain.begin(); } in begin()
131 ModuleConstIterator end() const { return Chain.end(); } in end()
134 ModuleReverseIterator rbegin() { return Chain.rbegin(); } in rbegin()
136 ModuleReverseIterator rend() { return Chain.rend(); } in rend()
145 ModuleFile &getPrimaryModule() { return *Chain[0]; } in getPrimaryModule()
149 ModuleFile &getPrimaryModule() const { return *Chain[0]; } in getPrimaryModule()
152 ModuleFile &operator[](unsigned Index) const { return *Chain[Index]; }
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARC/
DARCISelLowering.cpp37 static SDValue lowerCallResult(SDValue Chain, SDValue InFlag,
199 SDValue Chain = Op.getOperand(0); in LowerBR_CC() local
207 return DAG.getNode(ARCISD::BRcc, dl, MVT::Other, Chain, Dest, LHS, RHS, in LowerBR_CC()
231 SDValue Chain = CLI.Chain; in LowerCall() local
256 Chain = DAG.getCALLSEQ_START(Chain, NumBytes, 0, dl); in LowerCall()
291 StackPtr = DAG.getCopyFromReg(Chain, dl, ARC::SP, in LowerCall()
299 DAG.getStore(Chain, dl, Arg, PtrOff, MachinePointerInfo()); in LowerCall()
308 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains); in LowerCall()
316 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, in LowerCall()
318 Glue = Chain.getValue(1); in LowerCall()
[all …]
/external/llvm/lib/CodeGen/
DMachineBlockPlacement.cpp190 void merge(MachineBasicBlock *BB, BlockChain *Chain) { in merge() argument
195 if (!Chain) { in merge()
202 assert(BB == *Chain->begin()); in merge()
203 assert(Chain->begin() != Chain->end()); in merge()
207 for (MachineBasicBlock *ChainBB : *Chain) { in merge()
209 assert(BlockToChain[ChainBB] == Chain && "Incoming blocks not in chain"); in merge()
286 void markChainSuccessors(BlockChain &Chain, MachineBasicBlock *LoopHeaderBB,
289 collectViableSuccessors(MachineBasicBlock *BB, BlockChain &Chain,
293 BlockChain &Chain,
300 BranchProbability RealSuccProb, BlockChain &Chain,
[all …]
/external/llvm/lib/Target/NVPTX/
DNVPTXISelDAGToDAG.cpp734 SDValue Chain = N->getOperand(0); in tryLoad() local
766 getI32Imm(fromTypeWidth, dl), Addr, Chain }; in tryLoad()
794 getI32Imm(fromTypeWidth, dl), Base, Offset, Chain }; in tryLoad()
847 getI32Imm(fromTypeWidth, dl), Base, Offset, Chain }; in tryLoad()
899 getI32Imm(fromTypeWidth, dl), N1, Chain }; in tryLoad()
916 SDValue Chain = N->getOperand(0); in tryLoadVector() local
1031 getI32Imm(FromTypeWidth, DL), Addr, Chain }; in tryLoadVector()
1084 getI32Imm(FromTypeWidth, DL), Base, Offset, Chain }; in tryLoadVector()
1186 getI32Imm(FromTypeWidth, DL), Base, Offset, Chain }; in tryLoadVector()
1288 getI32Imm(FromTypeWidth, DL), Op1, Chain }; in tryLoadVector()
[all …]
/external/llvm/lib/Target/ARM/
DARMSelectionDAGInfo.cpp25 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, in EmitSpecializedLibcall() argument
116 .setChain(Chain) in EmitSpecializedLibcall()
129 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, in EmitTargetCodeForMemcpy() argument
142 return EmitSpecializedLibcall(DAG, dl, Chain, Dst, Src, Size, Align, in EmitTargetCodeForMemcpy()
146 return EmitSpecializedLibcall(DAG, dl, Chain, Dst, Src, Size, Align, in EmitTargetCodeForMemcpy()
186 Dst = DAG.getNode(ARMISD::MEMCPY, dl, VTs, Chain, Dst, Src, in EmitTargetCodeForMemcpy()
189 Chain = Dst.getValue(2); in EmitTargetCodeForMemcpy()
198 return Chain; in EmitTargetCodeForMemcpy()
212 Loads[i] = DAG.getLoad(VT, dl, Chain, in EmitTargetCodeForMemcpy()
222 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, in EmitTargetCodeForMemcpy()
[all …]
/external/llvm/include/llvm/CodeGen/
DSelectionDAGTargetInfo.h50 SDValue Chain, SDValue Op1, in EmitTargetCodeForMemcpy() argument
66 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1, in EmitTargetCodeForMemmove() argument
79 SDValue Chain, SDValue Op1, in EmitTargetCodeForMemset() argument
91 EmitTargetCodeForMemcmp(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, in EmitTargetCodeForMemcmp() argument
103 EmitTargetCodeForMemchr(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, in EmitTargetCodeForMemchr() argument
116 EmitTargetCodeForStrcpy(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in EmitTargetCodeForStrcpy() argument
128 EmitTargetCodeForStrcmp(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, in EmitTargetCodeForStrcmp() argument
136 EmitTargetCodeForStrlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in EmitTargetCodeForStrlen() argument
142 EmitTargetCodeForStrnlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in EmitTargetCodeForStrnlen() argument
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DSelectionDAGTargetInfo.h53 SDValue Chain, SDValue Op1, in EmitTargetCodeForMemcpy() argument
69 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1, in EmitTargetCodeForMemmove() argument
82 SDValue Chain, SDValue Op1, in EmitTargetCodeForMemset() argument
94 EmitTargetCodeForMemcmp(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, in EmitTargetCodeForMemcmp() argument
106 EmitTargetCodeForMemchr(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, in EmitTargetCodeForMemchr() argument
119 EmitTargetCodeForStrcpy(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in EmitTargetCodeForStrcpy() argument
131 EmitTargetCodeForStrcmp(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, in EmitTargetCodeForStrcmp() argument
139 EmitTargetCodeForStrlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in EmitTargetCodeForStrlen() argument
145 EmitTargetCodeForStrnlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in EmitTargetCodeForStrnlen() argument
/external/llvm/lib/Target/BPF/
DBPFISelLowering.cpp152 SDValue Chain, CallingConv::ID CallConv, bool IsVarArg, in LowerFormalArguments() argument
184 SDValue ArgValue = DAG.getCopyFromReg(Chain, DL, VReg, RegVT); in LowerFormalArguments()
211 return Chain; in LowerFormalArguments()
222 SDValue Chain = CLI.Chain; in LowerCall() local
260 Chain = DAG.getCALLSEQ_START( in LowerCall()
261 Chain, DAG.getConstant(NumBytes, CLI.DL, PtrVT, true), CLI.DL); in LowerCall()
302 Chain = DAG.getCopyToReg(Chain, CLI.DL, Reg.first, Reg.second, InFlag); in LowerCall()
303 InFlag = Chain.getValue(1); in LowerCall()
318 Ops.push_back(Chain); in LowerCall()
329 Chain = DAG.getNode(BPFISD::CALL, CLI.DL, NodeTys, Ops); in LowerCall()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMSelectionDAGInfo.cpp25 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, in EmitSpecializedLibcall() argument
116 .setChain(Chain) in EmitSpecializedLibcall()
129 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, in EmitTargetCodeForMemcpy() argument
142 return EmitSpecializedLibcall(DAG, dl, Chain, Dst, Src, Size, Align, in EmitTargetCodeForMemcpy()
146 return EmitSpecializedLibcall(DAG, dl, Chain, Dst, Src, Size, Align, in EmitTargetCodeForMemcpy()
186 Dst = DAG.getNode(ARMISD::MEMCPY, dl, VTs, Chain, Dst, Src, in EmitTargetCodeForMemcpy()
189 Chain = Dst.getValue(2); in EmitTargetCodeForMemcpy()
198 return Chain; in EmitTargetCodeForMemcpy()
213 Loads[i] = DAG.getLoad(VT, dl, Chain, in EmitTargetCodeForMemcpy()
222 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, in EmitTargetCodeForMemcpy()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Nios2/
DNios2ISelLowering.cpp30 Nios2TargetLowering::LowerReturn(SDValue Chain, CallingConv::ID CallConv, in LowerReturn() argument
46 SmallVector<SDValue, 4> RetOps(1, Chain); in LowerReturn()
57 Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(), Val, Flag); in LowerReturn()
60 Flag = Chain.getValue(1); in LowerReturn()
87 SDValue Chain, CallingConv::ID CallConv, bool IsVarArg, in LowerFormalArguments() argument
117 SDValue ArgValue = DAG.getCopyFromReg(Chain, DL, Reg, RegVT); in LowerFormalArguments()
152 LocVT, DL, Chain, FIN, in LowerFormalArguments()
159 OutChains.push_back(Chain); in LowerFormalArguments()
160 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, OutChains); in LowerFormalArguments()
163 return Chain; in LowerFormalArguments()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/BPF/
DBPFISelLowering.cpp206 SDValue Chain, CallingConv::ID CallConv, bool IsVarArg, in LowerFormalArguments() argument
242 SDValue ArgValue = DAG.getCopyFromReg(Chain, DL, VReg, RegVT); in LowerFormalArguments()
270 return Chain; in LowerFormalArguments()
281 SDValue Chain = CLI.Chain; in LowerCall() local
319 Chain = DAG.getCALLSEQ_START(Chain, NumBytes, 0, CLI.DL); in LowerCall()
360 Chain = DAG.getCopyToReg(Chain, CLI.DL, Reg.first, Reg.second, InFlag); in LowerCall()
361 InFlag = Chain.getValue(1); in LowerCall()
380 Ops.push_back(Chain); in LowerCall()
391 Chain = DAG.getNode(BPFISD::CALL, CLI.DL, NodeTys, Ops); in LowerCall()
392 InFlag = Chain.getValue(1); in LowerCall()
[all …]
/external/pdfium/third_party/lcms/src/
Dcmsgmt.c299 GAMUTCHAIN Chain; in _cmsCreateGamutCheckPipeline() local
308 memset(&Chain, 0, sizeof(GAMUTCHAIN)); in _cmsCreateGamutCheckPipeline()
326 Chain.Thereshold = 1.0; in _cmsCreateGamutCheckPipeline()
329 Chain.Thereshold = ERR_THERESHOLD; in _cmsCreateGamutCheckPipeline()
355 Chain.hInput = cmsCreateExtendedTransform(ContextID, in _cmsCreateGamutCheckPipeline()
368 Chain.hForward = cmsCreateTransformTHR(ContextID, in _cmsCreateGamutCheckPipeline()
375 Chain.hReverse = cmsCreateTransformTHR(ContextID, hGamut, dwFormat, in _cmsCreateGamutCheckPipeline()
382 if (Chain.hInput && Chain.hForward && Chain.hReverse) { in _cmsCreateGamutCheckPipeline()
396 cmsStageSampleCLut16bit(CLUT, GamutSampler, (void*) &Chain, 0); in _cmsCreateGamutCheckPipeline()
404 if (Chain.hInput) cmsDeleteTransform(Chain.hInput); in _cmsCreateGamutCheckPipeline()
[all …]

12345678910>>...12