OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IntWidth
(Results
1 - 6
of
6
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
executionengine.go
75
func (g GenericValue)
IntWidth
() int { return int(C.LLVMGenericValueIntWidth(g.C)) }
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp
734
uint32_t
IntWidth
= DL.getTypeSizeInBits(CE->getType());
735
GV.IntVal = GV.IntVal.zextOrTrunc(
IntWidth
);
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp
4493
unsigned
IntWidth
= ScalarTy->getIntegerBitWidth();
4494
return
IntWidth
== 32 ||
IntWidth
== 64 ||
4495
((
IntWidth
== 8 ||
IntWidth
== 16) && ST->hasBWI());
4556
unsigned
IntWidth
= ScalarTy->getIntegerBitWidth();
4557
return
IntWidth
== 32 ||
IntWidth
== 64 ||
4558
((
IntWidth
== 8 ||
IntWidth
== 16) && ST->hasVBMI2())
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/Basic/
TargetInfo.h
62
unsigned char
IntWidth
, IntAlign;
451
unsigned getIntWidth() const { return
IntWidth
; }
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp
5915
unsigned
IntWidth
= IntTy->getScalarSizeInBits();
5921
SMax.convertFromAPInt(APInt::getSignedMaxValue(
IntWidth
), true,
5933
UMax.convertFromAPInt(APInt::getMaxValue(
IntWidth
), false,
5946
SMin.convertFromAPInt(APInt::getSignedMinValue(
IntWidth
), true,
5957
UMin.convertFromAPInt(APInt::getMinValue(
IntWidth
), false,
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp
17678
unsigned
IntWidth
= Context.getTargetInfo().getIntWidth();
17679
llvm::APSInt EnumVal(
IntWidth
);
18155
unsigned
IntWidth
= Context.getTargetInfo().getIntWidth();
18230
} else if (NumNegativeBits <=
IntWidth
&& NumPositiveBits <
IntWidth
) {
18232
BestWidth =
IntWidth
;
18246
BestPromotionType = (BestWidth <=
IntWidth
? Context.IntTy : BestType);
18259
} else if (NumPositiveBits <=
IntWidth
) {
18261
BestWidth =
IntWidth
;
18306
NewWidth =
IntWidth
;
[
all
...]
Completed in 58 milliseconds
Indexes created Mon Mar 02 05:31:46 UTC 2026