OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OffsetValue
(Results
1 - 11
of
11
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
CFLAndersAliasAnalysis.cpp
136
struct
OffsetValue
{
141
bool operator==(
OffsetValue
LHS,
OffsetValue
RHS) {
144
bool operator<(
OffsetValue
LHS,
OffsetValue
RHS) {
274
// Specialize DenseMapInfo for
OffsetValue
.
275
template <> struct DenseMapInfo<
OffsetValue
> {
276
static
OffsetValue
getEmptyKey() {
277
return
OffsetValue
{DenseMapInfo<const Value *>::getEmptyKey(),
281
static
OffsetValue
getTombstoneKey()
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/AsmParser/
LanaiAsmParser.cpp
62
bool parsePrePost(StringRef Type, int *
OffsetValue
);
844
bool LanaiAsmParser::parsePrePost(StringRef Type, int *
OffsetValue
) {
849
*
OffsetValue
= -SizeForSuffix(Type);
851
*
OffsetValue
= SizeForSuffix(Type);
908
int
OffsetValue
= 0;
936
PreOp = parsePrePost(Type, &
OffsetValue
);
970
PostOp = parsePrePost(Type, &
OffsetValue
);
980
MCConstantExpr::create(
OffsetValue
, getContext());
984
if (Offset ||
OffsetValue
!= 0) {
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenFunction.cpp
2307
llvm::Value *
OffsetValue
) {
2311
if (
OffsetValue
&&
OffsetValue
->getType() != IntPtrTy)
2312
OffsetValue
=
2313
Builder.CreateIntCast(
OffsetValue
, IntPtrTy, true, "casted.offset");
2319
if (
OffsetValue
) {
2321
if (const auto *CI = dyn_cast<llvm::ConstantInt>(
OffsetValue
))
2325
PtrIntValue = Builder.CreateSub(PtrIntValue,
OffsetValue
, "offsetptr");
2335
CGM.getDataLayout(), PtrValue, Alignment,
OffsetValue
);
2340
OffsetValue
, TheCheck, Assumption)
[
all
...]
CGObjCGNU.cpp
1850
llvm::Constant *
OffsetValue
= llvm::ConstantInt::get(IntTy, Offset);
1854
OffsetVar->setInitializer(
OffsetValue
);
1858
OffsetValue
, OffsetName);
3470
llvm::Constant *
OffsetValue
= llvm::ConstantInt::get(IntTy, Offset);
3477
OffsetVar->setInitializer(
OffsetValue
);
3485
OffsetValue
, OffsetName);
3486
IvarOffsets.push_back(
OffsetValue
);
3566
llvm::Constant *
offsetValue
= llvm::ConstantExpr::getGetElementPtr(
3572
offset->setInitializer(
offsetValue
);
3579
new llvm::GlobalVariable(TheModule,
offsetValue
->getType()
[
all
...]
CodeGenFunction.h
3130
llvm::Value *
OffsetValue
,
3137
llvm::Value *
OffsetValue
= nullptr);
3142
llvm::Value *
OffsetValue
= nullptr);
CGBuiltin.cpp
2813
Value *
OffsetValue
=
2824
AlignmentCI,
OffsetValue
);
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckPlacementNew.cpp
251
int64_t
OffsetValue
=
253
unsigned AddressAlign =
OffsetValue
% AllocatedTAlign;
/src/external/apache2/llvm/dist/llvm/lib/IR/
IRBuilder.cpp
1178
Value *
OffsetValue
) {
1180
if (
OffsetValue
)
1181
Vals.push_back(
OffsetValue
);
1189
Value *
OffsetValue
) {
1196
return CreateAlignmentAssumptionHelper(DL, PtrValue, AlignValue,
OffsetValue
);
1202
Value *
OffsetValue
) {
1205
return CreateAlignmentAssumptionHelper(DL, PtrValue, Alignment,
OffsetValue
);
/src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsInstructionSelector.cpp
456
APInt
OffsetValue
= Offset->getOperand(1).getCImm()->getValue();
457
if (
OffsetValue
.isSignedIntN(16)) {
459
SignedOffset =
OffsetValue
.getSExtValue();
/src/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp
4388
int64_t
OffsetValue
= OffsetImmOp.getImm();
4397
bool IsLargeOffset = !(isInt<16>(
OffsetValue
+ 1) && isInt<16>(
OffsetValue
));
4399
if (loadImmediate(
OffsetValue
, ATReg, SrcReg, !ABI.ArePtrs64bit(), true,
4404
int64_t FirstOffset = IsLargeOffset ? 0 :
OffsetValue
;
4405
int64_t SecondOffset = IsLargeOffset ? 1 : (
OffsetValue
+ 1);
4440
int64_t
OffsetValue
= OffsetImmOp.getImm();
4447
bool IsLargeOffset = !(isInt<16>(
OffsetValue
+ 1) && isInt<16>(
OffsetValue
));
4449
if (loadImmediate(
OffsetValue
, ATReg, SrcReg, !ABI.ArePtrs64bit(), true
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
IRBuilder.h
2550
/// with offset \p
OffsetValue
and alignment value \p AlignValue.
2553
Value *
OffsetValue
);
2564
Value *
OffsetValue
= nullptr);
2577
Value *
OffsetValue
= nullptr);
Completed in 46 milliseconds
Indexes created Wed Aug 05 00:25:39 UTC 2026