HomeSort by relevance Sort by last modified time
    Searched refs:Ctx (Results 1 - 25 of 427) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMachORelocationInfo.cpp 23 ARMMachORelocationInfo(MCContext &Ctx) : MCRelocationInfo(Ctx) {}
29 return ARMMCExpr::CreateUpper16(SubExpr, Ctx);
31 return ARMMCExpr::CreateLower16(SubExpr, Ctx);
41 MCRelocationInfo *llvm::createARMMachORelocationInfo(MCContext &Ctx) {
42 return new ARMMachORelocationInfo(Ctx);
  /external/llvm/lib/MC/
MCRelocationInfo.cpp 17 MCRelocationInfo::MCRelocationInfo(MCContext &Ctx)
18 : Ctx(Ctx) {
37 MCRelocationInfo *llvm::createMCRelocationInfo(StringRef TT, MCContext &Ctx) {
38 return new MCRelocationInfo(Ctx);
MCObjectFileInfo.cpp 61 = Ctx->getMachOSection("__TEXT", "__text",
65 = Ctx->getMachOSection("__DATA", "__data", 0,
72 = Ctx->getMachOSection("__DATA", "__thread_data",
76 = Ctx->getMachOSection("__DATA", "__thread_bss",
82 = Ctx->getMachOSection("__DATA", "__thread_vars",
87 = Ctx->getMachOSection("__DATA", "__thread_init",
92 = Ctx->getMachOSection("__TEXT", "__cstring",
96 = Ctx->getMachOSection("__TEXT","__ustring", 0,
99 = Ctx->getMachOSection("__TEXT", "__literal4",
103 = Ctx->getMachOSection("__TEXT", "__literal8"
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachORelocationInfo.cpp 25 X86_64MachORelocationInfo(MCContext &Ctx) : MCRelocationInfo(Ctx) {}
39 MCSymbol *Sym = Ctx.GetOrCreateSymbol(SymName);
42 Sym->setVariableValue(MCConstantExpr::Create(SymAddr, Ctx));
47 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_TLVP, Ctx);
50 Expr = MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Sym, Ctx),
51 MCConstantExpr::Create(4, Ctx),
52 Ctx);
55 Expr = MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Sym, Ctx),
56 MCConstantExpr::Create(2, Ctx),
    [all...]
X86ELFRelocationInfo.cpp 26 X86_64ELFRelocationInfo(MCContext &Ctx) : MCRelocationInfo(Ctx) {}
37 MCSymbol *Sym = Ctx.GetOrCreateSymbol(SymName);
40 Sym->setVariableValue(MCConstantExpr::Create(SymAddr, Ctx));
79 Expr = MCSymbolRefExpr::Create(Sym, Ctx);
88 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_GOT, Ctx);
93 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_PLT, Ctx);
98 Expr = MCSymbolRefExpr::Create(Sym, Ctx);
104 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_GOTPCREL, Ctx);
108 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_GOTOFF, Ctx);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
SelectorExtras.h 19 static inline Selector getKeywordSelectorImpl(ASTContext &Ctx,
23 II.push_back(&Ctx.Idents.get(First));
26 II.push_back(&Ctx.Idents.get(s));
28 return Ctx.Selectors.getSelector(II.size(), &II[0]);
31 static inline Selector getKeywordSelector(ASTContext &Ctx, va_list argp) {
34 return getKeywordSelectorImpl(Ctx, First, argp);
38 static inline Selector getKeywordSelector(ASTContext &Ctx,
42 Selector result = getKeywordSelectorImpl(Ctx, First, argp);
48 static inline void lazyInitKeywordSelector(Selector &Sel, ASTContext &Ctx,
54 Sel = getKeywordSelectorImpl(Ctx, First, argp)
    [all...]
  /external/clang/lib/AST/
NSAPI.cpp 16 NSAPI::NSAPI(ASTContext &ctx)
17 : Ctx(ctx), ClassIds(), BOOLId(nullptr), NSIntegerId(nullptr),
33 return (ClassIds[K] = &Ctx.Idents.get(ClassName[K]));
43 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithString"));
46 Sel = Ctx.Selectors.getUnarySelector(
47 &Ctx.Idents.get("stringWithUTF8String"));
51 &Ctx.Idents.get("stringWithCString"),
52 &Ctx.Idents.get("encoding"
    [all...]
CXXABI.h 47 CXXABI *CreateItaniumCXXABI(ASTContext &Ctx);
48 CXXABI *CreateMicrosoftCXXABI(ASTContext &Ctx);
ExprClassification.cpp 26 static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E);
27 static Cl::Kinds ClassifyDecl(ASTContext &Ctx, const Decl *D);
28 static Cl::Kinds ClassifyUnnamed(ASTContext &Ctx, QualType T);
29 static Cl::Kinds ClassifyMemberExpr(ASTContext &Ctx, const MemberExpr *E);
30 static Cl::Kinds ClassifyBinaryOp(ASTContext &Ctx, const BinaryOperator *E);
31 static Cl::Kinds ClassifyConditional(ASTContext &Ctx,
34 static Cl::ModifiableType IsModifiable(ASTContext &Ctx, const Expr *E,
37 Cl Expr::ClassifyImpl(ASTContext &Ctx, SourceLocation *Loc) const {
40 Cl::Kinds kind = ClassifyInternal(Ctx, this);
43 if (!Ctx.getLangOpts().CPlusPlus)
    [all...]
  /external/clang/lib/CodeGen/
CGOpenCLRuntime.cpp 36 llvm::LLVMContext& Ctx = CGM.getLLVMContext();
45 Ctx, "opencl.image1d_t"), ImgAddrSpc);
48 Ctx, "opencl.image1d_array_t"), ImgAddrSpc);
51 Ctx, "opencl.image1d_buffer_t"), ImgAddrSpc);
54 Ctx, "opencl.image2d_t"), ImgAddrSpc);
57 Ctx, "opencl.image2d_array_t"), ImgAddrSpc);
60 Ctx, "opencl.image3d_t"), ImgAddrSpc);
62 return llvm::IntegerType::get(Ctx, 32);
65 Ctx, "opencl.event_t"), 0);
CGLoopInfo.cpp 20 static MDNode *createMetadata(LLVMContext &Ctx, const LoopAttributes &Attrs) {
29 MDNode *TempNode = MDNode::getTemporary(Ctx, None);
34 Value *Vals[] = { MDString::get(Ctx, "llvm.loop.vectorize.width"),
35 ConstantInt::get(Type::getInt32Ty(Ctx),
37 Args.push_back(MDNode::get(Ctx, Vals));
42 Value *Vals[] = { MDString::get(Ctx, "llvm.loop.vectorize.unroll"),
43 ConstantInt::get(Type::getInt32Ty(Ctx),
45 Args.push_back(MDNode::get(Ctx, Vals));
50 Value *Vals[] = { MDString::get(Ctx, "llvm.loop.vectorize.enable"),
51 ConstantInt::get(Type::getInt1Ty(Ctx),
    [all...]
  /external/llvm/include/llvm/MC/
MCSymbolizer.h 45 MCContext &Ctx;
50 MCSymbolizer(MCContext &Ctx, std::unique_ptr<MCRelocationInfo> RelInfo)
51 : Ctx(Ctx), RelInfo(std::move(RelInfo)) {
MCRelocationInfo.h 35 MCContext &Ctx;
38 MCRelocationInfo(MCContext &Ctx);
MCDisassembler.h 58 MCDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx)
59 : Ctx(Ctx), STI(STI), Symbolizer(), CommentStream(nullptr) {}
86 MCContext &Ctx;
106 MCContext& getContext() const { return Ctx; }
MCExpr.h 131 static const MCConstantExpr *Create(int64_t Value, MCContext &Ctx);
293 static const MCSymbolRefExpr *Create(const MCSymbol *Symbol, MCContext &Ctx) {
294 return MCSymbolRefExpr::Create(Symbol, VK_None, Ctx);
298 MCContext &Ctx);
300 MCContext &Ctx);
348 MCContext &Ctx);
349 static const MCUnaryExpr *CreateLNot(const MCExpr *Expr, MCContext &Ctx) {
350 return Create(LNot, Expr, Ctx);
352 static const MCUnaryExpr *CreateMinus(const MCExpr *Expr, MCContext &Ctx) {
353 return Create(Minus, Expr, Ctx);
    [all...]
  /external/llvm/lib/IR/
DebugLoc.cpp 20 MDNode *DebugLoc::getScope(const LLVMContext &Ctx) const {
26 assert(unsigned(ScopeIdx) <= Ctx.pImpl->ScopeRecords.size() &&
28 return Ctx.pImpl->ScopeRecords[ScopeIdx-1].get();
32 assert(unsigned(-ScopeIdx) <= Ctx.pImpl->ScopeInlinedAtRecords.size() &&
34 return Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].first.get();
37 MDNode *DebugLoc::getInlinedAt(const LLVMContext &Ctx) const {
43 assert(unsigned(-ScopeIdx) <= Ctx.pImpl->ScopeInlinedAtRecords.size() &&
45 return Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].second.get();
50 const LLVMContext &Ctx) const {
59 assert(unsigned(ScopeIdx) <= Ctx.pImpl->ScopeRecords.size() &
    [all...]
  /external/llvm/include/llvm/IR/
DebugLoc.h 83 MDNode *getScope(const LLVMContext &Ctx) const;
87 MDNode *getInlinedAt(const LLVMContext &Ctx) const;
91 const LLVMContext &Ctx) const;
94 MDNode *getScopeNode(const LLVMContext &Ctx) const;
98 DebugLoc getFnDebugLoc(const LLVMContext &Ctx) const;
102 MDNode *getAsMDNode(const LLVMContext &Ctx) const;
109 void dump(const LLVMContext &Ctx) const;
111 void print(const LLVMContext &Ctx, raw_ostream &OS) const;
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCAsmInfo.cpp 31 SystemZMCAsmInfo::getNonexecutableStackSection(MCContext &Ctx) const {
32 return Ctx.getELFSection(".note.GNU-stack", ELF::SHT_PROGBITS,
SystemZMCAsmInfo.h 24 const MCSection *getNonexecutableStackSection(MCContext &Ctx) const override;
  /external/compiler-rt/test/tsan/
cond_race.cc 11 struct Ctx {
18 Ctx *c = (Ctx*)p;
27 Ctx *c = new Ctx();
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCExpr.h 46 bool isDarwin, MCContext &Ctx);
49 bool isDarwin, MCContext &Ctx) {
50 return Create(VK_PPC_LO, Expr, isDarwin, Ctx);
54 bool isDarwin, MCContext &Ctx) {
55 return Create(VK_PPC_HI, Expr, isDarwin, Ctx);
59 bool isDarwin, MCContext &Ctx) {
60 return Create(VK_PPC_HA, Expr, isDarwin, Ctx);
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmInstrumentation.h 31 const MCContext &Ctx, const MCSubtargetInfo &STI);
42 MCContext &Ctx, const MCInstrInfo &MII, MCStreamer &Out);
47 const MCContext &Ctx, const MCSubtargetInfo &STI);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
AMDGPUMCTargetDesc.h 33 MCContext &Ctx);
37 MCContext &Ctx);
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64Disassembler.h 26 AArch64Disassembler(const MCSubtargetInfo &STI, MCContext &Ctx)
27 : MCDisassembler(STI, Ctx) {}
AArch64ExternalSymbolizer.h 23 AArch64ExternalSymbolizer(MCContext &Ctx,
28 : MCExternalSymbolizer(Ctx, std::move(RelInfo), GetOpInfo, SymbolLookUp,

Completed in 1714 milliseconds

1 2 3 4 5 6 7 8 91011>>