Displaying 12 results from an estimated 12 matches for "mipsfastisel".
2014 Jun 08
2
[LLVMdev] [llvm] r210424 - Revert "Do materialize for floating point"
...>
> 4) The public mailing list was excluded from patch review so all of this was
> hidden from the community.
>
> This reverts commit r210414.
>
> Removed:
> llvm/trunk/test/CodeGen/Mips/Fast-ISel/simplestorefp1.ll
> Modified:
> llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
>
> Modified: llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Mips/MipsFastISel.cpp?rev=210424&r1=210423&r2=210424&view=diff
> ==============================================================================
>...
2015 Jan 31
2
[LLVMdev] debug info for llvm::IntrinsicInst ???
...ble of type
IntrinsicInst, gdb thinks that it's an incomplete
type and kind find any member functions or even display the class.
(gdb) list 1337
1332
1333 // Finish off the call including any return values.
1334 return finishCall(CLI, RetVT, NumBytes);
1335 }
1336
1337 bool MipsFastISel::fastLowerIntrinsicCall(const IntrinsicInst *II) {
1338 switch (II->getIntrinsicID()) {
1339 default:
1340 return false;
1341 case Intrinsic::bswap: {
(gdb) print II
$10 = (const llvm::IntrinsicInst *) 0x61b8ec8
(gdb) print *II
$11 = <incomplete type>
(gdb) call II-&g...
2015 Jan 31
2
[LLVMdev] debug info for llvm::IntrinsicInst ???
...d find any member functions or even display the class.
>
>
>
>
> (gdb) list 1337
> 1332
> 1333 // Finish off the call including any return values.
> 1334 return finishCall(CLI, RetVT, NumBytes);
> 1335 }
> 1336
> 1337 bool MipsFastISel::fastLowerIntrinsicCall(const
> IntrinsicInst *II) {
> 1338 switch (II->getIntrinsicID()) {
> 1339 default:
> 1340 return false;
> 1341 case Intrinsic::bswap: {
> (gdb) print II
> $10 = (const llvm::IntrinsicInst *) 0x61b8ec8...
2015 Jan 31
0
[LLVMdev] debug info for llvm::IntrinsicInst ???
...incomplete
> type and kind find any member functions or even display the class.
>
>
>
>
> (gdb) list 1337
> 1332
> 1333 // Finish off the call including any return values.
> 1334 return finishCall(CLI, RetVT, NumBytes);
> 1335 }
> 1336
> 1337 bool MipsFastISel::fastLowerIntrinsicCall(const IntrinsicInst
> *II) {
> 1338 switch (II->getIntrinsicID()) {
> 1339 default:
> 1340 return false;
> 1341 case Intrinsic::bswap: {
> (gdb) print II
> $10 = (const llvm::IntrinsicInst *) 0x61b8ec8
> (gdb) print *II
> $...
2015 Jan 31
0
[LLVMdev] debug info for llvm::IntrinsicInst ???
...r functions or even display the class.
>>
>>
>>
>>
>> (gdb) list 1337
>> 1332
>> 1333 // Finish off the call including any return values.
>> 1334 return finishCall(CLI, RetVT, NumBytes);
>> 1335 }
>> 1336
>> 1337 bool MipsFastISel::fastLowerIntrinsicCall(const IntrinsicInst
>> *II) {
>> 1338 switch (II->getIntrinsicID()) {
>> 1339 default:
>> 1340 return false;
>> 1341 case Intrinsic::bswap: {
>> (gdb) print II
>> $10 = (const llvm::IntrinsicInst *) 0x61b8ec8...
2015 Jan 20
3
[LLVMdev] strlen in fast-isel
It seems that fast-isel for intel does not handle strlen. It's a general
problem in fast-isel .
~/llvmw/build/Deb~/llvmw/build/Debug+Asserts/bin/clang -O0 -mllvm
-fast-isel-verbose -mllvm -fast-isel strlen1.c
strlen1.c:12:3: warning: implicitly declaring library function 'printf' with
type 'int (const char *, ...)'
printf("%i\n", len);
^
2018 Jan 24
2
[PATCH] D41675: Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1)
...eGen/SelectionDAG/SelectionDAGBuilder.cpp
> llvm/trunk/lib/IR/AutoUpgrade.cpp
> llvm/trunk/lib/IR/IRBuilder.cpp
> llvm/trunk/lib/IR/Verifier.cpp
> llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp
> llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
> llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
> llvm/trunk/lib/Target/X86/X86FastISel.cpp
> llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp
> llvm/trunk/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
> llvm/trunk/test/Analysis/AliasSet/memtransfer.ll
> llvm/trunk/test/Analysis/BasicAA/assume.ll
>...
2018 Jan 24
0
[PATCH] D41675: Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1)
...s.td/>
llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
llvm/trunk/lib/IR/AutoUpgrade.cpp
llvm/trunk/lib/IR/IRBuilder.cpp
llvm/trunk/lib/IR/Verifier.cpp
llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp
llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
llvm/trunk/lib/Target/X86/X86FastISel.cpp
llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp
llvm/trunk/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
llvm/trunk/test/Analysis/AliasSet/memtransfer.ll
llvm/trunk/test/Analysis/BasicAA/assume.ll
llvm/trunk/test/Analysis/B...
2018 Jan 25
2
[PATCH] D41675: Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1)
...ionDAGBuilder.cpp
>> llvm/trunk/lib/IR/AutoUpgrade.cpp
>> llvm/trunk/lib/IR/IRBuilder.cpp
>> llvm/trunk/lib/IR/Verifier.cpp
>> llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp
>> llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
>> llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
>> llvm/trunk/lib/Target/X86/X86FastISel.cpp
>> llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp
>> llvm/trunk/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
>> llvm/trunk/test/Analysis/AliasSet/memtransfer.ll
>> llvm/trunk/test/Analysis/B...
2018 Jan 25
3
[PATCH] D41675: Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1)
...t;> llvm/trunk/lib/IR/AutoUpgrade.cpp
>>> llvm/trunk/lib/IR/IRBuilder.cpp
>>> llvm/trunk/lib/IR/Verifier.cpp
>>> llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp
>>> llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
>>> llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
>>> llvm/trunk/lib/Target/X86/X86FastISel.cpp
>>> llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp
>>> llvm/trunk/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
>>> llvm/trunk/test/Analysis/AliasSet/memtransfer.ll
>>> llvm/t...
2018 Jan 25
0
[PATCH] D41675: Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1)
...s.td/>
llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
llvm/trunk/lib/IR/AutoUpgrade.cpp
llvm/trunk/lib/IR/IRBuilder.cpp
llvm/trunk/lib/IR/Verifier.cpp
llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp
llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
llvm/trunk/lib/Target/X86/X86FastISel.cpp
llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp
llvm/trunk/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
llvm/trunk/test/Analysis/AliasSet/memtransfer.ll
llvm/trunk/test/Analysis/BasicAA/assume.ll
llvm/trunk/test/Analysis/B...
2018 Jan 25
0
[PATCH] D41675: Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1)
...s.td/>
llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
llvm/trunk/lib/IR/AutoUpgrade.cpp
llvm/trunk/lib/IR/IRBuilder.cpp
llvm/trunk/lib/IR/Verifier.cpp
llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp
llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
llvm/trunk/lib/Target/X86/X86FastISel.cpp
llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp
llvm/trunk/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
llvm/trunk/test/Analysis/AliasSet/memtransfer.ll
llvm/trunk/test/Analysis/BasicAA/assume.ll
llvm/trunk/test/Analysis/B...