Searched refs:CS (Results 251 - 275 of 376) sorted by relevance

<<111213141516

/external/syslinux/core/
H A Ddiskstart.inc105 ; value in CS, but we don't want to deal with that anymore from now
108 jmp 0:.next ; Normalize CS:IP
233 ; This routine assumes CS == DS.
/external/syslinux/memdisk/
H A Dmemdisk16.asm84 b_csip dd 0 ; CS:IP on boot sector invocation
96 ; then canonicalize CS to match the other segments.
216 Target_Seg dw 20h ; Target CS
551 ; real-mode CS.
/external/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp165 CallSite CS, bool isReadOnlyCall, BasicBlock::iterator ScanIt,
184 if (AA.getModRefInfo(CS, Loc) != MRI_NoModRef)
194 switch (AA.getModRefInfo(CS, InstCS)) {
197 // CS can be found redundant and eliminated.
199 CS.getInstruction()->isIdenticalToWhenDefined(Inst))
164 getCallSiteDependencyFrom( CallSite CS, bool isReadOnlyCall, BasicBlock::iterator ScanIt, BasicBlock *BB) argument
/external/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp275 DictScope CS(SW, "Chained");
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp192 getCallSiteDependencyFrom(CallSite CS, bool isReadOnlyCall, argument
211 if (AA->getModRefInfo(CS, Loc) != AliasAnalysis::NoModRef)
220 switch (AA->getModRefInfo(CS, InstCS)) {
223 // CS can be found redundant and eliminated.
225 CS.getInstruction()->isIdenticalToWhenDefined(Inst))
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DELFWriter.cpp670 ConstantStruct *CS = cast<ConstantStruct>(InitList->getOperand(i)); local
672 if (CS->getOperand(1)->isNullValue())
676 EmitGlobalConstant(CS->getOperand(1), Xtor);
/external/llvm/include/llvm/Target/
H A DTargetLowering.h2481 void setAttributes(ImmutableCallSite *CS, unsigned AttrIdx);
2510 ImmutableCallSite *CS;
2521 CallConv(CallingConv::C), DAG(DAG), CS(nullptr), IsPatchPoint(false) {
2565 CS = &Call;
2865 ImmutableCallSite CS) const;
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86FrameLowering.cpp128 const unsigned *CS = Is64Bit ? CallerSavedRegs64Bit : CallerSavedRegs32Bit; local
129 for (; *CS; ++CS)
130 if (!Uses.count(*CS))
131 return *CS;
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
H A DCBackend.cpp1586 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
1587 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
1589 if (CS->getOperand(1)->isNullValue())
1591 Constant *FP = CS->getOperand(1);
2984 CallSite CS(&I);
2985 CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end();
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp2517 if (CallSite CS = U) {
2520 if (CS.isCallee(UI))
2526 unsigned ArgNo = CS.getArgumentNo(UI);
2527 if (CS.onlyReadsMemory() &&
2528 (CS.getInstruction()->use_empty() ||
2529 CS.paramHasAttr(ArgNo+1, Attribute::NoCapture)))
2534 if (CS.paramHasAttr(ArgNo+1, Attribute::ByVal))
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp903 const ImmutableCallSite *CS) const {
935 auto &DL = CS->getCalledFunction()->getParent()->getDataLayout();
958 const CallInst *CallI = cast<CallInst>(CS->getInstruction());
1007 const ImmutableCallSite *CS,
1011 const Value *DirectCallee = CS->getCalledFunction();
1016 const Instruction *CalleeI = CS->getInstruction();
1050 auto &DL = CS->getCaller()->getParent()->getDataLayout();
1066 ImmutableCallSite *CS = CLI.CS; local
1107 unsigned align = getArgumentAlignment(Callee, CS, T
1006 getArgumentAlignment(SDValue Callee, const ImmutableCallSite *CS, Type *Ty, unsigned Idx) const argument
[all...]
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp2989 ImmutableCallSite *CS) {
2998 if (CS)
2999 if (CS->arg_empty() || !CS->paramHasAttr(1, Attribute::StructRet) ||
3000 CS->paramHasAttr(1, Attribute::InReg) || Subtarget->isTargetMCU())
3051 if (CLI.CS && CLI.CS->hasInAllocaArgument())
3081 if (TI && TI->getType()->isIntegerTy(1) && CLI.CS &&
3082 (TI->getParent() == CLI.CS->getInstruction()->getParent()) &&
3340 : computeBytesPoppedByCalleeForSRet(Subtarget, CC, CLI.CS);
2987 computeBytesPoppedByCalleeForSRet(const X86Subtarget *Subtarget, CallingConv::ID CC, ImmutableCallSite *CS) argument
[all...]
/external/clang/include/clang/AST/
H A DStmt.h733 const CaseStmt *CS = this; variable
734 while (const CaseStmt *CS2 = dyn_cast<CaseStmt>(CS->getSubStmt()))
735 CS = CS2;
737 return CS->getSubStmt()->getLocEnd();
781 if (const CaseStmt *CS = dyn_cast<CaseStmt>(this))
782 return CS->getLocEnd();
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp371 CFGStmt CS = ri->castAs<CFGStmt>(); local
372 const Stmt *S = CS.getStmt();
976 if (Optional<CFGStmt> CS = ElemIt->getAs<CFGStmt>()) {
977 if (const AttributedStmt *AS = asFallThroughAttr(CS->getStmt())) {
1054 if (Optional<CFGStmt> CS = ElemIt->getAs<CFGStmt>())
1055 return CS->getStmt();
/external/clang/lib/AST/
H A DStmt.cpp124 else if (auto CS = dyn_cast_or_null<CompoundStmt>(S)) {
125 if (CS->size() != 1)
127 S = CS->body_back();
/external/clang/lib/CodeGen/
H A DCGCall.cpp3933 llvm::CallSite CS;
3935 CS = Builder.CreateCall(Callee, IRCallArgs, BundleList);
3938 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest, IRCallArgs,
3943 *callOrInvoke = CS.getInstruction();
3946 !CS.hasFnAttr(llvm::Attribute::NoInline))
3957 CS.setAttributes(Attrs);
3958 CS.setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
3963 if (!CS.getCalledFunction())
3965 CS.getInstruction(), Callee);
3970 AddObjCARCExceptionMetadata(CS
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp536 auto CS = CallSite(&I); local
537 if (!CS) continue;
538 if (CS.hasFnAttr(Attribute::Convergent))
/external/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp893 if (auto CS = CallSite(I)) {
895 FunctionType *FTy = CS.getFunctionType();
899 CS.mutateFunctionType(FunctionType::get(
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h3564 const CompoundStmt *CS = CompoundStmtMatcher<NodeType>::get(Node); local
3565 return CS && matchesFirstInPointerRange(InnerMatcher, CS->body_begin(),
3566 CS->body_end(), Finder, Builder);
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h504 CS = 26, member in class:llvm::codeview::CallingConvention::ClassOptions::FrameProcedureOptions::FunctionOptions::HfaKind::MemberAccess::MethodKind::MethodOptions::ModifierOptions::PointerKind::PointerMode::PointerOptions::PointerToMemberRepresentation::VFTableSlotKind::WindowsRTClassKind::ExportFlags::RegisterId
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp767 std::string CS;
786 CS += Name;
787 CS += "::";
790 return CS;
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1064 void Interpreter::visitCallSite(CallSite CS) {
1068 Function *F = CS.getCalledFunction();
1077 SetValue(CS.getInstruction(), ArgIndex, SF);
1083 SetValue(CS.getInstruction(), getOperandValue(*CS.arg_begin(), SF), SF);
1089 BasicBlock::iterator me(CS.getInstruction());
1090 BasicBlock *Parent = CS.getInstruction()->getParent();
1094 IL->LowerIntrinsicCall(cast<CallInst>(CS.getInstruction()));
1108 SF.Caller = CS;
/external/swiftshader/third_party/LLVM/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp416 X86::CS,
H A DX86DisassemblerDecoder.h244 ENTRY(CS) \
/external/valgrind/VEX/auxprogs/
H A Dgenoffsets.c95 GENOFFSET(X86,x86,CS);

Completed in 954 milliseconds

<<111213141516