Home
last modified time | relevance | path

Searched refs:Lit (Results 1 – 14 of 14) sorted by relevance

/external/llvm/test/Transforms/LoopStrengthReduce/
Dpr3086.ll5 %struct.Cls = type { i32, i8, [2 x %struct.Cls*], [2 x %struct.Lit*] }
6 %struct.Lit = type { i8 }
13 %0 = load %struct.Lit** %storemerge, align 8 ; <%struct.Lit*> [#uses=0]
19 %storemerge = getelementptr %struct.Lit** null, i64 %storemerge.rec ; <%struct.Lit**> [#uses=2]
20 %1 = icmp ugt %struct.Lit** null, %storemerge ; <i1> [#uses=1]
/external/llvm/test/Transforms/LoopRotate/
D2009-01-25-SingleEntryPhi.ll5 %struct.Cls = type { i32, i8, [2 x %struct.Cls*], [2 x %struct.Lit*] }
6 %struct.Lit = type { i8 }
/external/clang/test/CodeGenCXX/
Dconst-init-cxx11.cpp223 struct Lit { struct
224 constexpr Lit() : n(5) {} in Lit() argument
232 const Lit &lit = Lit();
/external/clang/lib/Parse/
DParseObjc.cpp2067 ExprResult Lit(Actions.ActOnNumericConstant(Tok)); in ParseObjCAtExpression() local
2068 if (Lit.isInvalid()) { in ParseObjCAtExpression()
2069 return Lit; in ParseObjCAtExpression()
2073 Lit = Actions.ActOnUnaryOp(getCurScope(), OpLoc, Kind, Lit.take()); in ParseObjCAtExpression()
2074 if (Lit.isInvalid()) in ParseObjCAtExpression()
2075 return Lit; in ParseObjCAtExpression()
2078 Actions.BuildObjCNumericLiteral(AtLoc, Lit.take())); in ParseObjCAtExpression()
2586 ExprResult Lit(ParseStringLiteralExpression()); in ParseObjCStringLiteral() local
2587 if (Lit.isInvalid()) in ParseObjCStringLiteral()
2588 return Lit; in ParseObjCStringLiteral()
[all …]
/external/clang/test/
DCMakeLists.txt2 # for use by Lit, and delegates to LLVM's lit test handlers.
4 # If this is a stand-alone Clang build, we fake up our own Lit support here
/external/llvm/docs/
DCMake.rst254 then Lit seeks tools according to %PATH%. Lit can find tools(eg. grep, sort,
DTestingGuide.rst48 the :doc:`Lit <CommandGuide/lit>` testing tool (which is part of LLVM), and
186 only directories does not need the ``lit.local.cfg`` file. Read the :doc:`Lit
DProjects.rst155 :doc:`Lit <CommandGuide/lit>` testing tool. This test procedure uses ``RUN``
DMakefileGuide.rst349 project. The LLVM project itself uses the :doc:`Lit <CommandGuide/lit>` testing
/external/llvm/cmake/modules/
DAddLLVM.cmake206 # common variables that any Lit instance is likely to need, and custom
/external/clang/lib/Sema/
DSemaExpr.cpp1393 StringLiteral *Lit = StringLiteral::Create(Context, Literal.GetString(), in ActOnStringLiteral() local
1398 return Owned(Lit); in ActOnStringLiteral()
1416 Expr *Args[] = { Lit, LenArg }; in ActOnStringLiteral()
2668 Expr *Lit = new (Context) CharacterLiteral(Literal.getValue(), Kind, Ty, in ActOnCharacterConstant() local
2672 return Owned(Lit); in ActOnCharacterConstant()
2686 llvm::makeArrayRef(&Lit, 1), in ActOnCharacterConstant()
2790 Expr *Lit; in ActOnNumericConstant() local
2792 Lit = BuildFloatingLiteral(*this, Literal, CookedTy, Tok.getLocation()); in ActOnNumericConstant()
2797 Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy, in ActOnNumericConstant()
2801 llvm::makeArrayRef(&Lit, 1), in ActOnNumericConstant()
[all …]
/external/llvm/test/Transforms/ArgumentPromotion/
Dpr3085.ll4 %struct.Lit = type { i8 }
6 define fastcc %struct.Lit* @import_lit(i32 %lit) nounwind {
32 ret %struct.Lit* null
/external/zlib/src/doc/
Drfc1951.txt661 Lit Value Bits Codes
/external/clang/lib/AST/
DExprConstant.cpp1516 static APSInt ExtractStringLiteralCharacter(EvalInfo &Info, const Expr *Lit, in ExtractStringLiteralCharacter() argument
1519 const StringLiteral *S = dyn_cast<StringLiteral>(Lit); in ExtractStringLiteralCharacter()