Searched defs:Copy (Results 176 - 199 of 199) sorted by relevance

12345678

/external/llvm/lib/CodeGen/
H A DMachineScheduler.cpp1274 // Copy successor edges from SUa to SUb. Interleaving computation
1282 DEBUG(dbgs() << " Copy Succ SU(" << SI->getSUnit()->NodeNum << ")\n");
1413 MachineInstr *Copy = CopySU->getInstr(); local
1416 unsigned SrcReg = Copy->getOperand(1).getReg();
1420 unsigned DstReg = Copy->getOperand(0).getReg();
2820 MachineInstr *Copy = DepSU->getInstr(); local
2821 if (!Copy->isCopy())
2825 DAG->moveInstruction(Copy, InsertPos);
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp204 // Copy the result values into the output registers.
266 // Copy the result values into the output registers.
484 // Copy the SRet Argument to SRetReturnReg.
491 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]); local
492 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
942 // Copy all of the result registers out of their specified physreg.
1268 // Copy all of the result registers out of their specified physreg.
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp1573 const static unsigned Copy = TargetOpcode::COPY; local
1607 { X86::IDIV16r, X86::CWD, Copy, X86::AX, S }, // SDiv
1608 { X86::IDIV16r, X86::CWD, Copy, X86::DX, S }, // SRem
1609 { X86::DIV16r, X86::MOV32r0, Copy, X86::AX, U }, // UDiv
1610 { X86::DIV16r, X86::MOV32r0, Copy, X86::DX, U }, // URem
1614 { X86::IDIV32r, X86::CDQ, Copy, X86::EAX, S }, // SDiv
1615 { X86::IDIV32r, X86::CDQ, Copy, X86::EDX, S }, // SRem
1616 { X86::DIV32r, X86::MOV32r0, Copy, X86::EAX, U }, // UDiv
1617 { X86::DIV32r, X86::MOV32r0, Copy, X86::EDX, U }, // URem
1621 { X86::IDIV64r, X86::CQO, Copy, X8
[all...]
H A DX86ISelDAGToDAG.cpp1469 SDValue Copy = AM.Segment; local
1475 AM.Segment = Copy;
2363 // Copy the low half of the result, if it is needed.
2374 // Copy the high half of the result, if it is needed.
2538 // Copy the division (low) result, if it is needed.
2546 // Copy the remainder (high) result, if it is needed.
H A DX86InstrInfo.cpp3038 // Copy from a VR128 register to a GR64 register.
3042 // Copy from a VR64 register to a GR64 register.
3045 // Copy from a GR64 register to a VR128 register.
3049 // Copy from a GR64 register to a VR64 register.
3058 // Copy from a FR32 register to a GR32 register.
3062 // Copy from a GR32 register to a FR32 register.
5529 // Insert a Copy from TLSBaseAddrReg to RAX/EAX.
5530 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(), local
5538 return Copy;
5558 MachineInstr *Copy local
[all...]
H A DX86ISelLowering.cpp1885 // Copy the result values into the output registers.
1993 SDNode *Copy = *N->use_begin(); local
1994 if (Copy->getOpcode() == ISD::CopyToReg) {
1997 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1999 TCChain = Copy->getOperand(0);
2000 } else if (Copy->getOpcode() != ISD::FP_EXTEND)
2004 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
2049 // Copy al
2351 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[i]); local
[all...]
/external/clang/include/clang/AST/
H A DDeclObjC.h2199 enum SetterKind { Assign, Retain, Copy, Weak }; enumerator in enum:clang::ObjCPropertyDecl::SetterKind
2299 return getType()->isBlockPointerType() ? Copy : Retain;
2303 return Copy;
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp752 // Copy register tuples backward when the first Dest reg overlaps with SrcReg.
1765 // Copy all the DefMI operands, excluding its (null) predicate.
2187 const MachineInstr &Copy = *MI; local
2192 return isSuitableForMask(MI, Copy.getOperand(0).getReg(),
H A DARMISelLowering.cpp1265 // Copy all of the result registers out of their specified physreg.
2101 // Copy the result values into the output registers.
2193 SDNode *Copy = *N->use_begin(); local
2194 if (Copy->getOpcode() == ISD::CopyToReg) {
2197 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2199 TCChain = Copy->getOperand(0);
2200 } else if (Copy->getOpcode() == ARMISD::VMOVRRD) {
2201 SDNode *VMov = Copy;
2218 Copy
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp2621 // Copy all of the result registers out of their specified physreg.
2768 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), DL, Reg, InVals[i]); local
2769 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Copy, Chain);
2826 // Copy the result values into the output registers.
3558 // Copy arg registers.
3575 // Copy byVal arg to registers and stack.
3594 // Copy words to registers.
3611 // Copy the remainder of the byval argument with sub-word loads and shifts.
3660 // Copy remainder of byval arg to it with memcpy.
3699 // Copy th
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2291 const SCEV *Copy = Expr; local
2297 Expr = Copy;
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_impl.cc2028 void WebContentsImpl::Copy() { function in class:content::WebContentsImpl
2034 RecordAction(base::UserMetricsAction("Copy"));
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder.cc394 // Copy the contents of the currently bound frame buffer.
395 void Copy(const gfx::Size& size, GLenum format);
2106 void BackTexture::Copy(const gfx::Size& size, GLenum format) { function in class:gpu::gles2::BackTexture
2108 ScopedGLErrorSuppressor suppressor("BackTexture::Copy",
6548 // Copy the elements and convert to float
7671 // Copy each row into the larger dest rect.
9497 // Copy the target frame buffer to the saved offscreen texture.
9498 offscreen_saved_color_texture_->Copy(
/external/chromium_org/v8/include/
H A Dv8.h592 V8_INLINE static void Copy(const Persistent<S, M>& source, function in class:v8::NonCopyablePersistentTraits
612 static V8_INLINE void Copy(const Persistent<S, M>& source, function in struct:v8::CopyablePersistentTraits
622 * Copy, assignment and destructor bevavior is controlled by the traits
654 * exactly as the Persistent constructor, but the Copy function from the
659 Copy(that);
663 Copy(that);
666 Copy(that);
671 Copy(that);
713 V8_INLINE void Copy(const Persistent<S, M2>& that);
6018 void Persistent<T, M>::Copy(cons function in class:v8::Persistent
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-instructions.h239 Range* Copy(Zone* zone) const { function in class:v8::internal::FINAL
H A Dhydrogen.cc355 SetInitialEnvironment(pred->last_environment()->Copy());
791 first_true_block_ = builder->CreateBasicBlock(env->Copy());
792 first_false_block_ = builder->CreateBasicBlock(env->Copy());
809 first_true_block_ = builder()->CreateBasicBlock(env->Copy());
810 first_false_block_ = builder()->CreateBasicBlock(env->Copy());
814 HBasicBlock* split_edge = builder()->CreateBasicBlock(env->Copy());
839 split_edge_merge_block_ = builder()->CreateBasicBlock(env->Copy());
844 first_false_block_ = builder()->CreateBasicBlock(env->Copy());
854 split_edge_merge_block_ = builder()->CreateBasicBlock(env->Copy());
859 first_true_block_ = builder()->CreateBasicBlock(env->Copy());
12081 HEnvironment* HEnvironment::Copy() const { function in class:v8::internal::HEnvironment
[all...]
H A Dobjects.cc1920 // - Copy all existing properties in, in the following order: backing store
1923 // * Copy inobject properties from the backing store back into the object.
2049 // Copy (real) inobject properties. If necessary, stop at number_of_fields to
2111 Handle<Map> new_map = Copy(map);
4231 // Copy the next enumeration index from instance descriptor.
5189 Handle<Map> new_map = Map::Copy(handle(object->map()));
5302 Handle<Map> new_map = Map::Copy(handle(object->map()));
5344 new_map = Map::Copy(old_map);
6614 Handle<Map> new_map = Copy(map);
6638 new_map = Copy(ma
6653 Handle<Map> Map::Copy(Handle<Map> map) { function in class:v8::internal::Map
7893 Handle<AccessorPair> AccessorPair::Copy(Handle<AccessorPair> pair) { function in class:v8::internal::AccessorPair
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp951 Copy, enumerator in enum:__anon18005
997 Form = Copy;
1133 if (Form == Copy || Form == GNUXchg || Form == Init)
1159 else if (Form == Copy || Form == Xchg)
1201 case Copy:
H A DSemaDeclCXX.cpp1546 // Copy non-redundant base specifiers into permanent storage.
9380 StmtResult Copy = local
9385 if (Copy.isInvalid() || !Copy.get())
9386 return Copy;
9406 Loc, Copy.get());
9691 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType, local
9695 if (Copy.isInvalid()) {
9703 Statements.push_back(Copy.getAs<Expr>());
9762 StmtResult Copy local
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp1927 // Copy all of the result registers out of their specified physreg.
2494 // Copy the result values into the output registers.
4551 OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
7788 SDNode *Copy = *N->use_begin(); local
7789 if (Copy->getOpcode() == ISD::CopyToReg) {
7792 if (Copy->getOperand(Copy->getNumOperands() - 1).getValueType() ==
7795 TCChain = Copy->getOperand(0);
7796 } else if (Copy->getOpcode() != ISD::FP_EXTEND)
7800 for (SDNode *Node : Copy
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 564 milliseconds

12345678