/external/clang/test/Sema/ |
usual-float.c | 8 CGFloat cgf = 3.4; local 11 func((CGFloat)cgf/65535.0f);
|
/external/clang/lib/CodeGen/ |
CGOpenMPRuntimeNVPTX.cpp | 24 llvm::Value *CGOpenMPRuntimeNVPTX::getNVPTXWarpSize(CodeGenFunction &CGF) { 25 CGBuilderTy &Bld = CGF.Builder; 33 llvm::Value *CGOpenMPRuntimeNVPTX::getNVPTXThreadID(CodeGenFunction &CGF) { 34 CGBuilderTy &Bld = CGF.Builder; 42 llvm::Value *CGOpenMPRuntimeNVPTX::getNVPTXNumThreads(CodeGenFunction &CGF) { 43 CGBuilderTy &Bld = CGF.Builder; 51 void CGOpenMPRuntimeNVPTX::getNVPTXCTABarrier(CodeGenFunction &CGF) { 52 CGBuilderTy &Bld = CGF.Builder; 58 void CGOpenMPRuntimeNVPTX::syncCTAThreads(CodeGenFunction &CGF) { 59 getNVPTXCTABarrier(CGF); [all...] |
CGCUDARuntime.cpp | 27 RValue CGCUDARuntime::EmitCUDAKernelCallExpr(CodeGenFunction &CGF, 30 llvm::BasicBlock *ConfigOKBlock = CGF.createBasicBlock("kcall.configok"); 31 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("kcall.end"); 33 CodeGenFunction::ConditionalEvaluation eval(CGF); 34 CGF.EmitBranchOnBoolExpr(E->getConfig(), ContBlock, ConfigOKBlock, 37 eval.begin(CGF); 38 CGF.EmitBlock(ConfigOKBlock); 47 llvm::Value *Callee = CGF.EmitScalarExpr(E->getCallee()); 48 CGF.EmitCall(E->getCallee()->getType(), Callee, E, ReturnValue, TargetDecl); 49 CGF.EmitBranch(ContBlock) [all...] |
CGCXXABI.cpp | 23 void CGCXXABI::ErrorUnsupportedABI(CodeGenFunction &CGF, StringRef S) { 24 DiagnosticsEngine &Diags = CGF.CGM.getDiags(); 27 Diags.Report(CGF.getContext().getFullLoc(CGF.CurCodeDecl->getLocation()), 77 CodeGenFunction &CGF, const Expr *E, Address This, 80 ErrorUnsupportedABI(CGF, "calls through member pointers"); 93 CGCXXABI::EmitMemberDataPointerAddress(CodeGenFunction &CGF, const Expr *E, 96 ErrorUnsupportedABI(CGF, "loads of member pointers"); 97 llvm::Type *Ty = CGF.ConvertType(MPT->getPointeeType()) 102 llvm::Value *CGCXXABI::EmitMemberPointerConversion(CodeGenFunction &CGF, [all...] |
CGObjCRuntime.cpp | 86 LValue CGObjCRuntime::EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF, 94 llvm::Type *LTy = CGF.CGM.getTypes().ConvertTypeForMem(IvarTy); 95 llvm::Value *V = CGF.Builder.CreateBitCast(BaseValue, CGF.Int8PtrTy); 96 V = CGF.Builder.CreateInBoundsGEP(V, Offset, "add.ptr"); 99 V = CGF.Builder.CreateBitCast(V, llvm::PointerType::getUnqual(LTy)); 100 LValue LV = CGF.MakeNaturalAlignAddrLValue(V, IvarTy); 119 uint64_t FieldBitOffset = LookupFieldBitOffset(CGF.CGM, OID, nullptr, Ivar); 120 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth(); 121 uint64_t AlignmentBits = CGF.CGM.getTarget().getCharAlign() [all...] |
CGOpenMPRuntime.cpp | 69 void EmitBody(CodeGenFunction &CGF, const Stmt *S) override; 73 virtual LValue getThreadIDVariableLValue(CodeGenFunction &CGF); 75 virtual void emitUntiedSwitch(CodeGenFunction & /*CGF*/) {} 140 void Enter(CodeGenFunction &CGF) override { 143 auto PartIdLVal = CGF.EmitLoadOfPointerLValue( 144 CGF.GetAddrOfLocalVar(PartIDVar), 146 auto *Res = CGF.EmitLoadOfScalar(PartIdLVal, SourceLocation()); 147 auto *DoneBB = CGF.createBasicBlock(".untied.done."); 148 UntiedSwitch = CGF.Builder.CreateSwitch(Res, DoneBB); 149 CGF.EmitBlock(DoneBB) [all...] |
CGStmtOpenMP.cpp | 30 void emitPreInitStmt(CodeGenFunction &CGF, const OMPExecutableDirective &S) { 36 CGF.EmitVarDecl(cast<VarDecl>(*I)); 39 CGF.EmitAutoVarAlloca(cast<VarDecl>(*I)); 40 CGF.EmitAutoVarCleanups(Emission); 49 static bool isCapturedVar(CodeGenFunction &CGF, const VarDecl *VD) { 50 return CGF.LambdaCaptureFields.lookup(VD) || 51 (CGF.CapturedStmtInfo && CGF.CapturedStmtInfo->lookup(VD)) || 52 (CGF.CurCodeDecl && isa<BlockDecl>(CGF.CurCodeDecl)) [all...] |
CGAtomic.cpp | 30 CodeGenFunction &CGF; 43 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue) 44 : CGF(CGF), AtomicSizeInBits(0), ValueSizeInBits(0), 47 ASTContext &C = CGF.getContext(); 54 EvaluationKind = CGF.getEvaluationKind(ValueTy); 83 auto VoidPtrAddr = CGF.EmitCastToVoidPtr(lvalue.getBitFieldPointer()); 87 VoidPtrAddr = CGF.Builder.CreateConstGEP1_64( 89 auto Addr = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 91 CGF.Builder.getIntNTy(AtomicSizeInBits)->getPointerTo() [all...] |
CGExprScalar.cpp | 62 CodeGenFunction &CGF; 68 ScalarExprEmitter(CodeGenFunction &cgf, bool ira=false) 69 : CGF(cgf), Builder(CGF.Builder), IgnoreResultAssign(ira), 70 VMContext(cgf.getLLVMContext()) { 83 llvm::Type *ConvertType(QualType T) { return CGF.ConvertType(T); } 84 LValue EmitLValue(const Expr *E) { return CGF.EmitLValue(E); } 86 return CGF.EmitCheckedLValue(E, TCK); 93 return CGF.EmitLoadOfLValue(LV, Loc).getScalarVal() [all...] |
CGExprAgg.cpp | 34 CodeGenFunction &CGF; 58 return CGF.CreateAggTemp(T, "agg.tmp.ensured"); 62 Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured"); 66 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest, bool IsResultUnused) 67 : CGF(cgf), Builder(CGF.Builder), Dest(Dest), 91 if (CGF.getLangOpts().getGC() && TypeRequiresGCollection(T)) 103 ApplyDebugLocation DL(CGF, E); 108 CGF.ErrorUnsupported(S, "aggregate expression") [all...] |
ItaniumCXXABI.cpp | 116 EmitLoadOfMemberFunctionPointer(CodeGenFunction &CGF, 124 EmitMemberDataPointerAddress(CodeGenFunction &CGF, const Expr *E, 129 llvm::Value *EmitMemberPointerConversion(CodeGenFunction &CGF, 144 llvm::Value *EmitMemberPointerComparison(CodeGenFunction &CGF, 149 llvm::Value *EmitMemberPointerIsNotNull(CodeGenFunction &CGF, 153 void emitVirtualObjectDelete(CodeGenFunction &CGF, const CXXDeleteExpr *DE, 162 void emitRethrow(CodeGenFunction &CGF, bool isNoReturn) override; 163 void emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) override; 165 void emitBeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *C) override; 168 emitTerminateForUnexpectedException(CodeGenFunction &CGF, [all...] |
CGExprCXX.cpp | 28 commonEmitCXXMemberOrOperatorCall(CodeGenFunction &CGF, const CXXMethodDecl *MD, 43 CGF.EmitTypeCheck( 46 CallLoc, This, CGF.getContext().getRecordType(MD->getParent())); 49 Args.add(RValue::get(This), MD->getThisType(CGF.getContext())); 63 CGF.EmitCallArgs(Args, FPT, drop_begin(CE->arguments(), ArgsToSkip), 352 static void EmitNullBaseClassInitialization(CodeGenFunction &CGF, 358 DestPtr = CGF.Builder.CreateElementBitCast(DestPtr, CGF.Int8Ty); 360 const ASTRecordLayout &Layout = CGF.getContext().getASTRecordLayout(Base); 370 CharUnits VBPtrWidth = CGF.getPointerSize() [all...] |
CGExprComplex.cpp | 48 CodeGenFunction &CGF; 53 ComplexExprEmitter(CodeGenFunction &cgf, bool ir=false, bool ii=false) 54 : CGF(cgf), Builder(CGF.Builder), IgnoreReal(ir), IgnoreImag(ii) { 77 return EmitLoadOfLValue(CGF.EmitLValue(E), E->getExprLoc()); 98 ApplyDebugLocation DL(CGF, E); 103 S->dump(CGF.getContext().getSourceManager()); 119 if (CodeGenFunction::ConstantEmission result = CGF.tryEmitAsConstant(E)) { 121 return EmitLoadOfLValue(result.getReferenceLValue(CGF, E) [all...] |
CGCXXABI.h | 52 ImplicitParamDecl *getThisDecl(CodeGenFunction &CGF) { 53 return CGF.CXXABIThisDecl; 55 llvm::Value *getThisValue(CodeGenFunction &CGF) { 56 return CGF.CXXABIThisValue; 58 Address getThisAddress(CodeGenFunction &CGF) { 59 return Address(CGF.CXXABIThisValue, CGF.CXXABIThisAlignment); 63 void ErrorUnsupportedABI(CodeGenFunction &CGF, StringRef S); 68 ImplicitParamDecl *&getStructorImplicitParamDecl(CodeGenFunction &CGF) { 69 return CGF.CXXStructorImplicitParamDecl [all...] |
CGObjCRuntime.h | 85 LValue EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF, 98 void EmitTryCatchStmt(CodeGenFunction &CGF, 104 void EmitInitOfCatchParam(CodeGenFunction &CGF, llvm::Value *exn, 111 void EmitAtSynchronizedStmt(CodeGenFunction &CGF, 125 virtual llvm::Value *GetSelector(CodeGenFunction &CGF, Selector Sel) = 0; 132 virtual Address GetAddrOfSelector(CodeGenFunction &CGF, Selector Sel) = 0; 135 virtual llvm::Value *GetSelector(CodeGenFunction &CGF, 162 GenerateMessageSend(CodeGen::CodeGenFunction &CGF, 178 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF, 191 virtual llvm::Value *GenerateProtocolRef(CodeGenFunction &CGF, [all...] |
MicrosoftCXXABI.cpp | 115 void emitVirtualObjectDelete(CodeGenFunction &CGF, const CXXDeleteExpr *DE, 119 void emitRethrow(CodeGenFunction &CGF, bool isNoReturn) override; 120 void emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) override; 122 void emitBeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *C) override; 137 void EmitBadTypeidCall(CodeGenFunction &CGF) override; 138 llvm::Value *EmitTypeid(CodeGenFunction &CGF, QualType SrcRecordTy, 145 llvm::Value *EmitDynamicCastCall(CodeGenFunction &CGF, Address Value, 150 llvm::Value *EmitDynamicCastToVoid(CodeGenFunction &CGF, Address Value, 154 bool EmitBadCastCall(CodeGenFunction &CGF) override; 160 GetVirtualBaseClassOffset(CodeGenFunction &CGF, Address This [all...] |
CGClass.cpp | 225 ApplyNonVirtualAndVirtualOffset(CodeGenFunction &CGF, Address addr, 236 baseOffset = llvm::ConstantInt::get(CGF.PtrDiffTy, 239 baseOffset = CGF.Builder.CreateAdd(virtualOffset, baseOffset); 247 ptr = CGF.Builder.CreateBitCast(ptr, CGF.Int8PtrTy); 248 ptr = CGF.Builder.CreateInBoundsGEP(ptr, baseOffset, "add.ptr"); 255 alignment = CGF.CGM.getVBaseAlignment(addr.getAlignment(), 482 void Emit(CodeGenFunction &CGF, Flags flags) override { 484 cast<CXXMethodDecl>(CGF.CurCodeDecl)->getParent(); 488 CGF.GetAddressOfDirectBaseInCompleteClass(CGF.LoadCXXThisAddress() [all...] |
CGException.cpp | 218 const EHPersonality &EHPersonality::get(CodeGenFunction &CGF) { 219 return get(CGF.CGM, dyn_cast_or_null<FunctionDecl>(CGF.CurCodeDecl)); 336 static llvm::Constant *getCatchAllValue(CodeGenFunction &CGF) { 338 return llvm::ConstantPointerNull::get(CGF.Int8PtrTy); 347 void Emit(CodeGenFunction &CGF, Flags flags) override { 348 CGF.EmitNounwindRuntimeCall(getFreeExceptionFn(CGF.CGM), exn); 466 static void emitFilterDispatchBlock(CodeGenFunction &CGF, 475 CGF.EmitBlockAfterUses(dispatchBlock) [all...] |
CGObjC.cpp | 33 tryEmitARCRetainScalarExpr(CodeGenFunction &CGF, const Expr *e); 34 static RValue AdjustObjCObjectType(CodeGenFunction &CGF, 251 static RValue AdjustObjCObjectType(CodeGenFunction &CGF, QualType ExpT, 257 llvm::Type *ExpLLVMTy = CGF.ConvertType(ExpT); 262 return RValue::get(CGF.Builder.CreateBitCast(Result.getScalarVal(), 489 void Emit(CodeGenFunction &CGF, Flags flags) override { 490 const ObjCMethodDecl *method = cast<ObjCMethodDecl>(CGF.CurCodeDecl); 499 llvm::Value *self = CGF.LoadObjCSelf(); 502 CGF.CGM.getObjCRuntime().GenerateMessageSendSuper(CGF, ReturnValueSlot() [all...] |
CGObjCMac.cpp | [all...] |
CGOpenMPRuntimeNVPTX.h | 48 void emitEntryHeader(CodeGenFunction &CGF, EntryFunctionState &EST, 52 void emitEntryFooter(CodeGenFunction &CGF, EntryFunctionState &EST); 60 llvm::Value *getNVPTXWarpSize(CodeGenFunction &CGF); 63 llvm::Value *getNVPTXThreadID(CodeGenFunction &CGF); 66 llvm::Value *getNVPTXNumThreads(CodeGenFunction &CGF); 69 void getNVPTXCTABarrier(CodeGenFunction &CGF); 72 void syncCTAThreads(CodeGenFunction &CGF); 85 llvm::Value *getMasterThreadID(CodeGenFunction &CGF); 104 void emitWorkerLoop(CodeGenFunction &CGF, WorkerFunctionState &WST); 145 void emitNumTeamsClause(CodeGenFunction &CGF, const Expr *NumTeams [all...] |
CodeGenFunction.h | 220 virtual void EmitBody(CodeGenFunction &CGF, const Stmt *S) { 221 CGF.incrementProfileCounter(S); 222 CGF.EmitStmt(S); 247 CodeGenFunction &CGF; 250 CGCapturedStmtRAII(CodeGenFunction &CGF, 252 : CGF(CGF), PrevCapturedStmtInfo(CGF.CapturedStmtInfo) { 253 CGF.CapturedStmtInfo = NewCapturedStmtInfo; 255 ~CGCapturedStmtRAII() { CGF.CapturedStmtInfo = PrevCapturedStmtInfo; [all...] |
CGCleanup.cpp | 36 DominatingValue<RValue>::saved_type::save(CodeGenFunction &CGF, RValue rv) { 46 CGF.CreateDefaultAlignTempAlloca(V->getType(), "saved-rvalue"); 47 CGF.Builder.CreateStore(V, addr); 56 Address addr = CGF.CreateDefaultAlignTempAlloca(ComplexTy, "saved-complex"); 57 CGF.Builder.CreateStore(V.first, 58 CGF.Builder.CreateStructGEP(addr, 0, CharUnits())); 60 CGF.CGM.getDataLayout().getTypeAllocSize(V.first->getType())); 61 CGF.Builder.CreateStore(V.second, 62 CGF.Builder.CreateStructGEP(addr, 1, offset)); 73 CGF.CreateTempAlloca(V.getType(), CGF.getPointerAlign(), "saved-rvalue") [all...] |
CGCUDANV.cpp | 66 void emitDeviceStubBody(CodeGenFunction &CGF, FunctionArgList &Args); 71 void emitDeviceStub(CodeGenFunction &CGF, FunctionArgList &Args) override; 113 void CGNVCUDARuntime::emitDeviceStub(CodeGenFunction &CGF, 115 EmittedKernels.push_back(CGF.CurFn); 116 emitDeviceStubBody(CGF, Args); 119 void CGNVCUDARuntime::emitDeviceStubBody(CodeGenFunction &CGF, 126 llvm::Value *V = CGF.GetAddrOfLocalVar(*I).getPointer(); 133 llvm::BasicBlock *EndBlock = CGF.createBasicBlock("setup.end"); 139 llvm::BasicBlock *NextBlock = CGF.createBasicBlock("setup.next"); 140 Args[0] = CGF.Builder.CreatePointerCast(ArgValues[I], VoidPtrTy) [all...] |
/external/valgrind/none/tests/s390x/ |
comp-1.stdout.exp | 138 cgf (0, 0) --> cc = 0 139 cgf (0, 1) --> cc = 1 140 cgf (0, -1) --> cc = 2 141 cgf (1, 0) --> cc = 2 142 cgf (-1, 0) --> cc = 1 143 cgf (-2, -1) --> cc = 1 144 cgf (-2, -2) --> cc = 0 145 cgf (-2, -3) --> cc = 2 146 cgf (2, 1) --> cc = 2 147 cgf (2, 2) --> cc = [all...] |