Home
last modified time | relevance | path

Searched refs:NewExts (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/clang/lib/Sema/
H A DOpenCLBuiltins.td60 // Concatenate zero or more space-separated extensions in NewExts to Base and
62 class concatExtension<FunctionExtension Base, string NewExts> {
65 // Return Base extension if NewExts is empty,
66 !empty(NewExts) : Base.ExtName,
68 // otherwise, return NewExts if Base extension is empty,
69 !empty(Base.ExtName) : NewExts,
71 // otherwise, concatenate NewExts to Base.
72 true : Base.ExtName # " " # NewExts
/src/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp6118 SmallVector<Instruction *, 4> NewExts; in tryToPromoteExts() local
6123 &NewExts, nullptr, *TLI); in tryToPromoteExts()
6143 (ExtCost == 0 && NewExts.size() > 1))) { in tryToPromoteExts()
6153 (void)tryToPromoteExts(TPT, NewExts, NewlyMovedExts, TotalCreatedInstsCost); in tryToPromoteExts()