History log of /llvm-project/clang/lib/AST/ByteCode/Descriptor.cpp (Results 1 – 10 of 10)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 51c7338c 29-Jan-2025 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Fix dummy handling for p2280r4 (#124396)

This makes some other problems show up like the fact that we didn't
suppress diagnostics during __builtin_constant_p evaluation.


Revision tags: llvmorg-21-init
# b4ef11d0 24-Jan-2025 Kazu Hirata <kazu@google.com>

[AST] Migrate away from PointerUnion::dyn_cast (NFC) (#124228)

Note that PointerUnion::dyn_cast has been soft deprecated in
PointerUnion.h:

// FIXME: Replace the uses of is(), get() and dyn_cast(

[AST] Migrate away from PointerUnion::dyn_cast (NFC) (#124228)

Note that PointerUnion::dyn_cast has been soft deprecated in
PointerUnion.h:

// FIXME: Replace the uses of is(), get() and dyn_cast() with
// isa<T>, cast<T> and the llvm::dyn_cast<T>

Literal migration would result in dyn_cast_if_present (see the
definition of PointerUnion::dyn_cast), but this patch uses dyn_cast
because we expect Source to be nonnull.

show more ...


Revision tags: llvmorg-19.1.7, llvmorg-19.1.6, llvmorg-19.1.5, llvmorg-19.1.4
# dec6324c 17-Nov-2024 Kazu Hirata <kazu@google.com>

[AST] Remove unused includes (NFC) (#116549)

Identified with misc-include-cleaner.


# 2c820799 31-Oct-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Fix Pointer::toAPValue() for multidimensional arrays (#114400)

When we see an array root, that pointer might yet again be an array
element, so check for that.


Revision tags: llvmorg-19.1.3, llvmorg-19.1.2
# 800b0739 04-Oct-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Change isArrayElement() for narrowed composite arrays (#111110)

Make isArrayElement() return true here, so we can know that such a
pointer is in fact an array element and handle i

[clang][bytecode] Change isArrayElement() for narrowed composite arrays (#111110)

Make isArrayElement() return true here, so we can know that such a
pointer is in fact an array element and handle it properly in
toAPValue().

show more ...


Revision tags: llvmorg-19.1.1
# 048bc672 27-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Start implementing fixed point types (#110216)

Add the primitive type and implement to-bool casts.


# 3ea55d3c 26-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Add a source location to destructor calls (#110121)

The added test case is still diagnosed differently, but I'm not sure
which version is better.


# 4bd3a62c 25-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Fix diagnosing std::construct_at with wrong type (#109828)

We can't make the assumption that types are always fine in std
functions.


Revision tags: llvmorg-19.1.0, llvmorg-19.1.0-rc4
# a69ba0a5 23-Aug-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode][NFC] Get rid of const_casts in Move fns (#105698)


Revision tags: llvmorg-19.1.0-rc3
# a07aba5d 16-Aug-2024 Timm Baeder <tbaeder@redhat.com>

[clang] Rename all AST/Interp stuff to AST/ByteCode (#104552)

"Interp" clashes with the clang interpreter and people often confuse
this.