HomeSort by relevance Sort by last modified time
    Searched refs:Dest (Results 101 - 125 of 144) sorted by null

1 2 3 45 6

  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp     [all...]
X86InstrInfo.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 77 BasicBlock *Dest;
79 ValueEqualityComparisonCase(ConstantInt *Value, BasicBlock *Dest)
80 : Value(Value), Dest(Dest) {}
87 bool operator==(BasicBlock *RHSDest) const { return Dest == RHSDest; }
599 ThisCases[0].Dest->removePredecessor(TI->getParent());
653 if (PredCases[i].Dest == TIBB) {
665 TheRealDest = ThisCases[i].Dest;
824 if (PredCases[i].Dest != BB)
    [all...]
InlineFunction.cpp 95 void addIncomingPHIValuesForInto(BasicBlock *src, BasicBlock *dest) const {
96 BasicBlock::iterator I = dest->begin();
146 BasicBlock *Dest = getInnerResumeDest();
150 BranchInst::Create(Dest, Src);
154 addIncomingPHIValuesForInto(Src, Dest);
    [all...]
PromoteMemoryToRegister.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 443 AggValueSlot Dest) {
444 assert(!Dest.isIgnored() && "Must have a destination!");
451 if (E->requiresZeroInitialization() && !Dest.isZeroed()) {
455 EmitNullInitialization(Dest.getAddr(), E->getType());
459 EmitNullBaseClassInitialization(*this, Dest.getAddr(), CD->getParent());
475 EmitAggExpr(E->getArg(0), Dest);
482 EmitCXXAggrConstructorCall(CD, arrayType, Dest.getAddr(),
509 EmitCXXConstructorCall(CD, Type, ForVirtualBase, Delegating, Dest.getAddr(),
515 CodeGenFunction::EmitSynthesizedCXXCopyCtor(llvm::Value *Dest,
531 EmitNullInitialization(Dest, E->getType())
    [all...]
CGClass.cpp 440 llvm::Value *Dest = LHS.getAddress();
442 Dest = CGF.Builder.CreateInBoundsGEP(Dest, ArrayIndex, "destaddress");
448 LV.setAddress(Dest);
805 LValue Dest = CGF.EmitLValueForFieldInitialization(DestLV, FirstField);
810 emitMemcpyIR(Dest.isBitField() ? Dest.getBitFieldAddr() : Dest.getAddress(),
    [all...]
CodeGenFunction.h 580 /// on to \arg Dest.
581 void EmitBranchThroughCleanup(JumpDest Dest);
586 bool isObviouslyBranchWithoutCleanups(JumpDest Dest) const;
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 207 void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 99 // dest address will be promotable. See if we can find a better type than the
139 Value *Dest = Builder->CreateBitCast(MI->getArgOperand(0), NewDstPtrTy);
144 StoreInst *S = Builder->CreateStore(L, Dest, MI->isVolatile());
175 Value *Dest = MI->getDest();
176 unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace();
178 Dest = Builder->CreateBitCast(Dest, NewDstPtrTy);
185 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
239 // then the source and dest pointers can't alias, so we can change this
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp     [all...]
  /external/llvm/lib/IR/
Core.cpp 134 raw_fd_ostream dest(Filename, error);
140 unwrap(M)->print(dest, NULL);
146 dest.flush();
324 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) {
328 *Dest++ = wrap(*I);
368 void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest) {
372 *Dest++ = wrap(*I);
589 void LLVMGetMDNodeOperands(LLVMValueRef V, LLVMValueRef *Dest)
594 Dest[i] = wrap(N->getOperand(i));
605 void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char* name, LLVMValueRef *Dest)
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 279 char *Dest = new char[Size];
280 Values.push_back(Dest);
281 DEBUG(dbgs() << "JIT: ARGV[" << i << "] = " << (void*)Dest << "\n");
283 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
284 Dest[Size-1] = 0;
286 // Endian safe: Array[i] = (PointerTy)Dest;
287 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize),
    [all...]
  /external/zlib/src/contrib/delphi/
ZLib.pas 89 constructor Create(CompressionLevel: TCompressionLevel; Dest: TStream);
233 procedure _memcpy(dest, source: Pointer; count: Integer); cdecl;
235 Move(source^, dest^, count);
407 Dest: TStream);
412 inherited Create(Dest);
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 484 template<typename Dest> void evalTo(Dest& dst) const
LLT.h 425 template<typename Dest> void evalTo(Dest& dst) const
  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 466 template<typename Dest> void evalTo(Dest& dst) const
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 421 void markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) {
422 if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second)
425 if (!MarkBlockExecutable(Dest)) {
430 << " -> " << Dest->getName() << '\n');
433 for (BasicBlock::iterator I = Dest->begin();
582 assert(BBExecutable.count(To) && "Dest should always be alive!");
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 417 void VisitCXXDestructor(QualType ObjectType, const MemRegion *Dest,
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h     [all...]
  /ndk/sources/host-tools/make-3.81/glob/
glob.c 181 # define mempcpy(Dest, Src, Len) __mempcpy (Dest, Src, Len)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 191 bool ARMTryEmitSmallMemCpy(Address Dest, Address Src, uint64_t Len,
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]

Completed in 1088 milliseconds

1 2 3 45 6